From 1e12c140c041c0cb52306a0db9ff0ba18354d0d8 Mon Sep 17 00:00:00 2001
From: dengjunjie <dengjunjie@hnkhzn.com>
Date: 星期四, 03 四月 2025 18:01:52 +0800
Subject: [PATCH] 优化WMS前端首页,货位查询column数据库关键字处理

---
 项目代码/WMS/WIDESEA_WMSClient/src/views/basic/locationInfo.vue |   41 ++++++++++++++++++++++++++++++++---------
 1 files changed, 32 insertions(+), 9 deletions(-)

diff --git "a/\351\241\271\347\233\256\344\273\243\347\240\201/WMS/WIDESEA_WMSClient/src/views/basic/locationInfo.vue" "b/\351\241\271\347\233\256\344\273\243\347\240\201/WMS/WIDESEA_WMSClient/src/views/basic/locationInfo.vue"
index 4969367..9c9a221 100644
--- "a/\351\241\271\347\233\256\344\273\243\347\240\201/WMS/WIDESEA_WMSClient/src/views/basic/locationInfo.vue"
+++ "b/\351\241\271\347\233\256\344\273\243\347\240\201/WMS/WIDESEA_WMSClient/src/views/basic/locationInfo.vue"
@@ -86,12 +86,34 @@
     ]);
     const searchFormFields = ref({
       locationCode: "",
-      roadwayNo: "",
+      locationStatus: "",
+      enableStatus:"",
+      row:"",
+      column:"",
+      layer:"",
     });
     const searchFormOptions = ref([
       [
-        { title: "璐т綅缂栧彿", field: "locationCode" },
-        { title: "宸烽亾缂栧彿", field: "roadwayNo" },
+        {
+          title: "璐т綅鐘舵��",
+          field: "locationStatus",
+          type: "selectList",
+          dataKey: "locationStatusEnum",
+          data: [],
+        },
+        {
+          title: "绂佺敤鐘舵��",
+          field: "enableStatus",
+          type: "selectList",
+          dataKey: "enableStatusEnum",
+          data: [],
+        },
+        { title: "璐т綅缂栧彿", field: "locationCode", type: "like" },
+      ],
+      [
+        { title: "鎺�", field: "row" },
+        { title: "鍒�", field: "column" },
+        { title: "灞�", field: "layer" },
       ],
     ]);
     const columns = ref([
@@ -113,8 +135,8 @@
         align: "left",
         bind: {
           key: "areainfo",
-          data: []
-        }
+          data: [],
+        },
       },
       {
         field: "locationCode",
@@ -122,6 +144,7 @@
         type: "string",
         width: 180,
         align: "left",
+        sort: "true",
       },
       {
         field: "locationName",
@@ -148,8 +171,8 @@
       {
         field: "column",
         title: "璐т綅鍒�",
-        type: "int",
-        width: 120,
+        type: "string",
+        width: 90,
         align: "left",
         hidden: true,
       },
@@ -157,7 +180,7 @@
         field: "layer",
         title: "璐т綅灞�",
         type: "string",
-        width: 200,
+        width: 90,
         align: "left",
         hidden: true,
       },
@@ -175,7 +198,7 @@
         type: "string",
         width: 120,
         align: "left",
-        bind:{key: "locationTypeEnum", data: []}
+        bind: { key: "locationTypeEnum", data: [] },
       },
       {
         field: "locationStatus",

--
Gitblit v1.9.3