@lingxiteam/assets 4.3.2-alpha.1 → 4.3.2-alpha.3
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/es/rootConfig/locales/enus/config-locales-es.mobile.js +51 -144
- package/es/rootConfig/locales/enus/config-locales-es.pc.js +30 -37
- package/es/rootConfig/locales/enus/config-locales-es.todo-actionList.js +293 -721
- package/es/rootConfig/locales/enus/config-locales-es.todo-callback.js +8 -9
- package/es/rootConfig/locales/enus/config-locales-es.todo-optionList.js +141 -214
- package/es/rootConfig/locales/zhcn/config-locales-cn.mobile.js +1 -143
- package/es/rootConfig/locales/zhcn/config-locales-cn.pc.js +1 -289
- package/es/rootConfig/locales/zhcn/config-locales-cn.todo-actionList.js +0 -714
- package/es/rootConfig/locales/zhcn/config-locales-cn.todo-callback.js +0 -8
- package/es/rootConfig/locales/zhcn/config-locales-cn.todo-optionList.js +2 -214
- package/es/rootConfig/locales/zhhk/config-locales-hk.mobile.js +49 -142
- package/es/rootConfig/locales/zhhk/config-locales-hk.pc.js +77 -288
- package/es/rootConfig/locales/zhhk/config-locales-hk.todo-actionList.js +287 -715
- package/es/rootConfig/locales/zhhk/config-locales-hk.todo-callback.js +8 -9
- package/es/rootConfig/locales/zhhk/config-locales-hk.todo-optionList.js +140 -213
- package/es/rootConfig/mobile/BusiComp.js +22 -22
- package/es/rootConfig/mobile/MobileModal.js +38 -38
- package/es/rootConfig/mobile/MobilePopover.js +22 -22
- package/es/rootConfig/mobile/page.js +42 -42
- package/es/rootConfig/pc/BusiComp.js +41 -41
- package/es/rootConfig/pc/Drawer.js +64 -64
- package/es/rootConfig/pc/Modal.js +63 -63
- package/es/rootConfig/pc/Popover.js +42 -42
- package/es/rootConfig/pc/page.js +55 -55
- package/es/rootConfig/todoActionList.js +691 -691
- package/es/rootConfig/todoCallback.js +9 -9
- package/es/rootConfig/todoOptionList.js +203 -203
- package/lib/rootConfig/locales/enus/config-locales-es.mobile.js +51 -144
- package/lib/rootConfig/locales/enus/config-locales-es.pc.js +30 -37
- package/lib/rootConfig/locales/enus/config-locales-es.todo-actionList.js +293 -721
- package/lib/rootConfig/locales/enus/config-locales-es.todo-callback.js +8 -9
- package/lib/rootConfig/locales/enus/config-locales-es.todo-optionList.js +141 -214
- package/lib/rootConfig/locales/zhcn/config-locales-cn.mobile.js +1 -143
- package/lib/rootConfig/locales/zhcn/config-locales-cn.pc.js +1 -289
- package/lib/rootConfig/locales/zhcn/config-locales-cn.todo-actionList.js +0 -714
- package/lib/rootConfig/locales/zhcn/config-locales-cn.todo-callback.js +0 -8
- package/lib/rootConfig/locales/zhcn/config-locales-cn.todo-optionList.js +2 -214
- package/lib/rootConfig/locales/zhhk/config-locales-hk.mobile.js +49 -142
- package/lib/rootConfig/locales/zhhk/config-locales-hk.pc.js +77 -288
- package/lib/rootConfig/locales/zhhk/config-locales-hk.todo-actionList.js +287 -715
- package/lib/rootConfig/locales/zhhk/config-locales-hk.todo-callback.js +8 -9
- package/lib/rootConfig/locales/zhhk/config-locales-hk.todo-optionList.js +140 -213
- package/lib/rootConfig/mobile/BusiComp.js +22 -22
- package/lib/rootConfig/mobile/MobileModal.js +38 -38
- package/lib/rootConfig/mobile/MobilePopover.js +22 -22
- package/lib/rootConfig/mobile/page.js +42 -42
- package/lib/rootConfig/pc/BusiComp.js +41 -41
- package/lib/rootConfig/pc/Drawer.js +64 -64
- package/lib/rootConfig/pc/Modal.js +63 -63
- package/lib/rootConfig/pc/Popover.js +42 -42
- package/lib/rootConfig/pc/page.js +55 -55
- package/lib/rootConfig/todoActionList.js +691 -691
- package/lib/rootConfig/todoCallback.js +9 -9
- package/lib/rootConfig/todoOptionList.js +203 -203
- package/package.json +1 -1
|
@@ -15,7 +15,7 @@ export default {
|
|
|
15
15
|
// 根节点
|
|
16
16
|
isBusiObjContainer: false,
|
|
17
17
|
isContainer: false,
|
|
18
|
-
label:
|
|
18
|
+
label: '弹窗',
|
|
19
19
|
props: {
|
|
20
20
|
width: '50vw',
|
|
21
21
|
height: '50vh',
|
|
@@ -26,10 +26,10 @@ export default {
|
|
|
26
26
|
destroyOnClose: true,
|
|
27
27
|
showCloseButton: true,
|
|
28
28
|
compState: [{
|
|
29
|
-
name:
|
|
29
|
+
name: '业务主键',
|
|
30
30
|
code: 'bizId'
|
|
31
31
|
}, {
|
|
32
|
-
name:
|
|
32
|
+
name: '业务场景',
|
|
33
33
|
code: 'sceneCode'
|
|
34
34
|
}]
|
|
35
35
|
},
|
|
@@ -42,7 +42,7 @@ export default {
|
|
|
42
42
|
groupsName: 'root',
|
|
43
43
|
todoActionList: [].concat(_toConsumableArray(getSystemTodoActionList('mobile')), [{
|
|
44
44
|
key: 'previewFile',
|
|
45
|
-
label:
|
|
45
|
+
label: '文件预览',
|
|
46
46
|
todoOptions: [{
|
|
47
47
|
key: 'fileId',
|
|
48
48
|
label: localeKey('todoActionList.previewFile.todoOptions.fileId.label'),
|
|
@@ -50,13 +50,13 @@ export default {
|
|
|
50
50
|
labelTip: localeKey('todoActionList.previewFile.todoOptions.fileId.labelTip')
|
|
51
51
|
}],
|
|
52
52
|
classification: [{
|
|
53
|
-
label:
|
|
53
|
+
label: '页面类',
|
|
54
54
|
value: 'page'
|
|
55
55
|
}]
|
|
56
56
|
}]),
|
|
57
57
|
todoEvents: [{
|
|
58
58
|
value: 'useEffect',
|
|
59
|
-
label:
|
|
59
|
+
label: '弹窗打开后'
|
|
60
60
|
}, {
|
|
61
61
|
value: 'stateChange',
|
|
62
62
|
label: localeKey('todoEvents.stateChange.label')
|
|
@@ -64,26 +64,26 @@ export default {
|
|
|
64
64
|
value: 'usePageEndRequest',
|
|
65
65
|
label: localeKey('todoEvents.usePageEndRequest.label'),
|
|
66
66
|
remarks: [{
|
|
67
|
-
label:
|
|
67
|
+
label: '场景描述',
|
|
68
68
|
content: localeKey('todoEvents.usePageEndRequest.remarks.0.content')
|
|
69
69
|
}, {
|
|
70
|
-
label:
|
|
70
|
+
label: '适用场景',
|
|
71
71
|
content: localeKey('todoEvents.usePageEndRequest.remarks.1.content')
|
|
72
72
|
}]
|
|
73
73
|
}],
|
|
74
74
|
todoProps: {
|
|
75
75
|
pageName: {
|
|
76
|
-
label:
|
|
76
|
+
label: '名称',
|
|
77
77
|
type: 'Input',
|
|
78
|
-
groupsName:
|
|
78
|
+
groupsName: '基础',
|
|
79
79
|
props: {
|
|
80
80
|
required: true
|
|
81
81
|
}
|
|
82
82
|
},
|
|
83
83
|
pagePath: {
|
|
84
|
-
label:
|
|
84
|
+
label: '路径',
|
|
85
85
|
type: 'UrlInput',
|
|
86
|
-
groupsName:
|
|
86
|
+
groupsName: '基础',
|
|
87
87
|
props: {
|
|
88
88
|
required: true,
|
|
89
89
|
placeholder: localeKey('todoProps.pagePath.props.placeholder'),
|
|
@@ -95,9 +95,9 @@ export default {
|
|
|
95
95
|
}
|
|
96
96
|
},
|
|
97
97
|
catalogItemId: {
|
|
98
|
-
label:
|
|
98
|
+
label: '分组',
|
|
99
99
|
type: 'CatalogTreeSelect',
|
|
100
|
-
groupsName:
|
|
100
|
+
groupsName: '基础',
|
|
101
101
|
props: {
|
|
102
102
|
required: true,
|
|
103
103
|
options: [],
|
|
@@ -107,39 +107,39 @@ export default {
|
|
|
107
107
|
}
|
|
108
108
|
},
|
|
109
109
|
scenarioList: {
|
|
110
|
-
label:
|
|
110
|
+
label: '适用场景',
|
|
111
111
|
type: 'SelectScenarioPopover',
|
|
112
|
-
groupsName:
|
|
112
|
+
groupsName: '基础',
|
|
113
113
|
props: {
|
|
114
114
|
options: []
|
|
115
115
|
}
|
|
116
116
|
},
|
|
117
117
|
mode: {
|
|
118
|
-
label:
|
|
118
|
+
label: '显示模式',
|
|
119
119
|
type: 'Select',
|
|
120
|
-
groupsName:
|
|
120
|
+
groupsName: '基础',
|
|
121
121
|
props: {
|
|
122
122
|
options: [{
|
|
123
|
-
title:
|
|
123
|
+
title: '弹窗',
|
|
124
124
|
value: 'alert'
|
|
125
125
|
}, {
|
|
126
|
-
title:
|
|
126
|
+
title: '浮层',
|
|
127
127
|
value: 'popup'
|
|
128
128
|
}, {
|
|
129
|
-
title:
|
|
129
|
+
title: '下拉',
|
|
130
130
|
value: 'dropdown'
|
|
131
131
|
}, {
|
|
132
|
-
title:
|
|
132
|
+
title: '从左侧滑出',
|
|
133
133
|
value: 'sliderLeft'
|
|
134
134
|
}, {
|
|
135
|
-
title:
|
|
135
|
+
title: '从右侧滑出',
|
|
136
136
|
value: 'sliderRight'
|
|
137
137
|
}]
|
|
138
138
|
}
|
|
139
139
|
},
|
|
140
140
|
width: {
|
|
141
|
-
label:
|
|
142
|
-
groupsName:
|
|
141
|
+
label: '宽度',
|
|
142
|
+
groupsName: '基础',
|
|
143
143
|
type: 'HeightInput',
|
|
144
144
|
props: {
|
|
145
145
|
dependProps: {
|
|
@@ -158,8 +158,8 @@ export default {
|
|
|
158
158
|
}
|
|
159
159
|
},
|
|
160
160
|
height: {
|
|
161
|
-
label:
|
|
162
|
-
groupsName:
|
|
161
|
+
label: '高度',
|
|
162
|
+
groupsName: '基础',
|
|
163
163
|
type: 'HeightInput',
|
|
164
164
|
props: {
|
|
165
165
|
dependProps: {
|
|
@@ -178,9 +178,9 @@ export default {
|
|
|
178
178
|
}
|
|
179
179
|
},
|
|
180
180
|
closeOnClickOverlay: {
|
|
181
|
-
label:
|
|
181
|
+
label: '关闭方式',
|
|
182
182
|
type: 'Select',
|
|
183
|
-
groupsName:
|
|
183
|
+
groupsName: '基础',
|
|
184
184
|
props: {
|
|
185
185
|
inhibitBtn: true,
|
|
186
186
|
options: [{
|
|
@@ -193,30 +193,30 @@ export default {
|
|
|
193
193
|
}
|
|
194
194
|
},
|
|
195
195
|
destroyOnClose: {
|
|
196
|
-
label:
|
|
196
|
+
label: '关闭后销毁',
|
|
197
197
|
type: 'Switch',
|
|
198
|
-
groupsName:
|
|
198
|
+
groupsName: '基础'
|
|
199
199
|
},
|
|
200
200
|
showCloseButton: {
|
|
201
201
|
label: localeKey('todoProps.showCloseButton.label'),
|
|
202
202
|
type: 'Switch',
|
|
203
|
-
groupsName:
|
|
203
|
+
groupsName: '基础'
|
|
204
204
|
},
|
|
205
205
|
ignoreLogin: {
|
|
206
|
-
label:
|
|
206
|
+
label: '免登录',
|
|
207
207
|
type: 'Switch',
|
|
208
|
-
groupsName:
|
|
208
|
+
groupsName: '基础',
|
|
209
209
|
props: {}
|
|
210
210
|
},
|
|
211
211
|
labels: {
|
|
212
|
-
label:
|
|
212
|
+
label: '标签',
|
|
213
213
|
type: 'ChooseTag',
|
|
214
|
-
groupsName:
|
|
214
|
+
groupsName: '基础'
|
|
215
215
|
},
|
|
216
216
|
compState: {
|
|
217
|
-
label:
|
|
217
|
+
label: '组件状态',
|
|
218
218
|
type: 'ParamsDefine',
|
|
219
|
-
groupsName:
|
|
219
|
+
groupsName: '组件状态'
|
|
220
220
|
}
|
|
221
221
|
},
|
|
222
222
|
todoStyles: {}
|
|
@@ -15,19 +15,19 @@ export default {
|
|
|
15
15
|
// 根节点
|
|
16
16
|
isBusiObjContainer: false,
|
|
17
17
|
isContainer: false,
|
|
18
|
-
label:
|
|
18
|
+
label: '浮窗',
|
|
19
19
|
props: {
|
|
20
20
|
pageDynamicFlag: false,
|
|
21
21
|
catalogItemId: -1,
|
|
22
22
|
ignoreLogin: false,
|
|
23
23
|
searchParams: [{
|
|
24
|
-
name:
|
|
24
|
+
name: '业务主键',
|
|
25
25
|
code: 'bizId'
|
|
26
26
|
}, {
|
|
27
|
-
name:
|
|
27
|
+
name: '业务场景',
|
|
28
28
|
code: 'sceneCode'
|
|
29
29
|
}, {
|
|
30
|
-
name:
|
|
30
|
+
name: '业务数据',
|
|
31
31
|
code: 'bizData'
|
|
32
32
|
}]
|
|
33
33
|
},
|
|
@@ -40,7 +40,7 @@ export default {
|
|
|
40
40
|
groupsName: 'root',
|
|
41
41
|
todoActionList: [].concat(_toConsumableArray(getSystemTodoActionList('mobile')), [{
|
|
42
42
|
key: 'previewFile',
|
|
43
|
-
label:
|
|
43
|
+
label: '文件预览',
|
|
44
44
|
todoOptions: [{
|
|
45
45
|
key: 'fileId',
|
|
46
46
|
label: localeKey('todoActionList.previewFile.todoOptions.fileId.label'),
|
|
@@ -48,7 +48,7 @@ export default {
|
|
|
48
48
|
labelTip: localeKey('todoActionList.previewFile.todoOptions.fileId.labelTip')
|
|
49
49
|
}],
|
|
50
50
|
classification: [{
|
|
51
|
-
label:
|
|
51
|
+
label: '页面类',
|
|
52
52
|
value: 'page'
|
|
53
53
|
}]
|
|
54
54
|
}]),
|
|
@@ -59,26 +59,26 @@ export default {
|
|
|
59
59
|
value: 'usePageEndRequest',
|
|
60
60
|
label: localeKey('todoEvents.usePageEndRequest.label'),
|
|
61
61
|
remarks: [{
|
|
62
|
-
label:
|
|
62
|
+
label: '场景描述',
|
|
63
63
|
content: localeKey('todoEvents.usePageEndRequest.remarks.0.content')
|
|
64
64
|
}, {
|
|
65
|
-
label:
|
|
65
|
+
label: '适用场景',
|
|
66
66
|
content: localeKey('todoEvents.usePageEndRequest.remarks.1.content')
|
|
67
67
|
}]
|
|
68
68
|
}],
|
|
69
69
|
todoProps: {
|
|
70
70
|
pageName: {
|
|
71
|
-
label:
|
|
71
|
+
label: '名称',
|
|
72
72
|
type: 'Input',
|
|
73
|
-
groupsName:
|
|
73
|
+
groupsName: '基础',
|
|
74
74
|
props: {
|
|
75
75
|
required: true
|
|
76
76
|
}
|
|
77
77
|
},
|
|
78
78
|
pagePath: {
|
|
79
|
-
label:
|
|
79
|
+
label: '路径',
|
|
80
80
|
type: 'UrlInput',
|
|
81
|
-
groupsName:
|
|
81
|
+
groupsName: '基础',
|
|
82
82
|
props: {
|
|
83
83
|
required: true,
|
|
84
84
|
placeholder: localeKey('todoProps.pagePath.props.placeholder'),
|
|
@@ -90,9 +90,9 @@ export default {
|
|
|
90
90
|
}
|
|
91
91
|
},
|
|
92
92
|
catalogItemId: {
|
|
93
|
-
label:
|
|
93
|
+
label: '分组',
|
|
94
94
|
type: 'CatalogTreeSelect',
|
|
95
|
-
groupsName:
|
|
95
|
+
groupsName: '基础',
|
|
96
96
|
props: {
|
|
97
97
|
required: true,
|
|
98
98
|
options: [],
|
|
@@ -102,26 +102,26 @@ export default {
|
|
|
102
102
|
}
|
|
103
103
|
},
|
|
104
104
|
remark: {
|
|
105
|
-
label:
|
|
105
|
+
label: '描述',
|
|
106
106
|
type: 'Input',
|
|
107
|
-
groupsName:
|
|
107
|
+
groupsName: '基础',
|
|
108
108
|
props: {}
|
|
109
109
|
},
|
|
110
110
|
ignoreLogin: {
|
|
111
|
-
label:
|
|
111
|
+
label: '免登录',
|
|
112
112
|
type: 'Switch',
|
|
113
|
-
groupsName:
|
|
113
|
+
groupsName: '基础',
|
|
114
114
|
props: {}
|
|
115
115
|
},
|
|
116
116
|
labels: {
|
|
117
|
-
label:
|
|
117
|
+
label: '标签',
|
|
118
118
|
type: 'ChooseTag',
|
|
119
|
-
groupsName:
|
|
119
|
+
groupsName: '基础'
|
|
120
120
|
},
|
|
121
121
|
compState: {
|
|
122
|
-
label:
|
|
122
|
+
label: '组件状态',
|
|
123
123
|
type: 'ParamsDefine',
|
|
124
|
-
groupsName:
|
|
124
|
+
groupsName: '组件状态'
|
|
125
125
|
}
|
|
126
126
|
},
|
|
127
127
|
todoStyles: {}
|
|
@@ -15,20 +15,20 @@ export default {
|
|
|
15
15
|
// 根节点
|
|
16
16
|
isBusiObjContainer: false,
|
|
17
17
|
isContainer: false,
|
|
18
|
-
label:
|
|
18
|
+
label: '页面',
|
|
19
19
|
props: {
|
|
20
20
|
pageDynamicFlag: false,
|
|
21
21
|
catalogItemId: -1,
|
|
22
22
|
ignoreLogin: false,
|
|
23
23
|
hideNavBar: false,
|
|
24
24
|
searchParams: [{
|
|
25
|
-
name:
|
|
25
|
+
name: '业务主键',
|
|
26
26
|
code: 'bizId'
|
|
27
27
|
}, {
|
|
28
|
-
name:
|
|
28
|
+
name: '业务场景',
|
|
29
29
|
code: 'sceneCode'
|
|
30
30
|
}, {
|
|
31
|
-
name:
|
|
31
|
+
name: '业务数据',
|
|
32
32
|
code: 'bizData'
|
|
33
33
|
}],
|
|
34
34
|
compState: [{
|
|
@@ -51,7 +51,7 @@ export default {
|
|
|
51
51
|
groupsName: 'root',
|
|
52
52
|
todoActionList: [].concat(_toConsumableArray(getSystemTodoActionList('mobile')), [{
|
|
53
53
|
key: 'previewFile',
|
|
54
|
-
label:
|
|
54
|
+
label: '文件预览',
|
|
55
55
|
todoOptions: [{
|
|
56
56
|
key: 'fileId',
|
|
57
57
|
label: localeKey('todoActionList.previewFile.todoOptions.fileId.label'),
|
|
@@ -59,7 +59,7 @@ export default {
|
|
|
59
59
|
labelTip: localeKey('todoActionList.previewFile.todoOptions.fileId.labelTip')
|
|
60
60
|
}],
|
|
61
61
|
classification: [{
|
|
62
|
-
label:
|
|
62
|
+
label: '页面类',
|
|
63
63
|
value: 'page'
|
|
64
64
|
}]
|
|
65
65
|
}]),
|
|
@@ -71,7 +71,7 @@ export default {
|
|
|
71
71
|
label: localeKey('todoEvents.stateChange.label')
|
|
72
72
|
}, {
|
|
73
73
|
value: 'willUnmount',
|
|
74
|
-
label:
|
|
74
|
+
label: '页面退出'
|
|
75
75
|
}, {
|
|
76
76
|
value: 'onLeftClick',
|
|
77
77
|
label: localeKey('todoEvents.onLeftClick.label'),
|
|
@@ -101,40 +101,40 @@ export default {
|
|
|
101
101
|
value: 'usePageEndRequest',
|
|
102
102
|
label: localeKey('todoEvents.usePageEndRequest.label'),
|
|
103
103
|
remarks: [{
|
|
104
|
-
label:
|
|
104
|
+
label: '场景描述',
|
|
105
105
|
content: localeKey('todoEvents.usePageEndRequest.remarks.0.content')
|
|
106
106
|
}, {
|
|
107
|
-
label:
|
|
107
|
+
label: '适用场景',
|
|
108
108
|
content: localeKey('todoEvents.usePageEndRequest.remarks.1.content')
|
|
109
109
|
}]
|
|
110
110
|
}, {
|
|
111
111
|
value: 'pageGetWeChatCode',
|
|
112
112
|
label: localeKey('todoEvents.pageGetWeChatCode.label'),
|
|
113
113
|
params: [{
|
|
114
|
-
title:
|
|
114
|
+
title: '结果详情',
|
|
115
115
|
name: 'resultObject',
|
|
116
116
|
value: '$resultObject$',
|
|
117
117
|
type: 'object',
|
|
118
118
|
description: localeKey('todoEvents.pageGetWeChatCode.params.0.description')
|
|
119
119
|
}],
|
|
120
120
|
remarks: [{
|
|
121
|
-
label:
|
|
121
|
+
label: '场景描述',
|
|
122
122
|
content: localeKey('todoEvents.pageGetWeChatCode.remarks.0.content')
|
|
123
123
|
}]
|
|
124
124
|
}],
|
|
125
125
|
todoProps: {
|
|
126
126
|
pageName: {
|
|
127
|
-
label:
|
|
127
|
+
label: '名称',
|
|
128
128
|
type: 'Input',
|
|
129
|
-
groupsName:
|
|
129
|
+
groupsName: '基础',
|
|
130
130
|
props: {
|
|
131
131
|
required: true
|
|
132
132
|
}
|
|
133
133
|
},
|
|
134
134
|
pagePath: {
|
|
135
|
-
label:
|
|
135
|
+
label: '路径',
|
|
136
136
|
type: 'UrlInput',
|
|
137
|
-
groupsName:
|
|
137
|
+
groupsName: '基础',
|
|
138
138
|
props: {
|
|
139
139
|
required: true,
|
|
140
140
|
placeholder: localeKey('todoProps.pagePath.props.placeholder'),
|
|
@@ -146,9 +146,9 @@ export default {
|
|
|
146
146
|
}
|
|
147
147
|
},
|
|
148
148
|
pageTitle: {
|
|
149
|
-
label:
|
|
149
|
+
label: '页面标题',
|
|
150
150
|
type: 'Input',
|
|
151
|
-
groupsName:
|
|
151
|
+
groupsName: '基础',
|
|
152
152
|
istodoBind: true,
|
|
153
153
|
props: {
|
|
154
154
|
description: localeKey('todoProps.pageTitle.props.description')
|
|
@@ -156,9 +156,9 @@ export default {
|
|
|
156
156
|
enableI18n: true
|
|
157
157
|
},
|
|
158
158
|
catalogItemId: {
|
|
159
|
-
label:
|
|
159
|
+
label: '分组',
|
|
160
160
|
type: 'CatalogTreeSelect',
|
|
161
|
-
groupsName:
|
|
161
|
+
groupsName: '基础',
|
|
162
162
|
props: {
|
|
163
163
|
required: true,
|
|
164
164
|
options: [],
|
|
@@ -168,57 +168,57 @@ export default {
|
|
|
168
168
|
}
|
|
169
169
|
},
|
|
170
170
|
scenarioList: {
|
|
171
|
-
label:
|
|
171
|
+
label: '适用场景',
|
|
172
172
|
type: 'SelectScenarioPopover',
|
|
173
|
-
groupsName:
|
|
173
|
+
groupsName: '基础',
|
|
174
174
|
props: {
|
|
175
175
|
options: []
|
|
176
176
|
}
|
|
177
177
|
},
|
|
178
178
|
remark: {
|
|
179
|
-
label:
|
|
179
|
+
label: '描述',
|
|
180
180
|
type: 'Input',
|
|
181
|
-
groupsName:
|
|
181
|
+
groupsName: '基础',
|
|
182
182
|
props: {}
|
|
183
183
|
},
|
|
184
184
|
chooseFuncComp: {
|
|
185
|
-
label:
|
|
185
|
+
label: '功能组件',
|
|
186
186
|
type: 'FuncCompSelect',
|
|
187
|
-
groupsName:
|
|
187
|
+
groupsName: '基础',
|
|
188
188
|
props: {}
|
|
189
189
|
},
|
|
190
190
|
ignoreLogin: {
|
|
191
|
-
label:
|
|
191
|
+
label: '免登录',
|
|
192
192
|
type: 'Switch',
|
|
193
|
-
groupsName:
|
|
193
|
+
groupsName: '基础',
|
|
194
194
|
props: {}
|
|
195
195
|
},
|
|
196
196
|
pageDynamicFlag: {
|
|
197
|
-
label:
|
|
197
|
+
label: '页面缓存',
|
|
198
198
|
type: 'Switch',
|
|
199
|
-
groupsName:
|
|
199
|
+
groupsName: '基础',
|
|
200
200
|
props: {
|
|
201
201
|
required: false,
|
|
202
202
|
description: localeKey('todoProps.pageDynamicFlag.props.description')
|
|
203
203
|
}
|
|
204
204
|
},
|
|
205
205
|
isMenu: {
|
|
206
|
-
label:
|
|
206
|
+
label: '设置为菜单',
|
|
207
207
|
type: 'MenuSwitch',
|
|
208
|
-
groupsName:
|
|
208
|
+
groupsName: '基础',
|
|
209
209
|
props: {
|
|
210
210
|
description: localeKey('todoProps.isMenu.props.description')
|
|
211
211
|
}
|
|
212
212
|
},
|
|
213
213
|
labels: {
|
|
214
|
-
label:
|
|
214
|
+
label: '标签',
|
|
215
215
|
type: 'ChooseTag',
|
|
216
|
-
groupsName:
|
|
216
|
+
groupsName: '基础'
|
|
217
217
|
},
|
|
218
218
|
compState: {
|
|
219
|
-
label:
|
|
219
|
+
label: '组件状态',
|
|
220
220
|
type: 'ParamsDefine',
|
|
221
|
-
groupsName:
|
|
221
|
+
groupsName: '组件状态'
|
|
222
222
|
},
|
|
223
223
|
searchParams: {
|
|
224
224
|
label: localeKey('todoProps.searchParams.label'),
|
|
@@ -226,26 +226,26 @@ export default {
|
|
|
226
226
|
groupsName: localeKey('todoProps.searchParams.groupsName')
|
|
227
227
|
},
|
|
228
228
|
routerData: {
|
|
229
|
-
label:
|
|
229
|
+
label: '路由数据',
|
|
230
230
|
type: 'ParamsDefine',
|
|
231
|
-
groupsName:
|
|
231
|
+
groupsName: '路由数据'
|
|
232
232
|
},
|
|
233
233
|
hideNavBar: {
|
|
234
|
-
label:
|
|
234
|
+
label: '隐藏导航条',
|
|
235
235
|
type: 'Switch',
|
|
236
|
-
groupsName:
|
|
236
|
+
groupsName: '其他'
|
|
237
237
|
}
|
|
238
238
|
},
|
|
239
239
|
todoStyles: {
|
|
240
240
|
backgroundType: {
|
|
241
|
-
groupsName:
|
|
242
|
-
label:
|
|
241
|
+
groupsName: '导航栏背景',
|
|
242
|
+
label: '填充类型',
|
|
243
243
|
type: 'BackgroundType',
|
|
244
244
|
props: {}
|
|
245
245
|
},
|
|
246
246
|
colorType: {
|
|
247
247
|
groupsName: localeKey('todoStyles.colorType.groupsName'),
|
|
248
|
-
label:
|
|
248
|
+
label: '填充类型',
|
|
249
249
|
type: 'BackgroundType',
|
|
250
250
|
props: {}
|
|
251
251
|
}
|