From 4f39dcc195f28fa275fc2d065fbf1bf6a46c21b7 Mon Sep 17 00:00:00 2001
From: dengjunjie <dengjunjie@hnkhzn.com>
Date: 星期二, 17 六月 2025 00:41:18 +0800
Subject: [PATCH] 优化出入库逻辑
---
代码管理/WMS/WIDESEA_WMSClient/src/views/basic/areaRouter.vue | 64 ++++++++++++++++++++++++++-----
1 files changed, 53 insertions(+), 11 deletions(-)
diff --git "a/\344\273\243\347\240\201\347\256\241\347\220\206/WMS/WIDESEA_WMSClient/src/views/basic/areaRouter.vue" "b/\344\273\243\347\240\201\347\256\241\347\220\206/WMS/WIDESEA_WMSClient/src/views/basic/areaRouter.vue"
index 9dd18a6..05aa9da 100644
--- "a/\344\273\243\347\240\201\347\256\241\347\220\206/WMS/WIDESEA_WMSClient/src/views/basic/areaRouter.vue"
+++ "b/\344\273\243\347\240\201\347\256\241\347\220\206/WMS/WIDESEA_WMSClient/src/views/basic/areaRouter.vue"
@@ -35,13 +35,32 @@
});
const editFormOptions = ref([
[
- {title: "璧风偣",required: true,field: "startArea",type: "string",},
- {title: "缁堢偣鍖哄煙ID",required: true,field: "nextArea",type: "string",},
-
+ {
+ title: "璧风偣鍖哄煙",
+ required: true,
+ field: "startArea",
+ type: "select",
+ dataKey: "cachePointareainfo",
+ data: [],
+ },
+ {
+ title: "缁堢偣鍖哄煙",
+ required: true,
+ field: "nextArea",
+ type: "select",
+ dataKey: "cachePointareainfo",
+ data: [],
+ },
],
[
- {title: "璺敱绫诲瀷",field: "routerType",type: "select",dataKey: "locationStatusEnum",data: [],},
- {title: "鏄惁涓虹粓鐐�",field: "isEnd",type: "select",dataKey: "enable",data: [],}
+ { title: "璺敱绫诲瀷", field: "routerType", type: "like" },
+ {
+ title: "鏄惁涓虹粓鐐�",
+ field: "isEnd",
+ type: "select",
+ dataKey: "enable",
+ data: [],
+ },
],
]);
const searchFormFields = ref({
@@ -53,12 +72,31 @@
});
const searchFormOptions = ref([
[
- {title: "璧风偣",required: true,field: "startArea",type: "string",},
- {title: "缁堢偣鍖哄煙ID",required: true,field: "nextArea",type: "string",},
+ {
+ title: "璧风偣",
+ field: "startArea",
+ type: "select",
+ dataKey: "cachePointareainfo",
+ data: [],
+ },
+ {
+ title: "缁堢偣鍖哄煙ID",
+ field: "nextArea",
+ type: "select",
+ dataKey: "cachePointareainfo",
+ data: [],
+ },
+ // {title: "缁堢偣鍖哄煙ID",required: true,field: "nextArea",type: "string",},
],
[
- {title: "璺敱绫诲瀷",field: "routerType",type: "select",dataKey: "locationStatusEnum",data: [],},
- {title: "鏄惁涓虹粓鐐�",field: "isEnd",type: "select",dataKey: "enable",data: [],}
+ { title: "璺敱绫诲瀷", field: "routerType", type: "like" },
+ {
+ title: "鏄惁涓虹粓鐐�",
+ field: "isEnd",
+ type: "select",
+ dataKey: "enable",
+ data: [],
+ },
],
]);
const columns = ref([
@@ -74,17 +112,19 @@
},
{
field: "startArea",
- title: "璧风偣",
+ title: "璧风偣鍖哄煙",
type: "string",
width: 90,
align: "left",
+ bind: { key: "cachePointareainfo", data: [] },
},
{
field: "nextArea",
- title: "缁堢偣鍖哄煙ID",
+ title: "缁堢偣鍖哄煙",
type: "string",
width: 150,
align: "left",
+ bind: { key: "cachePointareainfo", data: [] },
},
{
field: "routerType",
@@ -122,6 +162,7 @@
type: "datetime",
width: 160,
align: "left",
+ sort: true,
},
{
field: "modifier",
@@ -136,6 +177,7 @@
type: "datetime",
width: 160,
align: "left",
+ sort: true,
},
{
field: "remark",
--
Gitblit v1.9.3