| | |
| | | const searchFormOptions = ref([ |
| | | [ |
| | | { "title": "æçæ¡ç ", "field": "palletCode", type: "text" }, |
| | | { "title": "ç©æç¼å·", "field": "materielCode", type: "text" }, |
| | | { "title": "åºåç¶æ", "field": "status", type: "select", dataKey: "StockState", data: [] }, |
| | | { "title": "ç»çç±»å", "field": "groupType", type: "select", dataKey: "GroupType", data: [] }, |
| | | ], |
| | | [ |
| | | { "title": "ç产产线", "field": "productionLine", type: "select", dataKey: "ProductionLine", data: [] }, |
| | | |
| | | ] |
| | | ]); |
| | | const columns = ref([ |
| | | { field: 'id', title: 'åºåID', type: 'int', width: 110, readonly: true, hidden: true, require: true, align: 'left' }, |
| | | { field: 'palletCode', title: 'æçæ¡ç ', type: 'string', width: 110, align: 'left', sort: true, link: true, }, |
| | | { field: 'locationCode', title: 'åºä½', type: 'string', width: 110, align: 'left' }, |
| | | { field: 'isFull', title: 'æ¯å¦æ»¡ç', type: 'bool', width: 110, align: 'left' }, |
| | | // { field: 'state', title: 'åºåç¶æ', type: 'int', width: 110, align: 'left', bind: { key: "StockState", data: [] } }, |
| | | { field: 'remark', title: '夿³¨', type: 'string', width: 120, align: 'left' }, |
| | | { field: 'productionLine', title: '产线', type: 'string', width: 70, align: 'left' , bind: { key: "ProductionLine", data: [] } }, |
| | | { field: 'createDate', title: 'å建æ¶é´', type: 'int', sort: true, width: 100, align: 'left' }, |
| | | ]); |
| | | |