| | |
| | | sortName: "AreaCode" |
| | | }); |
| | | const editFormFields = ref({ |
| | | "id":"", |
| | | "toArea": "", |
| | | "fromArea": "", |
| | | "barcodeType": "", |
| | |
| | | }); |
| | | const editFormOptions = ref([ |
| | | [ |
| | | { "title": "目标库区", "field": "toArea", type: "text" }, |
| | | { "title": "来源库区", "field": "fromArea", type: "text" }, |
| | | { "title": "托盘类型", "field": "barcodeType", type: "text" }, |
| | | ], |
| | | [ |
| | | { "title": "所属产线", "field": "productLine", type: "text" }, |
| | | { "title": "在途数量", "field": "inLineNum", type: "text" }, |
| | | { "title": "可缓存数量", "field": "cacheNum", type: "text" }, |
| | | ] |
| | | ]); |
| | | const searchFormFields = ref({}); |
| | | const searchFormFields = ref({ |
| | | "iD":"", |
| | | "toArea": "", |
| | | "fromArea": "", |
| | | "barcodeType": "", |
| | | "productLine": "", |
| | | "inLineNum": "", |
| | | "cacheNum":"" |
| | | }); |
| | | const searchFormOptions = ref([ |
| | | [ |
| | | { "title": "目标库区", "field": "toArea", type: "text" }, |
| | |
| | | { "title": "可缓存数量", "field": "cacheNum", type: "text" }, |
| | | ] |
| | | ]); |
| | | const columns = ref([{ field: 'ID', title: '主键', type: 'int', sort: true, hidden: true, width: 110, readonly: true, require: true, align: 'left' }, |
| | | const columns = ref([{ field: 'iD', title: '主键', type: 'int', sort: true, hidden: true, width: 110, readonly: true, require: true, align: 'left' }, |
| | | { field: 'toArea', title: '目标库区', type: 'string', sort: true, width: 110, require: true, align: 'left', sort: true }, |
| | | { field: 'fromArea', title: '来源库区', type: 'string', sort: true, width: 110, align: 'left' }, |
| | | { field: 'barcodeType', title: '托盘类型', type: 'string', sort: true, width: 110, align: 'left' }, |