From 7ac173d18092ae25295bab13741cc8b7c2b82742 Mon Sep 17 00:00:00 2001 From: wangxinhui <wangxinhui@hnkhzn.com> Date: 星期一, 18 八月 2025 09:58:52 +0800 Subject: [PATCH] 1 --- 代码管理/WMS/WIDESEA_WMSClient/src/views/basic/customerInfo.vue | 40 +++++++++++++++++++++++++++++++++++++--- 1 files changed, 37 insertions(+), 3 deletions(-) diff --git "a/\344\273\243\347\240\201\347\256\241\347\220\206/WMS/WIDESEA_WMSClient/src/views/basic/customerInfo.vue" "b/\344\273\243\347\240\201\347\256\241\347\220\206/WMS/WIDESEA_WMSClient/src/views/basic/customerInfo.vue" index 4768e46..9b337e3 100644 --- "a/\344\273\243\347\240\201\347\256\241\347\220\206/WMS/WIDESEA_WMSClient/src/views/basic/customerInfo.vue" +++ "b/\344\273\243\347\240\201\347\256\241\347\220\206/WMS/WIDESEA_WMSClient/src/views/basic/customerInfo.vue" @@ -30,17 +30,51 @@ sortName: "id" }); const editFormFields = ref({ - outRule: "" + outRule: "", + code: "", + name: "", + nickName: "", + state: "" + }); const editFormOptions = ref([[ { - title: "鍑哄叆搴撹鍒�", + title: "瀹㈡埛缂栫爜", + required: true, + field: "code", + type: "string", + }, + { + title: "瀹㈡埛鍚嶇О", + required: true, + field: "name", + type: "string", + }, + { + title: "瀹㈡埛鍏ㄧО", + required: true, + field: "nickName", + type: "string", + }, + ], + [ + { + title: "鍑哄叆瑙勫垯", required: true, field: "outRule", type: "select", dataKey: "customerOutRuleEnum", data: [], - },] + }, + { + title: "瀹㈡埛鐘舵��", + required: true, + field: "state", + type: "select", + dataKey: "enableEnum", + data: [], + }, + ] ]); const searchFormFields = ref({}); const searchFormOptions = ref([ -- Gitblit v1.9.3