From baad30699918c536d0b96e36df70b8f352d520e4 Mon Sep 17 00:00:00 2001 From: 刘磊 <1161824510@qq.com> Date: 星期五, 15 八月 2025 10:15:53 +0800 Subject: [PATCH] 同步 --- 项目代码/WMS/WIDESEA_WMSClient/src/views/widesea_wms/stock/Dt_PalletStockInfo.vue | 20 ++++++++++++-------- 1 files changed, 12 insertions(+), 8 deletions(-) diff --git "a/\351\241\271\347\233\256\344\273\243\347\240\201/WMS/WIDESEA_WMSClient/src/views/widesea_wms/stock/Dt_PalletStockInfo.vue" "b/\351\241\271\347\233\256\344\273\243\347\240\201/WMS/WIDESEA_WMSClient/src/views/widesea_wms/stock/Dt_PalletStockInfo.vue" index b48401b..8ad2830 100644 --- "a/\351\241\271\347\233\256\344\273\243\347\240\201/WMS/WIDESEA_WMSClient/src/views/widesea_wms/stock/Dt_PalletStockInfo.vue" +++ "b/\351\241\271\347\233\256\344\273\243\347\240\201/WMS/WIDESEA_WMSClient/src/views/widesea_wms/stock/Dt_PalletStockInfo.vue" @@ -16,36 +16,40 @@ export default defineComponent({ setup() { const table = ref({ - key: 'wheels_ID', + key: 'id', footer: "Foots", cnName: '搴撳瓨淇℃伅', name: 'stock/Dt_PalletStockInfo', url: "/Dt_PalletStockInfo/", - sortName: "Id" + sortName: "id" }); const editFormFields = ref({ }); const editFormOptions = ref([ ]); const searchFormFields = ref({ - locationCode:"", - palletCode:"" + locationCode: "", + palletCode: "" }); const searchFormOptions = ref([ [ { "title": "鏂欑鍙�/鎵樼洏鍙�", "field": "palletCode", type: "text" }, { "title": "搴撲綅鍙�", "field": "locationCode", type: "text" }, { "title": "搴撳瓨鐘舵��", "field": "stockStatus", type: "select", dataKey: "CurrentStatue", data: [] }, + ], + [ + { "title": "鐗╂枡鍚�", "field": "materielName", type: "text" }, + { "title": "搴撳尯", "field": "areaCode", "type": "select", dataKey: "AreaName", data: [] }, ] ]); const columns = ref([ - { field: 'Id', title: '涓婚敭ID', type: 'int', width: 110, readonly: true, hidden: true, require: true, align: 'left' }, + { 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' }, - { field: 'areaCode', title: '搴撳尯', type: 'string', width: 110, align: 'left',bind: { key: "AreaType", data: [] } }, + { field: 'areaCode', title: '搴撳尯', type: 'string', width: 110, align: 'left',bind: { key: "AreaName", data: [] }}, { field: 'locationCode', title: '搴撲綅鍙�', type: 'string', width: 110, align: 'left' }, //{ field: 'SequenceNum', title: '搴忓垪鍙�', type: 'string', width: 110, align: 'left', sort: true, link: true, }, - { field: 'stockStatus', title: '搴撳瓨鐘舵��', type: 'string', width: 110, align: 'left',bind: { key: "CurrentStatue", data: [] } }, - { field: 'creater', title: '鍒涘缓鏃堕棿', type: 'string', width: 100, align: 'left' }, + { field: 'stockStatus', title: '搴撳瓨鐘舵��', type: 'string', width: 110, align: 'left', bind: { key: "CurrentStatue", data: [] } }, + { field: 'creater', title: '鍒涘缓鏃堕棿', type: 'string', width: 100, align: 'left' }, { field: 'createDate', title: '鍒涘缓鏃堕棿', type: 'datetime', sort: true, width: 100, align: 'left' }, ]); -- Gitblit v1.9.3