vue2-client 1.16.40 → 1.16.41
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/package.json +1 -1
- package/src/base-client/components/common/AddressSearchCombobox/AddressSearchCombobox.vue +18 -4
- package/src/base-client/components/common/XDescriptions/XDescriptions.vue +174 -174
- package/src/base-client/components/common/XReport/XReport.vue +9 -18
- package/src/base-client/components/common/XSimpleDescriptions/XSimpleDescriptions.vue +166 -166
- package/src/config/CreateQueryConfig.js +325 -325
- package/src/pages/XTreeOneProExample/index.vue +67 -67
- package/src/router/async/router.map.js +1 -4
- package/src/services/api/common.js +0 -1
- package/src/assets/img/paymentMethod/icon1.png +0 -0
- package/src/assets/img/paymentMethod/icon2.png +0 -0
- package/src/assets/img/paymentMethod/icon3.png +0 -0
- package/src/assets/img/paymentMethod/icon4.png +0 -0
- package/src/assets/img/paymentMethod/icon5.png +0 -0
- package/src/assets/img/paymentMethod/icon6.png +0 -0
- package/src/base-client/components/common/XReport/XReportHospitalizationDemo.vue +0 -45
- package/src/base-client/components/his/XCharge/testConfig.js +0 -149
@@ -1,325 +1,325 @@
|
|
1
|
-
module.exports = {
|
2
|
-
// 数据模式类型
|
3
|
-
dataModeType: [
|
4
|
-
{
|
5
|
-
label: '渲染查询表单项',
|
6
|
-
value: 'queryForm',
|
7
|
-
noMatch: ['file', 'image', 'textarea', 'personSetting']
|
8
|
-
},
|
9
|
-
{
|
10
|
-
label: '渲染表格列',
|
11
|
-
value: 'table',
|
12
|
-
noMatch: ['file', 'image', 'personSetting']
|
13
|
-
},
|
14
|
-
{
|
15
|
-
label: '渲染新增/修改表单项',
|
16
|
-
value: 'addOrEditForm',
|
17
|
-
noMatch: []
|
18
|
-
},
|
19
|
-
{
|
20
|
-
label: 'SQL生成查询项',
|
21
|
-
value: 'sqlQueryItem',
|
22
|
-
noMatch: ['file', 'personSetting']
|
23
|
-
},
|
24
|
-
{
|
25
|
-
label: 'SQL生成查询表达式',
|
26
|
-
value: 'sqlQueryCondition',
|
27
|
-
noMatch: ['file', 'image', 'textarea', 'personSetting']
|
28
|
-
},
|
29
|
-
{
|
30
|
-
label: 'Excel导入项',
|
31
|
-
value: 'excelImportItem',
|
32
|
-
noMatch: ['file', 'image', 'personSetting']
|
33
|
-
},
|
34
|
-
{
|
35
|
-
label: '数据组',
|
36
|
-
value: 'group',
|
37
|
-
noMatch: []
|
38
|
-
},
|
39
|
-
{
|
40
|
-
label: '动态表名参数',
|
41
|
-
value: 'mixinTableName',
|
42
|
-
noMatch: []
|
43
|
-
}
|
44
|
-
],
|
45
|
-
// 表单类型
|
46
|
-
formType: [
|
47
|
-
{
|
48
|
-
label: '输入框', key: 'input'
|
49
|
-
},
|
50
|
-
{
|
51
|
-
label: '选择框', key: 'select'
|
52
|
-
},
|
53
|
-
{
|
54
|
-
label: '多选框', key: 'checkbox'
|
55
|
-
},
|
56
|
-
{
|
57
|
-
label: '树形选择框', key: 'treeSelect'
|
58
|
-
},
|
59
|
-
{
|
60
|
-
label: '地点搜索框', key: 'addressSearch'
|
61
|
-
},
|
62
|
-
{
|
63
|
-
label: '省市区选择框', key: 'citySelect'
|
64
|
-
},
|
65
|
-
{
|
66
|
-
label: '单选框', key: 'radio'
|
67
|
-
},
|
68
|
-
{
|
69
|
-
label: '日期范围选择框', key: 'rangePicker'
|
70
|
-
},
|
71
|
-
{
|
72
|
-
label: '年份选择框', key: 'yearPicker'
|
73
|
-
},
|
74
|
-
{
|
75
|
-
label: '月份选择框', key: 'monthPicker'
|
76
|
-
},
|
77
|
-
{
|
78
|
-
label: '单日选择框', key: 'datePicker'
|
79
|
-
},
|
80
|
-
{
|
81
|
-
label: '文本域', key: 'textarea'
|
82
|
-
},
|
83
|
-
{
|
84
|
-
label: '文件上传', key: 'file'
|
85
|
-
},
|
86
|
-
{
|
87
|
-
label: '图片上传', key: 'image'
|
88
|
-
},
|
89
|
-
{
|
90
|
-
label: '人员选择框', key: 'personSetting'
|
91
|
-
},
|
92
|
-
{
|
93
|
-
label: '录音按钮', key: 'recording'
|
94
|
-
}
|
95
|
-
],
|
96
|
-
// 文件上传类型
|
97
|
-
fileType: [
|
98
|
-
{
|
99
|
-
label: '无限制',
|
100
|
-
accept: '*'
|
101
|
-
},
|
102
|
-
{
|
103
|
-
label: 'word文档',
|
104
|
-
accept: '.doc,.docx,'
|
105
|
-
},
|
106
|
-
{
|
107
|
-
label: 'excel表格',
|
108
|
-
accept: '.xls,.xlsx,'
|
109
|
-
},
|
110
|
-
{
|
111
|
-
label: 'ppt幻灯片',
|
112
|
-
accept: '.ppt,.pptx,'
|
113
|
-
},
|
114
|
-
{
|
115
|
-
label: '图片',
|
116
|
-
accept: '.jpg,.jpeg,.ico,.gif,svg,.webp,.png,.bmp,.pjpeg,'
|
117
|
-
},
|
118
|
-
{
|
119
|
-
label: '视频',
|
120
|
-
accept: '.mp4,.mov,.m4v,.wmv,.asf,.asx,.rm,.rmvb,.3gp,.avi,.mkv,'
|
121
|
-
},
|
122
|
-
{
|
123
|
-
label: '音频',
|
124
|
-
accept: '.mp3,.cda,.wav,.aif,.aiff,.ape,.ra,'
|
125
|
-
},
|
126
|
-
{
|
127
|
-
label: '压缩包',
|
128
|
-
accept: '.zip,.rar,.7z,'
|
129
|
-
},
|
130
|
-
{
|
131
|
-
label: '文本/JSON',
|
132
|
-
accept: '.json,.txt,'
|
133
|
-
}
|
134
|
-
],
|
135
|
-
// 表单校验类型
|
136
|
-
formRuleType: [
|
137
|
-
{
|
138
|
-
label: '字符串', key: 'string'
|
139
|
-
},
|
140
|
-
{
|
141
|
-
label: '数字', key: 'number'
|
142
|
-
},
|
143
|
-
{
|
144
|
-
label: '布尔值', key: 'boolean'
|
145
|
-
},
|
146
|
-
{
|
147
|
-
label: '正则表达式', key: 'regexp'
|
148
|
-
},
|
149
|
-
{
|
150
|
-
label: '整数', key: 'integer'
|
151
|
-
},
|
152
|
-
{
|
153
|
-
label: '小数', key: 'float'
|
154
|
-
},
|
155
|
-
{
|
156
|
-
label: '数组或集合', key: 'array'
|
157
|
-
},
|
158
|
-
{
|
159
|
-
label: '邮箱', key: 'email'
|
160
|
-
}
|
161
|
-
],
|
162
|
-
// 作用域插槽类型
|
163
|
-
slotType: [
|
164
|
-
{
|
165
|
-
label: '不设置',
|
166
|
-
key: 'default',
|
167
|
-
match: ['input', 'select', 'checkbox', 'radio', 'addressSearch', 'citySelect']
|
168
|
-
},
|
169
|
-
{
|
170
|
-
label: '文本溢出省略',
|
171
|
-
key: 'ellipsis',
|
172
|
-
match: ['input', 'citySelect', 'addressSearch', 'treeSelect']
|
173
|
-
},
|
174
|
-
{
|
175
|
-
label: '多彩徽标',
|
176
|
-
key: 'badge',
|
177
|
-
match: ['select', 'radio', 'citySelect', 'addressSearch']
|
178
|
-
},
|
179
|
-
{
|
180
|
-
label: '日期格式化',
|
181
|
-
key: 'date',
|
182
|
-
match: ['rangePicker', 'datePicker']
|
183
|
-
},
|
184
|
-
{
|
185
|
-
label: '日期时间格式化',
|
186
|
-
key: 'dateTime',
|
187
|
-
match: ['rangePicker', 'datePicker']
|
188
|
-
},
|
189
|
-
{
|
190
|
-
label: '操作列',
|
191
|
-
key: 'action',
|
192
|
-
match: [
|
193
|
-
'input'
|
194
|
-
]
|
195
|
-
},
|
196
|
-
],
|
197
|
-
// 查询方式
|
198
|
-
queryType: [
|
199
|
-
{
|
200
|
-
label: '相等[=]',
|
201
|
-
key: '=',
|
202
|
-
match: ['input', 'select', 'radio', 'datePicker', 'monthPicker', 'yearPicker', 'addressSearch', 'citySelect']
|
203
|
-
},
|
204
|
-
{
|
205
|
-
label: '不相等[!=]',
|
206
|
-
key: '!=',
|
207
|
-
match: ['input']
|
208
|
-
},
|
209
|
-
{
|
210
|
-
label: '全模糊[like]',
|
211
|
-
key: 'LIKE',
|
212
|
-
match: ['input']
|
213
|
-
},
|
214
|
-
{
|
215
|
-
label: '左模糊[left like]',
|
216
|
-
key: 'LEFT_LIKE',
|
217
|
-
match: ['input']
|
218
|
-
},
|
219
|
-
{
|
220
|
-
label: '右模糊[right like]',
|
221
|
-
key: 'RIGHT_LIKE',
|
222
|
-
match: ['input', 'treeSelect']
|
223
|
-
},
|
224
|
-
{
|
225
|
-
label: '大于[>]',
|
226
|
-
key: '>',
|
227
|
-
match: ['input', 'radio', 'monthPicker', 'yearPicker']
|
228
|
-
},
|
229
|
-
{
|
230
|
-
label: '大于等于[>=]',
|
231
|
-
key: '>=',
|
232
|
-
match: ['input', 'radio', 'monthPicker', 'yearPicker']
|
233
|
-
},
|
234
|
-
{
|
235
|
-
label: '小于[<]',
|
236
|
-
key: '<',
|
237
|
-
match: ['input', 'radio', 'monthPicker', 'yearPicker']
|
238
|
-
},
|
239
|
-
{
|
240
|
-
label: '小于等于[<=]',
|
241
|
-
key: '<=',
|
242
|
-
match: ['input', 'radio', 'monthPicker', 'yearPicker']
|
243
|
-
},
|
244
|
-
{
|
245
|
-
label: '包含[in]',
|
246
|
-
key: 'IN',
|
247
|
-
match: ['checkbox', 'treeSelect']
|
248
|
-
},
|
249
|
-
{
|
250
|
-
label: '不包含[not in]',
|
251
|
-
key: 'NOT_IN',
|
252
|
-
match: []
|
253
|
-
},
|
254
|
-
{
|
255
|
-
label: '之间[between]',
|
256
|
-
key: 'BETWEEN',
|
257
|
-
match: ['rangePicker']
|
258
|
-
}
|
259
|
-
],
|
260
|
-
// 新增/修改场景类型
|
261
|
-
addOrEditType: [
|
262
|
-
{
|
263
|
-
label: '新增和修改',
|
264
|
-
key: 'all',
|
265
|
-
match: ['all']
|
266
|
-
},
|
267
|
-
{
|
268
|
-
label: '仅支持新增',
|
269
|
-
key: 'add',
|
270
|
-
match: ['all']
|
271
|
-
},
|
272
|
-
{
|
273
|
-
label: '仅支持修改',
|
274
|
-
key: 'edit',
|
275
|
-
match: ['all']
|
276
|
-
},
|
277
|
-
{
|
278
|
-
label: '静默新增(不生成表单)',
|
279
|
-
key: 'silenceAdd',
|
280
|
-
match: ['input', 'rangePicker']
|
281
|
-
},
|
282
|
-
{
|
283
|
-
label: '版本号',
|
284
|
-
key: 'version',
|
285
|
-
match: ['input']
|
286
|
-
}
|
287
|
-
],
|
288
|
-
// 字段用途类型
|
289
|
-
silencePurposeType: [
|
290
|
-
{
|
291
|
-
label: '创建时间',
|
292
|
-
key: 'createTime'
|
293
|
-
},
|
294
|
-
{
|
295
|
-
label: '创建/操作人',
|
296
|
-
key: 'operator'
|
297
|
-
},
|
298
|
-
{
|
299
|
-
label: '组织机构ID',
|
300
|
-
key: 'orgId'
|
301
|
-
},
|
302
|
-
{
|
303
|
-
label: '自定义',
|
304
|
-
key: 'customize'
|
305
|
-
}
|
306
|
-
],
|
307
|
-
// 数据源类型
|
308
|
-
selectDataType: [
|
309
|
-
{
|
310
|
-
label: '字典键',
|
311
|
-
key: 'key',
|
312
|
-
noMatch: ['treeSelect']
|
313
|
-
},
|
314
|
-
{
|
315
|
-
label: '固定集合',
|
316
|
-
key: 'fixArray',
|
317
|
-
noMatch: []
|
318
|
-
},
|
319
|
-
{
|
320
|
-
label: '业务逻辑',
|
321
|
-
key: 'logic',
|
322
|
-
noMatch: []
|
323
|
-
}
|
324
|
-
]
|
325
|
-
}
|
1
|
+
module.exports = {
|
2
|
+
// 数据模式类型
|
3
|
+
dataModeType: [
|
4
|
+
{
|
5
|
+
label: '渲染查询表单项',
|
6
|
+
value: 'queryForm',
|
7
|
+
noMatch: ['file', 'image', 'textarea', 'personSetting']
|
8
|
+
},
|
9
|
+
{
|
10
|
+
label: '渲染表格列',
|
11
|
+
value: 'table',
|
12
|
+
noMatch: ['file', 'image', 'personSetting']
|
13
|
+
},
|
14
|
+
{
|
15
|
+
label: '渲染新增/修改表单项',
|
16
|
+
value: 'addOrEditForm',
|
17
|
+
noMatch: []
|
18
|
+
},
|
19
|
+
{
|
20
|
+
label: 'SQL生成查询项',
|
21
|
+
value: 'sqlQueryItem',
|
22
|
+
noMatch: ['file', 'personSetting']
|
23
|
+
},
|
24
|
+
{
|
25
|
+
label: 'SQL生成查询表达式',
|
26
|
+
value: 'sqlQueryCondition',
|
27
|
+
noMatch: ['file', 'image', 'textarea', 'personSetting']
|
28
|
+
},
|
29
|
+
{
|
30
|
+
label: 'Excel导入项',
|
31
|
+
value: 'excelImportItem',
|
32
|
+
noMatch: ['file', 'image', 'personSetting']
|
33
|
+
},
|
34
|
+
{
|
35
|
+
label: '数据组',
|
36
|
+
value: 'group',
|
37
|
+
noMatch: []
|
38
|
+
},
|
39
|
+
{
|
40
|
+
label: '动态表名参数',
|
41
|
+
value: 'mixinTableName',
|
42
|
+
noMatch: []
|
43
|
+
}
|
44
|
+
],
|
45
|
+
// 表单类型
|
46
|
+
formType: [
|
47
|
+
{
|
48
|
+
label: '输入框', key: 'input'
|
49
|
+
},
|
50
|
+
{
|
51
|
+
label: '选择框', key: 'select'
|
52
|
+
},
|
53
|
+
{
|
54
|
+
label: '多选框', key: 'checkbox'
|
55
|
+
},
|
56
|
+
{
|
57
|
+
label: '树形选择框', key: 'treeSelect'
|
58
|
+
},
|
59
|
+
{
|
60
|
+
label: '地点搜索框', key: 'addressSearch'
|
61
|
+
},
|
62
|
+
{
|
63
|
+
label: '省市区选择框', key: 'citySelect'
|
64
|
+
},
|
65
|
+
{
|
66
|
+
label: '单选框', key: 'radio'
|
67
|
+
},
|
68
|
+
{
|
69
|
+
label: '日期范围选择框', key: 'rangePicker'
|
70
|
+
},
|
71
|
+
{
|
72
|
+
label: '年份选择框', key: 'yearPicker'
|
73
|
+
},
|
74
|
+
{
|
75
|
+
label: '月份选择框', key: 'monthPicker'
|
76
|
+
},
|
77
|
+
{
|
78
|
+
label: '单日选择框', key: 'datePicker'
|
79
|
+
},
|
80
|
+
{
|
81
|
+
label: '文本域', key: 'textarea'
|
82
|
+
},
|
83
|
+
{
|
84
|
+
label: '文件上传', key: 'file'
|
85
|
+
},
|
86
|
+
{
|
87
|
+
label: '图片上传', key: 'image'
|
88
|
+
},
|
89
|
+
{
|
90
|
+
label: '人员选择框', key: 'personSetting'
|
91
|
+
},
|
92
|
+
{
|
93
|
+
label: '录音按钮', key: 'recording'
|
94
|
+
}
|
95
|
+
],
|
96
|
+
// 文件上传类型
|
97
|
+
fileType: [
|
98
|
+
{
|
99
|
+
label: '无限制',
|
100
|
+
accept: '*'
|
101
|
+
},
|
102
|
+
{
|
103
|
+
label: 'word文档',
|
104
|
+
accept: '.doc,.docx,'
|
105
|
+
},
|
106
|
+
{
|
107
|
+
label: 'excel表格',
|
108
|
+
accept: '.xls,.xlsx,'
|
109
|
+
},
|
110
|
+
{
|
111
|
+
label: 'ppt幻灯片',
|
112
|
+
accept: '.ppt,.pptx,'
|
113
|
+
},
|
114
|
+
{
|
115
|
+
label: '图片',
|
116
|
+
accept: '.jpg,.jpeg,.ico,.gif,svg,.webp,.png,.bmp,.pjpeg,'
|
117
|
+
},
|
118
|
+
{
|
119
|
+
label: '视频',
|
120
|
+
accept: '.mp4,.mov,.m4v,.wmv,.asf,.asx,.rm,.rmvb,.3gp,.avi,.mkv,'
|
121
|
+
},
|
122
|
+
{
|
123
|
+
label: '音频',
|
124
|
+
accept: '.mp3,.cda,.wav,.aif,.aiff,.ape,.ra,'
|
125
|
+
},
|
126
|
+
{
|
127
|
+
label: '压缩包',
|
128
|
+
accept: '.zip,.rar,.7z,'
|
129
|
+
},
|
130
|
+
{
|
131
|
+
label: '文本/JSON',
|
132
|
+
accept: '.json,.txt,'
|
133
|
+
}
|
134
|
+
],
|
135
|
+
// 表单校验类型
|
136
|
+
formRuleType: [
|
137
|
+
{
|
138
|
+
label: '字符串', key: 'string'
|
139
|
+
},
|
140
|
+
{
|
141
|
+
label: '数字', key: 'number'
|
142
|
+
},
|
143
|
+
{
|
144
|
+
label: '布尔值', key: 'boolean'
|
145
|
+
},
|
146
|
+
{
|
147
|
+
label: '正则表达式', key: 'regexp'
|
148
|
+
},
|
149
|
+
{
|
150
|
+
label: '整数', key: 'integer'
|
151
|
+
},
|
152
|
+
{
|
153
|
+
label: '小数', key: 'float'
|
154
|
+
},
|
155
|
+
{
|
156
|
+
label: '数组或集合', key: 'array'
|
157
|
+
},
|
158
|
+
{
|
159
|
+
label: '邮箱', key: 'email'
|
160
|
+
}
|
161
|
+
],
|
162
|
+
// 作用域插槽类型
|
163
|
+
slotType: [
|
164
|
+
{
|
165
|
+
label: '不设置',
|
166
|
+
key: 'default',
|
167
|
+
match: ['input', 'select', 'checkbox', 'radio', 'addressSearch', 'citySelect']
|
168
|
+
},
|
169
|
+
{
|
170
|
+
label: '文本溢出省略',
|
171
|
+
key: 'ellipsis',
|
172
|
+
match: ['input', 'citySelect', 'addressSearch', 'treeSelect']
|
173
|
+
},
|
174
|
+
{
|
175
|
+
label: '多彩徽标',
|
176
|
+
key: 'badge',
|
177
|
+
match: ['select', 'radio', 'citySelect', 'addressSearch']
|
178
|
+
},
|
179
|
+
{
|
180
|
+
label: '日期格式化',
|
181
|
+
key: 'date',
|
182
|
+
match: ['rangePicker', 'datePicker']
|
183
|
+
},
|
184
|
+
{
|
185
|
+
label: '日期时间格式化',
|
186
|
+
key: 'dateTime',
|
187
|
+
match: ['rangePicker', 'datePicker']
|
188
|
+
},
|
189
|
+
{
|
190
|
+
label: '操作列',
|
191
|
+
key: 'action',
|
192
|
+
match: [
|
193
|
+
'input'
|
194
|
+
]
|
195
|
+
},
|
196
|
+
],
|
197
|
+
// 查询方式
|
198
|
+
queryType: [
|
199
|
+
{
|
200
|
+
label: '相等[=]',
|
201
|
+
key: '=',
|
202
|
+
match: ['input', 'select', 'radio', 'datePicker', 'monthPicker', 'yearPicker', 'addressSearch', 'citySelect']
|
203
|
+
},
|
204
|
+
{
|
205
|
+
label: '不相等[!=]',
|
206
|
+
key: '!=',
|
207
|
+
match: ['input']
|
208
|
+
},
|
209
|
+
{
|
210
|
+
label: '全模糊[like]',
|
211
|
+
key: 'LIKE',
|
212
|
+
match: ['input']
|
213
|
+
},
|
214
|
+
{
|
215
|
+
label: '左模糊[left like]',
|
216
|
+
key: 'LEFT_LIKE',
|
217
|
+
match: ['input']
|
218
|
+
},
|
219
|
+
{
|
220
|
+
label: '右模糊[right like]',
|
221
|
+
key: 'RIGHT_LIKE',
|
222
|
+
match: ['input', 'treeSelect']
|
223
|
+
},
|
224
|
+
{
|
225
|
+
label: '大于[>]',
|
226
|
+
key: '>',
|
227
|
+
match: ['input', 'radio', 'monthPicker', 'yearPicker']
|
228
|
+
},
|
229
|
+
{
|
230
|
+
label: '大于等于[>=]',
|
231
|
+
key: '>=',
|
232
|
+
match: ['input', 'radio', 'monthPicker', 'yearPicker']
|
233
|
+
},
|
234
|
+
{
|
235
|
+
label: '小于[<]',
|
236
|
+
key: '<',
|
237
|
+
match: ['input', 'radio', 'monthPicker', 'yearPicker']
|
238
|
+
},
|
239
|
+
{
|
240
|
+
label: '小于等于[<=]',
|
241
|
+
key: '<=',
|
242
|
+
match: ['input', 'radio', 'monthPicker', 'yearPicker']
|
243
|
+
},
|
244
|
+
{
|
245
|
+
label: '包含[in]',
|
246
|
+
key: 'IN',
|
247
|
+
match: ['checkbox', 'treeSelect']
|
248
|
+
},
|
249
|
+
{
|
250
|
+
label: '不包含[not in]',
|
251
|
+
key: 'NOT_IN',
|
252
|
+
match: []
|
253
|
+
},
|
254
|
+
{
|
255
|
+
label: '之间[between]',
|
256
|
+
key: 'BETWEEN',
|
257
|
+
match: ['rangePicker']
|
258
|
+
}
|
259
|
+
],
|
260
|
+
// 新增/修改场景类型
|
261
|
+
addOrEditType: [
|
262
|
+
{
|
263
|
+
label: '新增和修改',
|
264
|
+
key: 'all',
|
265
|
+
match: ['all']
|
266
|
+
},
|
267
|
+
{
|
268
|
+
label: '仅支持新增',
|
269
|
+
key: 'add',
|
270
|
+
match: ['all']
|
271
|
+
},
|
272
|
+
{
|
273
|
+
label: '仅支持修改',
|
274
|
+
key: 'edit',
|
275
|
+
match: ['all']
|
276
|
+
},
|
277
|
+
{
|
278
|
+
label: '静默新增(不生成表单)',
|
279
|
+
key: 'silenceAdd',
|
280
|
+
match: ['input', 'rangePicker']
|
281
|
+
},
|
282
|
+
{
|
283
|
+
label: '版本号',
|
284
|
+
key: 'version',
|
285
|
+
match: ['input']
|
286
|
+
}
|
287
|
+
],
|
288
|
+
// 字段用途类型
|
289
|
+
silencePurposeType: [
|
290
|
+
{
|
291
|
+
label: '创建时间',
|
292
|
+
key: 'createTime'
|
293
|
+
},
|
294
|
+
{
|
295
|
+
label: '创建/操作人',
|
296
|
+
key: 'operator'
|
297
|
+
},
|
298
|
+
{
|
299
|
+
label: '组织机构ID',
|
300
|
+
key: 'orgId'
|
301
|
+
},
|
302
|
+
{
|
303
|
+
label: '自定义',
|
304
|
+
key: 'customize'
|
305
|
+
}
|
306
|
+
],
|
307
|
+
// 数据源类型
|
308
|
+
selectDataType: [
|
309
|
+
{
|
310
|
+
label: '字典键',
|
311
|
+
key: 'key',
|
312
|
+
noMatch: ['treeSelect']
|
313
|
+
},
|
314
|
+
{
|
315
|
+
label: '固定集合',
|
316
|
+
key: 'fixArray',
|
317
|
+
noMatch: []
|
318
|
+
},
|
319
|
+
{
|
320
|
+
label: '业务逻辑',
|
321
|
+
key: 'logic',
|
322
|
+
noMatch: []
|
323
|
+
}
|
324
|
+
]
|
325
|
+
}
|