huangxiaoqiang
2025-02-19 5bc6d819399409a429093a6001c553d6fa2d2e15
Code Management/WCS/WIDESEAWCS_Client/src/views/basicinfo/Dt_needBarcode.vue
@@ -24,6 +24,7 @@
            sortName: "AreaCode"
        });
        const editFormFields = ref({
            "id":"",
            "toArea": "",
            "fromArea": "",
            "barcodeType": "",
@@ -33,17 +34,19 @@
        });
        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" },
@@ -56,7 +59,7 @@
                { "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' },