@lingxiteam/theme-utils 0.1.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.
Files changed (128) hide show
  1. package/README.md +83 -0
  2. package/dist/config/Button.d.ts +101 -0
  3. package/dist/config/Button.js +265 -0
  4. package/dist/config/Card.d.ts +137 -0
  5. package/dist/config/Card.js +149 -0
  6. package/dist/config/Cascader.d.ts +179 -0
  7. package/dist/config/Cascader.js +208 -0
  8. package/dist/config/Checkbox.d.ts +161 -0
  9. package/dist/config/Checkbox.js +161 -0
  10. package/dist/config/CheckboxGroup.d.ts +176 -0
  11. package/dist/config/CheckboxGroup.js +184 -0
  12. package/dist/config/Collapse.d.ts +170 -0
  13. package/dist/config/Collapse.js +308 -0
  14. package/dist/config/Container.d.ts +268 -0
  15. package/dist/config/Container.js +288 -0
  16. package/dist/config/DatePicker.d.ts +163 -0
  17. package/dist/config/DatePicker.js +163 -0
  18. package/dist/config/Description.d.ts +97 -0
  19. package/dist/config/Description.js +117 -0
  20. package/dist/config/Divider.d.ts +61 -0
  21. package/dist/config/Divider.js +61 -0
  22. package/dist/config/Form.d.ts +2700 -0
  23. package/dist/config/Form.js +1214 -0
  24. package/dist/config/Icon.d.ts +51 -0
  25. package/dist/config/Icon.js +51 -0
  26. package/dist/config/Input.d.ts +150 -0
  27. package/dist/config/Input.js +150 -0
  28. package/dist/config/InputNumber.d.ts +145 -0
  29. package/dist/config/InputNumber.js +145 -0
  30. package/dist/config/Link.d.ts +123 -0
  31. package/dist/config/Link.js +115 -0
  32. package/dist/config/MultipleSelect.d.ts +158 -0
  33. package/dist/config/MultipleSelect.js +166 -0
  34. package/dist/config/Radio.d.ts +171 -0
  35. package/dist/config/Radio.js +179 -0
  36. package/dist/config/RangePicker.d.ts +165 -0
  37. package/dist/config/RangePicker.js +165 -0
  38. package/dist/config/Select.d.ts +173 -0
  39. package/dist/config/Select.js +181 -0
  40. package/dist/config/StdUpload.d.ts +204 -0
  41. package/dist/config/StdUpload.js +208 -0
  42. package/dist/config/Switch.d.ts +137 -0
  43. package/dist/config/Switch.js +137 -0
  44. package/dist/config/Table.d.ts +398 -0
  45. package/dist/config/Table.js +527 -0
  46. package/dist/config/Tabs.d.ts +170 -0
  47. package/dist/config/Tabs.js +229 -0
  48. package/dist/config/Tag.d.ts +114 -0
  49. package/dist/config/Tag.js +314 -0
  50. package/dist/config/Text.d.ts +30 -0
  51. package/dist/config/Text.js +30 -0
  52. package/dist/config/TextArea.d.ts +142 -0
  53. package/dist/config/TextArea.js +142 -0
  54. package/dist/config/TimePicker.d.ts +164 -0
  55. package/dist/config/TimePicker.js +164 -0
  56. package/dist/config/Tree.d.ts +131 -0
  57. package/dist/config/Tree.js +175 -0
  58. package/dist/config/TreeSelect.d.ts +180 -0
  59. package/dist/config/TreeSelect.js +196 -0
  60. package/dist/css.d.ts +6 -0
  61. package/dist/css.js +121 -0
  62. package/dist/demo.d.ts +5 -0
  63. package/dist/demo.js +79 -0
  64. package/dist/h5config/Accordion.d.ts +338 -0
  65. package/dist/h5config/Accordion.js +445 -0
  66. package/dist/h5config/Button.d.ts +134 -0
  67. package/dist/h5config/Button.js +245 -0
  68. package/dist/h5config/Card.d.ts +268 -0
  69. package/dist/h5config/Card.js +425 -0
  70. package/dist/h5config/DAddressPicker.d.ts +196 -0
  71. package/dist/h5config/DAddressPicker.js +226 -0
  72. package/dist/h5config/DCheckbox.d.ts +203 -0
  73. package/dist/h5config/DCheckbox.js +237 -0
  74. package/dist/h5config/DForm.d.ts +1607 -0
  75. package/dist/h5config/DForm.js +897 -0
  76. package/dist/h5config/DMultiplePicker.d.ts +197 -0
  77. package/dist/h5config/DMultiplePicker.js +231 -0
  78. package/dist/h5config/DformDate.d.ts +199 -0
  79. package/dist/h5config/DformDate.js +229 -0
  80. package/dist/h5config/DformFile.d.ts +186 -0
  81. package/dist/h5config/DformFile.js +198 -0
  82. package/dist/h5config/DformImagePicker.d.ts +138 -0
  83. package/dist/h5config/DformImagePicker.js +150 -0
  84. package/dist/h5config/DformInput.d.ts +188 -0
  85. package/dist/h5config/DformInput.js +218 -0
  86. package/dist/h5config/DformInputNumber.d.ts +173 -0
  87. package/dist/h5config/DformInputNumber.js +203 -0
  88. package/dist/h5config/DformPicker.d.ts +198 -0
  89. package/dist/h5config/DformPicker.js +232 -0
  90. package/dist/h5config/DformRadio.d.ts +203 -0
  91. package/dist/h5config/DformRadio.js +237 -0
  92. package/dist/h5config/DformRangePicker.d.ts +199 -0
  93. package/dist/h5config/DformRangePicker.js +229 -0
  94. package/dist/h5config/DformSelect.d.ts +208 -0
  95. package/dist/h5config/DformSelect.js +260 -0
  96. package/dist/h5config/DformSwitch.d.ts +146 -0
  97. package/dist/h5config/DformSwitch.js +158 -0
  98. package/dist/h5config/DformTextArea.d.ts +184 -0
  99. package/dist/h5config/DformTextArea.js +214 -0
  100. package/dist/h5config/Divider.d.ts +53 -0
  101. package/dist/h5config/Divider.js +90 -0
  102. package/dist/h5config/FilterItems.d.ts +142 -0
  103. package/dist/h5config/FilterItems.js +181 -0
  104. package/dist/h5config/Grid.d.ts +117 -0
  105. package/dist/h5config/Grid.js +154 -0
  106. package/dist/h5config/Icon.d.ts +54 -0
  107. package/dist/h5config/Icon.js +54 -0
  108. package/dist/h5config/Link.d.ts +47 -0
  109. package/dist/h5config/Link.js +47 -0
  110. package/dist/h5config/LoadMore.d.ts +527 -0
  111. package/dist/h5config/LoadMore.js +940 -0
  112. package/dist/h5config/NoticeBarPlus.d.ts +104 -0
  113. package/dist/h5config/NoticeBarPlus.js +129 -0
  114. package/dist/h5config/SearchView.d.ts +128 -0
  115. package/dist/h5config/SearchView.js +163 -0
  116. package/dist/h5config/StaticTabs.d.ts +133 -0
  117. package/dist/h5config/StaticTabs.js +173 -0
  118. package/dist/h5config/Table.d.ts +182 -0
  119. package/dist/h5config/Table.js +566 -0
  120. package/dist/index.d.ts +4 -0
  121. package/dist/index.js +4 -0
  122. package/dist/lx-mobile.d.ts +9 -0
  123. package/dist/lx-mobile.js +153 -0
  124. package/dist/lx.d.ts +6 -0
  125. package/dist/lx.js +112 -0
  126. package/dist/utils.d.ts +12 -0
  127. package/dist/utils.js +65 -0
  128. package/package.json +38 -0
