From 2ae5aa151f7b40a082e34aa7ed22b4b64edd1d3c Mon Sep 17 00:00:00 2001 From: dengjunjie <dengjunjie@hnkhzn.com> Date: 星期三, 11 六月 2025 17:13:56 +0800 Subject: [PATCH] 修改堆垛机通讯协议及交互逻辑 --- 代码管理/WMS/WIDESEA_WMSClient/src/views/stock/stockView.vue | 30 +++++++++--------------------- 1 files changed, 9 insertions(+), 21 deletions(-) diff --git "a/\344\273\243\347\240\201\347\256\241\347\220\206/WMS/WIDESEA_WMSClient/src/views/stock/stockView.vue" "b/\344\273\243\347\240\201\347\256\241\347\220\206/WMS/WIDESEA_WMSClient/src/views/stock/stockView.vue" index 9799193..eb1d413 100644 --- "a/\344\273\243\347\240\201\347\256\241\347\220\206/WMS/WIDESEA_WMSClient/src/views/stock/stockView.vue" +++ "b/\344\273\243\347\240\201\347\256\241\347\220\206/WMS/WIDESEA_WMSClient/src/views/stock/stockView.vue" @@ -24,7 +24,7 @@ cnName: "搴撳瓨瑙嗗浘", name: "stockView", url: "/stockView/", - sortName: "stockId", + sortName: "CreateDate", }); const editFormFields = ref({ palletCode: "", @@ -32,26 +32,7 @@ locationName: "", }); const editFormOptions = ref([ - [ - { - title: "鎵樼洏缂栧彿", - required: true, - field: "palletCode", - type: "string", - }, - { - title: "璐т綅缂栧彿", - required: true, - field: "locationCode", - type: "string", - }, - { - title: "璐т綅鍚嶇О", - required: true, - field: "locationName", - type: "string", - }, - ], + ]); const searchFormFields = ref({ palletCode: "", @@ -61,6 +42,8 @@ [ { title: "鎵樼洏缂栧彿", field: "palletCode" }, { title: "璐т綅缂栧彿", field: "locationCode" }, + { title: "璐т綅鐘舵��", field: "locationStatus" ,type: "selectList",dataKey: "locationStatusEnum",data: [],}, + { title: "搴撳瓨鐘舵��", field: "stockStatus" ,type: "selectList",dataKey: "stockStatusEmun",data: [],}, ], ]); const columns = ref([ @@ -141,6 +124,7 @@ type: "string", width: 200, align: "left", + bind: { key: "stockStatusEmun", data: [] }, }, { field: "locationType", @@ -148,6 +132,7 @@ type: "string", width: 120, align: "left", + bind:{key: "locationTypeEnum", data: []} }, { field: "locationStatus", @@ -155,6 +140,7 @@ type: "string", width: 200, align: "left", + bind: { key: "locationStatusEnum", data: [] }, }, { field: "enalbeStatus", @@ -162,6 +148,7 @@ type: "string", width: 180, align: "left", + bind: { key: "enableStatusEnum", data: [] }, }, { field: "isFull", @@ -170,6 +157,7 @@ width: 150, align: "left", hidden: true, + bind: { key: "yesno", data: [] }, }, { field: "creater", -- Gitblit v1.9.3