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 | 62 +++++++++++++++++++++++++------
1 files changed, 50 insertions(+), 12 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 3d3cbf1..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: "select",dataKey: "areainfo",data: [],},
-
+ {
+ title: "璧风偣鍖哄煙",
+ required: true,
+ field: "startArea",
+ type: "select",
+ dataKey: "cachePointareainfo",
+ data: [],
+ },
+ {
+ title: "缁堢偣鍖哄煙",
+ required: true,
+ field: "nextArea",
+ type: "select",
+ dataKey: "cachePointareainfo",
+ data: [],
+ },
],
[
- {title: "璺敱绫诲瀷",field: "routerType",type: "like"},
- {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,13 +72,31 @@
});
const searchFormOptions = ref([
[
- {title: "璧风偣",required: true,field: "startArea",type: "string",},
- {title: "缁堢偣鍖哄煙ID",field: "nextArea",type: "select",dataKey: "areainfo",data: [],},
+ {
+ 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: "like"},
- {title: "鏄惁涓虹粓鐐�",field: "isEnd",type: "select",dataKey: "enable",data: [],}
+ { title: "璺敱绫诲瀷", field: "routerType", type: "like" },
+ {
+ title: "鏄惁涓虹粓鐐�",
+ field: "isEnd",
+ type: "select",
+ dataKey: "enable",
+ data: [],
+ },
],
]);
const columns = ref([
@@ -75,18 +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: "areainfo", data: [] },
+ bind: { key: "cachePointareainfo", data: [] },
},
{
field: "routerType",
--
Gitblit v1.9.3