| | |
| | | url: "/Task/", |
| | | sortName: "CreateDate", |
| | | }); |
| | | const editFormFields = ref({}); |
| | | const editFormOptions = ref([]); |
| | | const editFormFields = ref({ |
| | | taskNum:"", |
| | | palletCode: "", |
| | | roadway: "", |
| | | taskType:"", |
| | | taskState:"", |
| | | wMSId:"", |
| | | sourceAddress: "", |
| | | targetAddress: "", |
| | | currentAddress: "", |
| | | nextAddress: "", |
| | | creater: "", |
| | | createDate: "", |
| | | grade: "", |
| | | productionLine:"" |
| | | }); |
| | | const editFormOptions = ref([[{ title: "优先级", field: "grade", type: "int" },]]); |
| | | const searchFormFields = ref({ |
| | | taskNum: "", |
| | | palletCode: "", |
| | |
| | | const searchFormOptions = ref([ |
| | | [ |
| | | { title: "任务号", field: "taskNum", type: "int" }, |
| | | { title: "托盘编号", field: "palletCode", type: "like" }, |
| | | { title: "托盘编号", field: "palletCode", type: "text" }, |
| | | { |
| | | title: "任务类型", |
| | | field: "taskType", |
| | |
| | | }, |
| | | ], |
| | | [ |
| | | { title: "起始地址", field: "sourceAddress", type: "like" }, |
| | | { title: "目标地址", field: "targetAddress", type: "like" }, |
| | | { title: "当前位置", field: "currentAddress", type: "like" }, |
| | | { title: "下一位置", field: "nextAddress", type: "like" }, |
| | | { title: "起始地址", field: "sourceAddress", type: "text" }, |
| | | { title: "目标地址", field: "targetAddress", type: "text" }, |
| | | { title: "当前位置", field: "currentAddress", type: "text" }, |
| | | { title: "下一位置", field: "nextAddress", type: "text" }, |
| | | ], |
| | | [ |
| | | { title: "巷道号", field: "roadway", type: "like" }, |
| | | { title: "巷道号", field: "roadway", type: "text" }, |
| | | { "title": "生产产线", "field": "productionLine", type: "select", dataKey: "ProductionLine", data: [] }, |
| | | { title: "创建人", field: "creater", type: "like" }, |
| | | { title: "创建人", field: "creater", type: "text" }, |
| | | { title: "创建时间", field: "createDate", type: "datetime" }, |
| | | ], |
| | | ]); |