| | |
| | | sortName: "TaskId" |
| | | }); |
| | | const editFormFields = ref({ |
| | | "taskNum": "", |
| | | "palletCode": "" |
| | | "grade": "", |
| | | }); |
| | | const editFormOptions = ref([ |
| | | [ |
| | | { "title": "任务号", "field": "taskNum", "type": "text" }, |
| | | { "title": "托盘号", "field": "palletCode", "type": "text" }, |
| | | { "title": "任务类型", "field": "taskType", "type": "select", dataKey: "TaskType", data: [] }, |
| | | { "title": "任务状态", "field": "taskState", "type": "select", dataKey: "TaskStatus", data: [] }, |
| | | |
| | | ], |
| | | [ |
| | | { "title": "起始位置", "field": "sourceAddress", type: "text" }, |
| | | { "title": "当前位置", "field": "currentAddress", type: "text" }, |
| | | { "title": "下一位置", "field": "nextAddress", type: "text" }, |
| | | { "title": "目标位置", "field": "targetAddress", type: "text" }, |
| | | { "title": "优先级", "field": "grade", type: "text" }, |
| | | ], |
| | | ]); |
| | | const searchFormFields = ref({ |