From 05c2e8aadb518a6323ff9fe23051fdbd56097221 Mon Sep 17 00:00:00 2001 From: huanghongfeng <huanghongfeng@hnkhzn.com> Date: 星期日, 08 十二月 2024 19:46:43 +0800 Subject: [PATCH] 文本日志查看 --- 代码管理/WMS/WIDESEA_WMSClient/src/views/stock/stockInfo.vue | 63 +++++++++++++++++++++++++++---- 1 files changed, 54 insertions(+), 9 deletions(-) diff --git "a/\344\273\243\347\240\201\347\256\241\347\220\206/WMS/WIDESEA_WMSClient/src/views/stock/stockInfo.vue" "b/\344\273\243\347\240\201\347\256\241\347\220\206/WMS/WIDESEA_WMSClient/src/views/stock/stockInfo.vue" index 5499e6d..05cbea5 100644 --- "a/\344\273\243\347\240\201\347\256\241\347\220\206/WMS/WIDESEA_WMSClient/src/views/stock/stockInfo.vue" +++ "b/\344\273\243\347\240\201\347\256\241\347\220\206/WMS/WIDESEA_WMSClient/src/views/stock/stockInfo.vue" @@ -39,7 +39,13 @@ const editFormOptions = ref([ [ { title: "鎵樼洏缂栧彿", field: "palletCode" }, - { title: "鐗╂枡绫诲瀷", field: "materialType" }, + { + title: "鐗╂枡绫诲瀷", + field: "materialType", + type: "select", + dataKey: "InventoryMaterialType", + data: [], + }, { title: "璐т綅缂栧彿", field: "locationCode" }, { title: "搴撳瓨鐘舵��", @@ -51,6 +57,16 @@ ], [ { title: "閲嶉噺", field: "materialweight" }, + { + title: "鐗╂枡鐘舵��", + field: "wlstatus", + type: "select", + dataKey: "InventoryMaterialStatus", + data: [] + }, + { + title: "澶囨敞", field: "Remark" + } ], ]); const searchFormFields = ref({ @@ -71,7 +87,7 @@ dataKey: "InventoryMaterialType", data: [], }, - { title: "璐т綅缂栧彿", field: "locationCode" }, + { title: "璐т綅缂栧彿", field: "locationCode",type: "like", }, { title: "搴撳瓨鐘舵��", field: "stockStatus", @@ -80,6 +96,19 @@ data: [], }, ], + [ + { + title: "鐗╂枡鐘舵��", + field: "wlstatus", + type: "selectList", + dataKey: "InventoryMaterialStatus", + data: [], + }, + { title: "搴撳瓨缂栧彿", + field: "id", + type: "like", + }, + ] ]); const columns = ref([ { @@ -91,6 +120,14 @@ readonly: true, require: true, align: "left", + }, + { + field: "id", + title: "搴撳瓨缂栧彿", + type: "string", + width: 90, + align: "left", + DisplayType:"link" }, { field: "palletCode", @@ -117,6 +154,14 @@ }, { + field: "wlstatus", + title: "鐗╂枡鐘舵��", + type: "string", + width: 150, + align: "left", + bind: { key: "InventoryMaterialStatus", data: [] }, + }, + { field: "isFull", title: "鏄惁婊$洏", type: "string", @@ -137,6 +182,12 @@ title: "閲嶉噺(鏁伴噺)", type: "string", width: 150, + align: "left", + },{ + field: "remark", + title: "澶囨敞", + type: "string", + width: 100, align: "left", }, { @@ -167,13 +218,7 @@ width: 160, align: "left", }, - { - field: "remark", - title: "澶囨敞", - type: "string", - width: 100, - align: "left", - }, + ]); const detail = ref({ cnName: "#detailCnName", -- Gitblit v1.9.3