@@ -0,0 +1,1214 @@
1
+ export var Form = {
2
+ type: 'Form',
3
+ variable: {
4
+ backgroundColor: {
5
+ type: 'color',
6
+ label: '背景颜色',
7
+ groupsName: '背景颜色'
8
+ },
9
+ // borderColor: {
10
+ // type: 'color',
11
+ // label: '边框颜色',
12
+ // groupsName: '边框',
13
+ // canEdit: false,
14
+ // extendsKey: 'Container',
15
+ // desc: '继承自容器,此处不可编辑',
16
+ // },
17
+ // borderRadius: {
18
+ // type: 'px',
19
+ // label: '边框圆角',
20
+ // groupsName: '边框',
21
+ // canEdit: false,
22
+ // extendsKey: 'Container',
23
+ // desc: '继承自容器,此处不可编辑',
24
+ // },
25
+ labelTextColor: {
26
+ type: 'color',
27
+ label: '标签文本颜色',
28
+ groupsName: '文字',
29
+ desc: '对所有[数据录入]类型组件生效'
30
+ },
31
+ labelLineHeight: {
32
+ type: 'px',
33
+ label: '标签文本行高',
34
+ groupsName: '文字',
35
+ desc: '对所有[数据录入]类型组件生效'
36
+ },
37
+ labelFontSize: {
38
+ type: 'px',
39
+ label: '标签文本尺寸',
40
+ groupsName: '文字',
41
+ desc: '对所有[数据录入]类型组件生效'
42
+ },
43
+ textColor: {
44
+ type: 'color',
45
+ label: '文本颜色',
46
+ groupsName: '文字',
47
+ desc: '对所有[数据录入]类型组件生效'
48
+ },
49
+ fontSize: {
50
+ type: 'px',
51
+ label: '文本尺寸',
52
+ groupsName: '文字',
53
+ desc: '对所有[数据录入]类型组件生效'
54
+ },
55
+ itemBorderColor: {
56
+ type: 'color',
57
+ label: '组件边框颜色',
58
+ groupsName: '边框',
59
+ desc: '对所有[数据录入]类型组件生效'
60
+ },
61
+ itemBorderRadius: {
62
+ type: 'px',
63
+ label: '组件边框圆角',
64
+ groupsName: '边框',
65
+ desc: '对所有[数据录入]类型组件生效'
66
+ }
67
+ },
68
+ groupsName: '容器',
69
+ icon: 'icon-ico-comp-form',
70
+ title: '表单',
71
+ defaultValue: [{
72
+ backgroundColor: '#fff',
73
+ labelTextColor: '#1c242e',
74
+ labelLineHeight: '32px',
75
+ labelFontSize: '14px',
76
+ textColor: '#1c242e',
77
+ fontSize: '14px',
78
+ itemBorderColor: '#E5E5EA',
79
+ itemBorderRadius: '2px'
80
+ }],
81
+ // 标签是 form 表单里面才有的,单独拉数据录入组件是没有标签的。
82
+ // 为了 tpl 干净,不在下列添加注释,顺序是输入框、多行输入框、数字输入、验证码、单选组、复选组、下拉单选、下拉复选、日期选择、时间选择、开关、文件上传、滑动输入条、评星
83
+ // 密码输入框、输入框的颜色和字号也在.pcfactory-input 边框在 .pcfactory-input-affix-wrapper
84
+ // 验证码的颜色和字号也在.pcfactory-input 边框在 .verificationCodePC-inputContent
85
+ // 单选组、复选组无边框
86
+ // 下拉单选与下拉复选样式一致
87
+ // 滑动输入条没有边框样式
88
+ // TODO: 树选择器,联级选择器效果待确认
89
+ tpl: "\n .ued-legacy-form-wrap{\n background-color: backgroundColor;\n }\n .ued-legacy-form-wrap.pcfactory-form-vertical .pcfactory-form-item-label>label{\n color: labelTextColor;\n line-height: labelLineHeight;\n font-size: labelFontSize;\n }\n .pcfactory-input-affix-wrapper {\n border-color: itemBorderColor;\n border-radius: itemBorderRadius;\n }\n .pcfactory-input{\n border-color: itemBorderColor;\n border-radius: itemBorderRadius;\n color: textColor;\n font-size: fontSize;\n }\n .ued-inputNumber-wrap.pcfactory-input-number{\n border-color: itemBorderColor;\n border-radius: itemBorderRadius;\n color: textColor;\n font-size: fontSize;\n }\n .verificationCodePC-inputContent{\n border-color: itemBorderColor;\n border-radius: itemBorderRadius;\n }\n .pcfactory-radio-wrapper{\n color: textColor;\n font-size: fontSize;\n }\n .pcfactory-checkbox-wrapper{\n color: textColor;\n font-size: fontSize;\n }\n .ued-select-wrap .pcfactory-select{\n color: textColor;\n font-size: fontSize;\n }\n .ued-select-checked-tag{\n color: textColor;\n font-size: fontSize;\n }\n .pcfactory-select-selector{\n border-color: itemBorderColor;\n border-radius: itemBorderRadius;\n }\n .ued-select-wrap .pcfactory-select-selection-item{\n color: textColor;\n font-size: fontSize;\n }\n .ued-cascader-wrap .pcfactory-select-selection-item{\n color: textColor;\n font-size: fontSize;\n }\n .ued-treeSelect-wrap .pcfactory-select-selection-item{\n color: textColor;\n font-size: fontSize;\n }\n .pcfactory-picker-input > input{\n color: textColor;\n font-size: fontSize;\n }\n .pcfactory-picker{\n border-color: itemBorderColor;\n border-radius: itemBorderRadius;\n }\n .ued-stdupload-wrap .pcfactory-upload.pcfactory-upload-select.pcfactory-upload-select-text button>span{\n color: textColor;\n font-size: fontSize;\n }\n .ued-stdupload-wrap .pcfactory-upload.pcfactory-upload-select.pcfactory-upload-select-text button{\n border-color: itemBorderColor;\n border-radius: itemBorderRadius;\n }\n .pcfactory-select:not(.pcfactory-select-customize-input) .pcfactory-select-selector{\n border-color: itemBorderColor;\n border-radius: itemBorderRadius;\n }\n .pcfactory-slider-handle{\n width: fontSize;\n height: fontSize;\n }\n .ued-rateContainer .pcfactory-rate{\n font-size: fontSize;\n }\n .ued-rateContainer-rateText{\n color: textColor;\n font-size: fontSize;\n }\n ",
90
+ components: [{
91
+ id: 'Form_180373',
92
+ label: '表单',
93
+ compName: 'Form',
94
+ type: 'Form',
95
+ compType: 0,
96
+ compLib: 'comm',
97
+ props: {
98
+ name: '表单',
99
+ colSpan: 12,
100
+ labelCol: 8,
101
+ wrapperCol: 16,
102
+ layout: 'vertical',
103
+ colon: true,
104
+ labelAlign: 'right',
105
+ basicStatus: 1,
106
+ colSpace: 16,
107
+ rowSpace: 16,
108
+ formCode: 'Code_Form_180373'
109
+ },
110
+ style: {
111
+ padding: '0px 0px 0px 0px'
112
+ },
113
+ isContainer: true,
114
+ isBusiObjContainer: true,
115
+ cmdgroup: ['basic'],
116
+ platform: 'pc',
117
+ icon: 'Form',
118
+ description: '',
119
+ image: '',
120
+ groupsName: '容器',
121
+ engineApi: ['service.downloadFileByFileCode', 'getVisible', 'stateListener'],
122
+ setEvents: [],
123
+ isLabelDropBoxChild: false,
124
+ components: [{
125
+ id: 'Input_3203017',
126
+ label: '输入框',
127
+ compName: 'Input',
128
+ type: 'Input',
129
+ compType: 2,
130
+ compLib: 'comm',
131
+ props: {
132
+ name: '输入框',
133
+ basicStatus: 1,
134
+ size: 'default',
135
+ labelCol: 8,
136
+ wrapperCol: 16,
137
+ titleTip: 'notext',
138
+ tipContent: '',
139
+ tipSize: 'default',
140
+ tipWidth: '240px',
141
+ tipHeight: 'auto',
142
+ prefixIconPosition: 'before',
143
+ postfix: '',
144
+ postfixIconPosition: 'before',
145
+ required: false,
146
+ placeholder: '请输入',
147
+ allowClear: true,
148
+ dataMask: '',
149
+ formItemIndex: 0,
150
+ fieldName: 'wd'
151
+ },
152
+ style: {},
153
+ isContainer: false,
154
+ isBusiObjContainer: false,
155
+ cmdgroup: ['basic'],
156
+ platform: 'pc',
157
+ fieldProps: {
158
+ trigger: 'onChange',
159
+ valuePropName: 'value'
160
+ },
161
+ engineApi: ['functorsMap'],
162
+ icon: 'Input',
163
+ description: '',
164
+ image: '',
165
+ groupsName: '数据录入',
166
+ alias: 'DformInput',
167
+ setEvents: [],
168
+ isLabelDropBoxChild: false,
169
+ components: [],
170
+ path: ['998509', 'Form_180373']
171
+ }, {
172
+ id: 'InputNumber_988055',
173
+ label: '数字输入框',
174
+ compName: 'InputNumber',
175
+ type: 'InputNumber',
176
+ compType: 2,
177
+ compLib: 'comm',
178
+ props: {
179
+ name: '数字输入框',
180
+ basicStatus: 1,
181
+ size: 'default',
182
+ labelCol: 8,
183
+ wrapperCol: 16,
184
+ step: 1,
185
+ titleTip: 'notext',
186
+ tipSize: 'default',
187
+ tipWidth: '240px',
188
+ tipHeight: 'auto',
189
+ required: false,
190
+ min: 0,
191
+ formatting: '',
192
+ formItemIndex: 1,
193
+ fieldName: 'vcd'
194
+ },
195
+ style: {},
196
+ isContainer: false,
197
+ isBusiObjContainer: false,
198
+ cmdgroup: ['basic'],
199
+ platform: 'pc',
200
+ fieldProps: {
201
+ trigger: 'onChange',
202
+ valuePropName: 'value'
203
+ },
204
+ icon: 'InputNumber',
205
+ description: '',
206
+ image: '',
207
+ groupsName: '数据录入',
208
+ engineApi: ['sandBoxSafeRun'],
209
+ setEvents: [],
210
+ isLabelDropBoxChild: false,
211
+ components: [],
212
+ path: ['998509', 'Form_180373']
213
+ }, {
214
+ id: 'Password_218584',
215
+ label: '密码框',
216
+ compName: 'Password',
217
+ type: 'Password',
218
+ compType: 2,
219
+ compLib: 'comm',
220
+ props: {
221
+ name: '密码框',
222
+ labelCol: 8,
223
+ wrapperCol: 16,
224
+ basicStatus: 1,
225
+ titleTip: 'notext',
226
+ tipSize: 'default',
227
+ tipWidth: '240px',
228
+ tipHeight: 'auto',
229
+ required: false,
230
+ allowClear: true,
231
+ formItemIndex: 2,
232
+ fieldName: 'cvdsd'
233
+ },
234
+ style: {},
235
+ isContainer: false,
236
+ isBusiObjContainer: false,
237
+ cmdgroup: ['basic'],
238
+ platform: 'pc',
239
+ icon: 'Password',
240
+ description: '',
241
+ image: '',
242
+ groupsName: '数据录入',
243
+ setEvents: [],
244
+ isLabelDropBoxChild: false,
245
+ components: [],
246
+ path: ['998509', 'Form_180373']
247
+ }, {
248
+ id: 'Radio_371201',
249
+ label: '单选组',
250
+ compName: 'Radio',
251
+ type: 'Radio',
252
+ compType: 2,
253
+ compLib: 'comm',
254
+ props: {
255
+ name: '单选组',
256
+ radioType: 'Radio',
257
+ optionMarginRight: 0,
258
+ labelCol: 8,
259
+ wrapperCol: 16,
260
+ basicStatus: 1,
261
+ titleTip: 'notext',
262
+ tipSize: 'default',
263
+ tipWidth: '240px',
264
+ tipHeight: 'auto',
265
+ required: false,
266
+ formItemIndex: 3,
267
+ fieldName: 'dsgc',
268
+ staticData: {
269
+ data: [{
270
+ id: '363107',
271
+ label: '属性名',
272
+ value: 'zx'
273
+ }, {
274
+ id: '3028122',
275
+ label: '属性名11',
276
+ value: 'asds'
277
+ }],
278
+ type: 'custom'
279
+ },
280
+ options: [{
281
+ id: '363107',
282
+ label: '属性名',
283
+ value: 'zx'
284
+ }, {
285
+ id: '3028122',
286
+ label: '属性名11',
287
+ value: 'asds'
288
+ }]
289
+ },
290
+ style: {},
291
+ isContainer: false,
292
+ isBusiObjContainer: false,
293
+ cmdgroup: ['basic'],
294
+ platform: 'pc',
295
+ fieldProps: {
296
+ trigger: 'onChange',
297
+ valuePropName: 'value'
298
+ },
299
+ icon: 'Radio',
300
+ description: '',
301
+ image: '',
302
+ groupsName: '数据录入',
303
+ isInlineBlock: true,
304
+ setEvents: [],
305
+ isLabelDropBoxChild: false,
306
+ components: [],
307
+ path: ['998509', 'Form_180373']
308
+ }, {
309
+ id: 'CheckboxGroup_095205',
310
+ label: '复选组',
311
+ compName: 'CheckboxGroup',
312
+ type: 'CheckboxGroup',
313
+ compType: 2,
314
+ compLib: 'comm',
315
+ props: {
316
+ name: '复选组',
317
+ basicStatus: 1,
318
+ titleTip: 'notext',
319
+ tipSize: 'default',
320
+ tipWidth: '240px',
321
+ tipHeight: 'auto',
322
+ checkAllText: '全部',
323
+ selfSpan: '',
324
+ labelCol: 8,
325
+ wrapperCol: 16,
326
+ formItemIndex: 4,
327
+ fieldName: 'savcrd',
328
+ tipPlacement: 'top',
329
+ tipIcon: {
330
+ theme: 'outlined',
331
+ type: 'question-circle'
332
+ },
333
+ tipLocation: 'after',
334
+ checkedAll: true,
335
+ staticData: {
336
+ data: [{
337
+ id: '149486',
338
+ label: '属性名',
339
+ value: 'dsf'
340
+ }, {
341
+ id: '0516294',
342
+ label: '属性名22',
343
+ value: 'sdds'
344
+ }],
345
+ type: 'custom'
346
+ },
347
+ options: [{
348
+ id: '149486',
349
+ label: '属性名',
350
+ value: 'dsf'
351
+ }, {
352
+ id: '0516294',
353
+ label: '属性名22',
354
+ value: 'sdds'
355
+ }]
356
+ },
357
+ style: {},
358
+ isContainer: false,
359
+ isBusiObjContainer: false,
360
+ cmdgroup: ['basic'],
361
+ platform: 'pc',
362
+ fieldProps: {
363
+ trigger: 'onChange',
364
+ valuePropName: 'value'
365
+ },
366
+ icon: 'CheckboxGroup',
367
+ description: '',
368
+ image: '',
369
+ groupsName: '数据录入',
370
+ setEvents: [],
371
+ isLabelDropBoxChild: false,
372
+ components: [],
373
+ path: ['998509', 'Form_180373']
374
+ }, {
375
+ id: 'Checkbox_7458648',
376
+ label: '复选框',
377
+ compName: 'Checkbox',
378
+ type: 'Checkbox',
379
+ compType: 2,
380
+ compLib: 'comm',
381
+ props: {
382
+ name: '复选框',
383
+ basicStatus: 1,
384
+ titleTip: 'notext',
385
+ tipSize: 'default',
386
+ tipWidth: '240px',
387
+ tipHeight: 'auto',
388
+ text: '',
389
+ selfSpan: '',
390
+ labelCol: 8,
391
+ wrapperCol: 16,
392
+ formItemIndex: 5,
393
+ fieldName: 'ads',
394
+ extendProps: [{
395
+ key: 'ere',
396
+ value: 'fefds'
397
+ }]
398
+ },
399
+ style: {},
400
+ isContainer: false,
401
+ isBusiObjContainer: false,
402
+ cmdgroup: ['basic'],
403
+ platform: 'pc',
404
+ fieldProps: {
405
+ trigger: 'onChange',
406
+ valuePropName: 'checked'
407
+ },
408
+ icon: 'Checkbox',
409
+ description: '',
410
+ image: '',
411
+ groupsName: '数据录入',
412
+ isInlineBlock: true,
413
+ setEvents: [],
414
+ isLabelDropBoxChild: false,
415
+ components: [],
416
+ path: ['998509', 'Form_180373']
417
+ }, {
418
+ id: 'MultipleSelect_628082',
419
+ label: '下拉多选框',
420
+ compName: 'MultipleSelect',
421
+ type: 'MultipleSelect',
422
+ compType: 2,
423
+ compLib: 'comm',
424
+ props: {
425
+ name: '下拉多选框',
426
+ basicStatus: 1,
427
+ size: 'default',
428
+ labelCol: 8,
429
+ wrapperCol: 16,
430
+ titleTip: 'notext',
431
+ tipSize: 'default',
432
+ tipWidth: '240px',
433
+ tipHeight: 'auto',
434
+ required: false,
435
+ filter: 'none',
436
+ placeholder: '请选择',
437
+ mode: 'multiple',
438
+ allowClear: true,
439
+ formItemIndex: 0,
440
+ staticData: {
441
+ data: [{
442
+ id: '767594',
443
+ label: '属性名1',
444
+ value: '1'
445
+ }, {
446
+ id: '15609',
447
+ label: '属性名2',
448
+ value: '2'
449
+ }],
450
+ type: 'custom'
451
+ },
452
+ options: [{
453
+ id: '767594',
454
+ label: '属性名1',
455
+ value: '1'
456
+ }, {
457
+ id: '15609',
458
+ label: '属性名2',
459
+ value: '2'
460
+ }]
461
+ },
462
+ style: {},
463
+ isContainer: false,
464
+ isBusiObjContainer: false,
465
+ cmdgroup: ['basic'],
466
+ platform: 'pc',
467
+ fieldProps: {
468
+ trigger: 'onChange',
469
+ valuePropName: 'value'
470
+ },
471
+ icon: 'MultipleSelect',
472
+ description: '',
473
+ image: '',
474
+ groupsName: '数据录入',
475
+ engineApi: ['sandBoxSafeRun'],
476
+ setEvents: [],
477
+ isLabelDropBoxChild: false,
478
+ components: [],
479
+ path: ['998509', 'Form_180373']
480
+ }, {
481
+ id: 'Select_956117',
482
+ label: '下拉框',
483
+ compName: 'Select',
484
+ type: 'Select',
485
+ compType: 2,
486
+ compLib: 'comm',
487
+ props: {
488
+ name: '下拉框',
489
+ basicStatus: 1,
490
+ size: 'default',
491
+ labelCol: 8,
492
+ wrapperCol: 16,
493
+ titleTip: 'notext',
494
+ tipSize: 'default',
495
+ tipWidth: '240px',
496
+ tipHeight: 'auto',
497
+ required: false,
498
+ filter: 'none',
499
+ classification: 'default',
500
+ placeholder: '请选择',
501
+ allowClear: true,
502
+ formItemIndex: 0,
503
+ fieldName: 'dsgt',
504
+ defaultValue: '1',
505
+ staticData: {
506
+ data: [{
507
+ id: '022656',
508
+ label: '属性名',
509
+ value: '1'
510
+ }, {
511
+ id: '18066',
512
+ label: '属性名1',
513
+ value: '2'
514
+ }],
515
+ type: 'custom'
516
+ },
517
+ options: [{
518
+ id: '022656',
519
+ label: '属性名',
520
+ value: '1'
521
+ }, {
522
+ id: '18066',
523
+ label: '属性名1',
524
+ value: '2'
525
+ }]
526
+ },
527
+ style: {},
528
+ isContainer: false,
529
+ isBusiObjContainer: false,
530
+ cmdgroup: ['basic'],
531
+ platform: 'pc',
532
+ fieldProps: {
533
+ trigger: 'onChange',
534
+ valuePropName: 'value'
535
+ },
536
+ icon: 'Select',
537
+ description: '',
538
+ image: '',
539
+ groupsName: '数据录入',
540
+ engineApi: ['sandBoxSafeRun'],
541
+ setEvents: [],
542
+ isLabelDropBoxChild: false,
543
+ components: [],
544
+ path: ['998509', 'Form_180373']
545
+ }, {
546
+ id: 'TreeSelect_357899',
547
+ label: '树选择',
548
+ compName: 'TreeSelect',
549
+ type: 'TreeSelect',
550
+ compType: 2,
551
+ compLib: 'comm',
552
+ props: {
553
+ name: '树选择',
554
+ filter: 'local',
555
+ basicStatus: 1,
556
+ titleTip: 'notext',
557
+ tipSize: 'default',
558
+ tipWidth: '240px',
559
+ tipHeight: 'auto',
560
+ selfSpan: '',
561
+ labelCol: 8,
562
+ wrapperCol: 16,
563
+ treeDefaultExpandAll: true,
564
+ size: 'default',
565
+ showSearch: false,
566
+ treeNodeFilterProp: 'title',
567
+ treeData: [{
568
+ title: '标题1',
569
+ key: '982968',
570
+ $$isParent: true,
571
+ selectable: true,
572
+ children: [{
573
+ title: '副标题1',
574
+ key: '223275',
575
+ selectable: true,
576
+ children: [],
577
+ value: '223275'
578
+ }, {
579
+ title: '副标题2',
580
+ key: '6154336',
581
+ selectable: true,
582
+ value: '6154336'
583
+ }],
584
+ value: '982968'
585
+ }, {
586
+ title: '标题2',
587
+ key: '589191',
588
+ $$isParent: true,
589
+ selectable: true,
590
+ children: [{
591
+ title: '副标题21',
592
+ key: '974854',
593
+ selectable: true,
594
+ value: '974854'
595
+ }, {
596
+ title: '副标题22',
597
+ key: '555559',
598
+ selectable: true,
599
+ value: '555559'
600
+ }],
601
+ value: '589191'
602
+ }],
603
+ allowClear: true,
604
+ formItemIndex: 0,
605
+ fieldName: '32'
606
+ },
607
+ style: {},
608
+ isContainer: false,
609
+ isBusiObjContainer: false,
610
+ cmdgroup: ['basic'],
611
+ platform: 'pc',
612
+ fieldProps: {
613
+ trigger: 'onChange',
614
+ valuePropName: 'value'
615
+ },
616
+ engineApi: ['service.commonFetch'],
617
+ icon: 'TreeSelect',
618
+ description: '',
619
+ image: '',
620
+ groupsName: '数据录入',
621
+ setEvents: [],
622
+ isLabelDropBoxChild: false,
623
+ components: [],
624
+ path: ['998509', 'Form_180373']
625
+ }, {
626
+ id: 'Cascader_347221',
627
+ label: '级联选择',
628
+ compName: 'Cascader',
629
+ type: 'Cascader',
630
+ compType: 2,
631
+ compLib: 'comm',
632
+ props: {
633
+ name: '级联选择',
634
+ basicStatus: 1,
635
+ multiple: '1',
636
+ titleTip: 'notext',
637
+ tipSize: 'default',
638
+ tipWidth: '240px',
639
+ tipHeight: 'auto',
640
+ selfSpan: '',
641
+ labelCol: 8,
642
+ wrapperCol: 16,
643
+ size: 'default',
644
+ expandTrigger: 'click',
645
+ popupPlacement: 'bottomLeft',
646
+ options: [{
647
+ label: '标题1',
648
+ key: '4030963',
649
+ $$isParent: true,
650
+ title: '标题1',
651
+ children: [{
652
+ label: '副标题1',
653
+ key: '933413',
654
+ title: '副标题1',
655
+ children: [{
656
+ label: '正文1',
657
+ key: '800723',
658
+ title: '正文1',
659
+ value: '800723'
660
+ }],
661
+ value: '933413'
662
+ }],
663
+ value: '4030963'
664
+ }, {
665
+ label: '标题2',
666
+ key: '835883',
667
+ $$isParent: true,
668
+ title: '标题2',
669
+ children: [{
670
+ label: '副标题21',
671
+ key: '917029',
672
+ title: '副标题21',
673
+ children: [{
674
+ label: '正文21',
675
+ key: '03438',
676
+ title: '正文21',
677
+ value: '03438'
678
+ }],
679
+ value: '917029'
680
+ }, {
681
+ label: '副标题22',
682
+ key: '508799',
683
+ title: '副标题22',
684
+ children: [{
685
+ label: '正文22',
686
+ key: '82403476',
687
+ title: '正文22',
688
+ value: '82403476'
689
+ }],
690
+ value: '508799'
691
+ }],
692
+ value: '835883'
693
+ }],
694
+ popoverStyle: 'default',
695
+ showSearch: false,
696
+ allowClear: true,
697
+ formItemIndex: 0,
698
+ fieldName: 'ddf'
699
+ },
700
+ style: {},
701
+ isContainer: false,
702
+ isBusiObjContainer: false,
703
+ cmdgroup: ['basic'],
704
+ platform: 'pc',
705
+ fieldProps: {
706
+ trigger: 'onChange',
707
+ valuePropName: 'value'
708
+ },
709
+ icon: 'Cascader',
710
+ description: '',
711
+ image: '',
712
+ groupsName: '数据录入',
713
+ setEvents: [],
714
+ isLabelDropBoxChild: false,
715
+ components: [],
716
+ path: ['998509', 'Form_578466']
717
+ }, {
718
+ id: 'Slider_896933',
719
+ label: '滑动输入条',
720
+ compName: 'Slider',
721
+ type: 'Slider',
722
+ compType: 2,
723
+ compLib: 'comm',
724
+ props: {
725
+ name: '滑动输入条',
726
+ range: false,
727
+ defaultValue: 0,
728
+ basicStatus: 1,
729
+ labelCol: 8,
730
+ wrapperCol: 16,
731
+ included: true,
732
+ direction: 'normal',
733
+ showInput: false,
734
+ showLabel: true,
735
+ labelPlacement: 'top',
736
+ titleTip: 'notext',
737
+ tipSize: 'default',
738
+ tipWidth: '240px',
739
+ tipHeight: 'auto',
740
+ required: false,
741
+ min: 0,
742
+ max: 100,
743
+ step: 1,
744
+ formItemIndex: 8,
745
+ fieldName: 'fgdf'
746
+ },
747
+ style: {},
748
+ isContainer: false,
749
+ isBusiObjContainer: false,
750
+ cmdgroup: ['basic'],
751
+ platform: 'pc',
752
+ fieldProps: {
753
+ trigger: 'onChange',
754
+ valuePropName: 'value'
755
+ },
756
+ icon: 'Slider',
757
+ description: '',
758
+ image: '',
759
+ groupsName: '数据录入',
760
+ setEvents: [],
761
+ isLabelDropBoxChild: false,
762
+ components: [],
763
+ path: ['998509', 'Form_180373']
764
+ }, {
765
+ id: 'Rate_846193',
766
+ label: '评分',
767
+ compName: 'Rate',
768
+ type: 'Rate',
769
+ compType: 2,
770
+ compLib: 'comm',
771
+ props: {
772
+ name: '评分',
773
+ basicStatus: 1,
774
+ titleTip: 'notext',
775
+ tipSize: 'default',
776
+ tipWidth: '240px',
777
+ tipHeight: 'auto',
778
+ count: 5,
779
+ value: 3,
780
+ tooltips: [1, 2, 3, 4, 5],
781
+ allowClear: true,
782
+ formItemIndex: 9,
783
+ fieldName: 'zxc'
784
+ },
785
+ style: {},
786
+ isContainer: false,
787
+ isBusiObjContainer: false,
788
+ cmdgroup: ['basic'],
789
+ platform: 'pc',
790
+ fieldProps: {
791
+ trigger: 'onChange',
792
+ valuePropName: 'value'
793
+ },
794
+ icon: 'Rate',
795
+ description: '',
796
+ image: '',
797
+ groupsName: '数据录入',
798
+ setEvents: [{
799
+ dataName: 'event',
800
+ dataId: '605659',
801
+ path: [],
802
+ value: 'onChange',
803
+ params: [{
804
+ title: '评分控件取值',
805
+ name: 'e',
806
+ value: '$e$'
807
+ }],
808
+ children: []
809
+ }],
810
+ isLabelDropBoxChild: false,
811
+ components: [],
812
+ path: ['998509', 'Form_180373']
813
+ }, {
814
+ id: 'Switch_088117',
815
+ label: '开关',
816
+ compName: 'Switch',
817
+ type: 'Switch',
818
+ compType: 2,
819
+ compLib: 'comm',
820
+ props: {
821
+ name: '开关',
822
+ size: 'default',
823
+ labelCol: 8,
824
+ wrapperCol: 16,
825
+ basicStatus: 1,
826
+ titleTip: 'notext',
827
+ tipSize: 'default',
828
+ tipWidth: '240px',
829
+ tipHeight: 'auto',
830
+ switchStyle: 'none',
831
+ checkedChildren: '开启',
832
+ unCheckedChildren: '关闭',
833
+ checkedChildrenIcon: {
834
+ type: 'check',
835
+ theme: 'outlined',
836
+ isIconFont: false
837
+ },
838
+ unCheckedChildrenIcon: {
839
+ type: 'close',
840
+ theme: 'outlined',
841
+ isIconFont: false
842
+ },
843
+ required: false,
844
+ defaultChecked: false,
845
+ formItemIndex: 10,
846
+ fieldName: 'vxc'
847
+ },
848
+ style: {},
849
+ isContainer: false,
850
+ isBusiObjContainer: false,
851
+ cmdgroup: ['basic'],
852
+ platform: 'pc',
853
+ fieldProps: {
854
+ trigger: 'onChange',
855
+ valuePropName: 'value'
856
+ },
857
+ icon: 'Switch',
858
+ description: '',
859
+ image: '',
860
+ groupsName: '数据录入',
861
+ isInlineBlock: true,
862
+ setEvents: [],
863
+ isLabelDropBoxChild: false,
864
+ components: [],
865
+ path: ['998509', 'Form_180373']
866
+ }, {
867
+ id: 'StdUpload_517167',
868
+ label: '文件上传',
869
+ compName: 'StdUpload',
870
+ type: 'StdUpload',
871
+ compType: 2,
872
+ compLib: 'antd',
873
+ props: {
874
+ name: '文件上传',
875
+ basicStatus: 1,
876
+ uploadStyle: 'click',
877
+ listType: 'text',
878
+ titleTip: 'notext',
879
+ tipSize: 'default',
880
+ tipWidth: '240px',
881
+ tipHeight: 'auto',
882
+ viewMode: 'popUp',
883
+ fileNameEncode: false,
884
+ isWatermark: false,
885
+ optionalFile: false,
886
+ fileName: 'file',
887
+ selfSpan: '',
888
+ labelCol: 8,
889
+ wrapperCol: 16,
890
+ numberLimit: 5,
891
+ singleFileMaxSize: 50,
892
+ uploadText: '点击上传',
893
+ uploadTimeout: 30000,
894
+ value: [{
895
+ fileId: '1',
896
+ fileName: 'xxx.png',
897
+ status: 'done'
898
+ }, {
899
+ fileId: '2',
900
+ fileName: 'yyy.png',
901
+ status: 'done'
902
+ }, {
903
+ fileId: '3',
904
+ fileName: 'zzz.png',
905
+ status: 'error',
906
+ response: 'Server Error 500' // custom error message to show
907
+ }],
908
+
909
+ deleteIcon: {
910
+ deleteIconTheme: 'outlined',
911
+ deleteIconType: 'delete',
912
+ deleteIconIsIconFont: false,
913
+ showRemoveIcon: true
914
+ },
915
+ downloadIcon: {
916
+ downloadIconTheme: 'outlined',
917
+ downloadIconType: 'download',
918
+ downloadIconIsIconFont: false,
919
+ showDownloadIcon: true
920
+ },
921
+ previewIcon: {
922
+ previewIconTheme: 'outlined',
923
+ previewIconType: 'eye',
924
+ previewIconIsIconFont: false,
925
+ showPreviewIcon: true
926
+ },
927
+ modalWidth: 960,
928
+ modalHeight: 648,
929
+ formItemIndex: 11,
930
+ fieldName: 'xvf'
931
+ },
932
+ style: {},
933
+ isContainer: false,
934
+ isBusiObjContainer: false,
935
+ cmdgroup: ['basic'],
936
+ platform: 'pc',
937
+ icon: 'StdUpload',
938
+ description: '',
939
+ image: '',
940
+ groupsName: '数据录入',
941
+ engineApi: ['BannerModal', 'service.uploadSingleFile', 'service.downloadByFileId', 'resolveApiPath'],
942
+ setEvents: [],
943
+ isLabelDropBoxChild: false,
944
+ components: [],
945
+ path: ['998509', 'Form_180373']
946
+ }, {
947
+ id: 'RangePicker_842094',
948
+ label: '时间段选择',
949
+ compName: 'RangePicker',
950
+ type: 'RangePicker',
951
+ compType: 2,
952
+ compLib: 'comm',
953
+ props: {
954
+ name: '时间段选择',
955
+ timeMode: 'date',
956
+ separator: '~',
957
+ size: 'default',
958
+ labelCol: 8,
959
+ wrapperCol: 16,
960
+ basicStatus: 1,
961
+ titleTip: 'notext',
962
+ tipSize: 'default',
963
+ tipWidth: '240px',
964
+ tipHeight: 'auto',
965
+ required: false,
966
+ format: 'YYYY-MM-DD',
967
+ pickerType: 'RangePicker',
968
+ allowClear: true,
969
+ formItemIndex: 12,
970
+ fieldName: 'vfdcx'
971
+ },
972
+ style: {},
973
+ isContainer: false,
974
+ isBusiObjContainer: false,
975
+ cmdgroup: ['basic'],
976
+ platform: 'pc',
977
+ fieldProps: {
978
+ trigger: 'onChange',
979
+ valuePropName: 'value'
980
+ },
981
+ icon: 'RangePicker',
982
+ description: '',
983
+ image: '',
984
+ groupsName: '数据录入',
985
+ setEvents: [],
986
+ isLabelDropBoxChild: false,
987
+ components: [],
988
+ path: ['998509', 'Form_180373']
989
+ }, {
990
+ id: 'DatePicker_917298',
991
+ label: '日期选择',
992
+ compName: 'DatePicker',
993
+ type: 'DatePicker',
994
+ compType: 2,
995
+ compLib: 'comm',
996
+ props: {
997
+ name: '日期选择',
998
+ timeMode: 'date',
999
+ basicStatus: 1,
1000
+ size: 'default',
1001
+ labelCol: 8,
1002
+ wrapperCol: 16,
1003
+ titleTip: 'notext',
1004
+ tipSize: 'default',
1005
+ tipWidth: '240px',
1006
+ tipHeight: 'auto',
1007
+ required: false,
1008
+ limitRange: 'no',
1009
+ startTime: '',
1010
+ endTime: '',
1011
+ format: 'YYYY-MM-DD',
1012
+ placeholder: '请选择日期',
1013
+ pickerType: 'DatePicker',
1014
+ customTip: '',
1015
+ allowClear: true,
1016
+ formItemIndex: 13,
1017
+ fieldName: 'grd'
1018
+ },
1019
+ style: {},
1020
+ isContainer: false,
1021
+ isBusiObjContainer: false,
1022
+ cmdgroup: ['basic'],
1023
+ platform: 'pc',
1024
+ fieldProps: {
1025
+ trigger: 'onChange',
1026
+ valuePropName: 'value'
1027
+ },
1028
+ icon: 'DatePicker',
1029
+ description: '',
1030
+ image: '',
1031
+ groupsName: '数据录入',
1032
+ setEvents: [],
1033
+ isLabelDropBoxChild: false,
1034
+ components: [],
1035
+ path: ['998509', 'Form_180373']
1036
+ }, {
1037
+ id: 'TimePicker_274966',
1038
+ label: '时间选择',
1039
+ compName: 'TimePicker',
1040
+ type: 'TimePicker',
1041
+ compType: 2,
1042
+ compLib: 'comm',
1043
+ props: {
1044
+ name: '时间选择',
1045
+ basicStatus: 1,
1046
+ size: 'default',
1047
+ selfSpan: '',
1048
+ labelCol: 8,
1049
+ wrapperCol: 16,
1050
+ titleTip: 'notext',
1051
+ tipSize: 'default',
1052
+ tipWidth: '240px',
1053
+ tipHeight: 'auto',
1054
+ required: false,
1055
+ limitRange: 'no',
1056
+ startTime: '',
1057
+ endTime: '',
1058
+ format: 'YYYY-MM-DD HH:mm:ss',
1059
+ timeMode: 'time',
1060
+ pickerType: 'TimePicker',
1061
+ placeholder: '请选择时间',
1062
+ customTip: '',
1063
+ allowClear: true,
1064
+ formItemIndex: 14,
1065
+ fieldName: 'rdsx'
1066
+ },
1067
+ style: {},
1068
+ isContainer: false,
1069
+ isBusiObjContainer: false,
1070
+ cmdgroup: ['basic'],
1071
+ platform: 'pc',
1072
+ fieldProps: {
1073
+ trigger: 'onChange',
1074
+ valuePropName: 'value'
1075
+ },
1076
+ icon: 'TimePicker',
1077
+ description: '',
1078
+ image: '',
1079
+ groupsName: '数据录入',
1080
+ setEvents: [],
1081
+ isLabelDropBoxChild: false,
1082
+ components: [],
1083
+ path: ['998509', 'Form_180373']
1084
+ }, {
1085
+ id: 'TextArea_78428606',
1086
+ label: '多行输入',
1087
+ compName: 'TextArea',
1088
+ type: 'TextArea',
1089
+ compType: 2,
1090
+ compLib: 'comm',
1091
+ props: {
1092
+ name: '多行输入',
1093
+ labelCol: 8,
1094
+ wrapperCol: 16,
1095
+ basicStatus: 1,
1096
+ titleTip: 'notext',
1097
+ tipSize: 'default',
1098
+ tipWidth: '240px',
1099
+ tipHeight: 'auto',
1100
+ required: false,
1101
+ placeholder: '请输入',
1102
+ allowClear: true,
1103
+ formItemIndex: 15,
1104
+ fieldName: 'fdec'
1105
+ },
1106
+ style: {},
1107
+ isContainer: false,
1108
+ isBusiObjContainer: false,
1109
+ cmdgroup: ['basic'],
1110
+ platform: 'pc',
1111
+ fieldProps: {
1112
+ trigger: 'onChange',
1113
+ valuePropName: 'value'
1114
+ },
1115
+ icon: 'TextArea',
1116
+ description: '',
1117
+ image: '',
1118
+ groupsName: '数据录入',
1119
+ setEvents: [],
1120
+ isLabelDropBoxChild: false,
1121
+ components: [],
1122
+ path: ['998509', 'Form_180373']
1123
+ }, {
1124
+ id: 'VerificationCode_6637723',
1125
+ label: '验证码',
1126
+ compName: 'VerificationCode',
1127
+ type: 'VerificationCode',
1128
+ compType: 2,
1129
+ compLib: 'comm',
1130
+ props: {
1131
+ name: '验证码',
1132
+ placeholderText: '请输入验证码',
1133
+ displayStyle: 'countdownStyle',
1134
+ countdownTime: 60,
1135
+ random: false,
1136
+ digit: 4,
1137
+ formItemIndex: 16,
1138
+ labelCol: 8,
1139
+ wrapperCol: 16,
1140
+ fieldName: 'asdcx'
1141
+ },
1142
+ style: {
1143
+ borderSetting: 'border 1px solid #E5E5E5',
1144
+ border: '1px solid #E5E5E5',
1145
+ borderRadius: '4px 4px 4px 4px',
1146
+ fontSize: '14',
1147
+ color: '#4477EE',
1148
+ backgroundColor: '#ffffff'
1149
+ },
1150
+ isContainer: false,
1151
+ isBusiObjContainer: false,
1152
+ cmdgroup: ['basic'],
1153
+ platform: 'pc',
1154
+ fieldProps: {
1155
+ trigger: 'onChange',
1156
+ valuePropName: 'value'
1157
+ },
1158
+ icon: 'VerificationCode',
1159
+ description: '',
1160
+ image: '',
1161
+ groupsName: '数据录入',
1162
+ engineApi: ['getValidateCodePicture'],
1163
+ setEvents: [{
1164
+ dataName: 'event',
1165
+ value: 'onChange',
1166
+ params: [{
1167
+ title: '事件对象',
1168
+ name: 'e',
1169
+ value: '$e$'
1170
+ }],
1171
+ path: [],
1172
+ dataId: '4056877',
1173
+ children: []
1174
+ }],
1175
+ isLabelDropBoxChild: false,
1176
+ components: [],
1177
+ path: ['998509', 'Form_180373']
1178
+ }],
1179
+ path: ['998509']
1180
+ }, {
1181
+ id: 'View_519882',
1182
+ label: '普通容器',
1183
+ compName: 'View',
1184
+ type: 'View',
1185
+ compType: 0,
1186
+ compLib: 'custom',
1187
+ props: {
1188
+ name: '普通容器1',
1189
+ basicStatus: 1
1190
+ },
1191
+ style: {
1192
+ textAlign: 'left',
1193
+ display: 'block',
1194
+ flexDirection: 'column',
1195
+ padding: '0px 0px 0px 0px',
1196
+ width: '100%',
1197
+ backgroundColor: '#FFFFFF',
1198
+ height: '250px'
1199
+ },
1200
+ isContainer: true,
1201
+ isBusiObjContainer: false,
1202
+ cmdgroup: ['basic'],
1203
+ platform: 'pc',
1204
+ icon: 'View',
1205
+ description: '',
1206
+ image: '',
1207
+ groupsName: '布局',
1208
+ engineApi: ['service.downloadFileByFileCode'],
1209
+ setEvents: [],
1210
+ isLabelDropBoxChild: false,
1211
+ components: [],
1212
+ path: ['998509']
1213
+ }]
1214
+ };