From 035f2a81a59532ac9f892dab9ade44304847b4fb Mon Sep 17 00:00:00 2001
From: wanshenmean <cathay_xy@163.com>
Date: 星期一, 06 四月 2026 11:11:36 +0800
Subject: [PATCH] 重构输送线选择器;添加表格展开功能
---
Code/WMS/WIDESEA_WMSClient/src/components/basic/ViewGrid/props.js | 30 ++++++++++++++++++------------
1 files changed, 18 insertions(+), 12 deletions(-)
diff --git a/Code/WMS/WIDESEA_WMSClient/src/components/basic/ViewGrid/props.js b/Code/WMS/WIDESEA_WMSClient/src/components/basic/ViewGrid/props.js
index 5d0ebc6..138680b 100644
--- a/Code/WMS/WIDESEA_WMSClient/src/components/basic/ViewGrid/props.js
+++ b/Code/WMS/WIDESEA_WMSClient/src/components/basic/ViewGrid/props.js
@@ -1,55 +1,61 @@
let props = {
- columns: {//褰撳墠琛ㄧ殑閰嶇疆淇℃伅
+ columns: {
type: Array,
default: () => {
return [];
}
},
- detail: {//浠庤〃鏄庣粏閰嶇疆
+ detail: {
type: Object,
default: () => {
return {
- columns: [],//浠庤〃鍒�
- sortName: ""//浠庤〃鎺掑簭瀛楁
+ columns: [],
+ sortName: ""
};
}
},
- editFormFields: {//鏂板缓銆佺紪杈戝瓧娈�(key/value)
+ editFormFields: {
type: Object,
default: () => {
return {};
}
},
- editFormOptions: {//鏂板缓銆佺紪杈戦厤缃俊鎭�
+ editFormOptions: {
type: Array,
default: () => {
return [];
}
},
- searchFormFields: {//鏌ヨ瀛楁(key/value)
+ searchFormFields: {
type: Object,
default: () => {
return {};
}
},
- searchFormOptions: {//鏌ヨ閰嶇疆淇℃伅(key/value)
+ searchFormOptions: {
type: Array,
default: () => {
return [];
}
},
- table: {//琛ㄧ殑閰嶇疆淇℃伅锛氫富閿�佹帓搴忕瓑
+ table: {
type: Object,
default: () => {
return {};
}
},
- extend: {//琛ㄧ殑鎵╁睍鏂规硶涓庣粍浠堕兘鍚堝苟鍒版灞炴�т腑
+ tableExpand: {
+ type: Object,
+ default: () => {
+ return {};
+ }
+ },
+ extend: {
type: Object,
default: () => {
return {};
}
}
-}
+};
-export default props;
\ No newline at end of file
+export default props;
--
Gitblit v1.9.3