@lingxiteam/theme-utils 0.5.3 → 0.5.4

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 (127) hide show
  1. package/dist/config/Button.d.ts +113 -0
  2. package/dist/config/Button.js +277 -0
  3. package/dist/config/Card.d.ts +144 -0
  4. package/dist/config/Card.js +162 -0
  5. package/dist/config/Cascader.d.ts +196 -0
  6. package/dist/config/Cascader.js +225 -0
  7. package/dist/config/Checkbox.d.ts +162 -0
  8. package/dist/config/Checkbox.js +178 -0
  9. package/dist/config/CheckboxGroup.d.ts +184 -0
  10. package/dist/config/CheckboxGroup.js +192 -0
  11. package/dist/config/Collapse.d.ts +186 -0
  12. package/dist/config/Collapse.js +330 -0
  13. package/dist/config/Container.d.ts +275 -0
  14. package/dist/config/Container.js +301 -0
  15. package/dist/config/DatePicker.d.ts +179 -0
  16. package/dist/config/DatePicker.js +179 -0
  17. package/dist/config/Description.d.ts +106 -0
  18. package/dist/config/Description.js +126 -0
  19. package/dist/config/Divider.d.ts +61 -0
  20. package/dist/config/Divider.js +61 -0
  21. package/dist/config/Form.d.ts +3071 -0
  22. package/dist/config/Form.js +1358 -0
  23. package/dist/config/Icon.d.ts +55 -0
  24. package/dist/config/Icon.js +55 -0
  25. package/dist/config/Input.d.ts +159 -0
  26. package/dist/config/Input.js +159 -0
  27. package/dist/config/InputNumber.d.ts +154 -0
  28. package/dist/config/InputNumber.js +154 -0
  29. package/dist/config/Link.d.ts +128 -0
  30. package/dist/config/Link.js +120 -0
  31. package/dist/config/MultipleSelect.d.ts +167 -0
  32. package/dist/config/MultipleSelect.js +175 -0
  33. package/dist/config/Radio.d.ts +239 -0
  34. package/dist/config/Radio.js +261 -0
  35. package/dist/config/RangePicker.d.ts +182 -0
  36. package/dist/config/RangePicker.js +182 -0
  37. package/dist/config/Select.d.ts +190 -0
  38. package/dist/config/Select.js +198 -0
  39. package/dist/config/StdUpload.d.ts +197 -0
  40. package/dist/config/StdUpload.js +211 -0
  41. package/dist/config/Switch.d.ts +141 -0
  42. package/dist/config/Switch.js +151 -0
  43. package/dist/config/Table.d.ts +482 -0
  44. package/dist/config/Table.js +560 -0
  45. package/dist/config/Tabs.d.ts +230 -0
  46. package/dist/config/Tabs.js +970 -0
  47. package/dist/config/Tag.d.ts +173 -0
  48. package/dist/config/Tag.js +548 -0
  49. package/dist/config/Text.d.ts +34 -0
  50. package/dist/config/Text.js +34 -0
  51. package/dist/config/TextArea.d.ts +151 -0
  52. package/dist/config/TextArea.js +151 -0
  53. package/dist/config/TimePicker.d.ts +180 -0
  54. package/dist/config/TimePicker.js +180 -0
  55. package/dist/config/Tree.d.ts +151 -0
  56. package/dist/config/Tree.js +195 -0
  57. package/dist/config/TreeSelect.d.ts +197 -0
  58. package/dist/config/TreeSelect.js +213 -0
  59. package/dist/css.d.ts +6 -0
  60. package/dist/css.js +126 -0
  61. package/dist/demo.d.ts +5 -0
  62. package/dist/demo.js +79 -0
  63. package/dist/h5config/Accordion.d.ts +410 -0
  64. package/dist/h5config/Accordion.js +548 -0
  65. package/dist/h5config/Button.d.ts +142 -0
  66. package/dist/h5config/Button.js +253 -0
  67. package/dist/h5config/Card.d.ts +275 -0
  68. package/dist/h5config/Card.js +535 -0
  69. package/dist/h5config/DAddressPicker.d.ts +188 -0
  70. package/dist/h5config/DAddressPicker.js +230 -0
  71. package/dist/h5config/DCheckbox.d.ts +202 -0
  72. package/dist/h5config/DCheckbox.js +248 -0
  73. package/dist/h5config/DForm.d.ts +1597 -0
  74. package/dist/h5config/DForm.js +932 -0
  75. package/dist/h5config/DMultiplePicker.d.ts +189 -0
  76. package/dist/h5config/DMultiplePicker.js +235 -0
  77. package/dist/h5config/DformDate.d.ts +191 -0
  78. package/dist/h5config/DformDate.js +233 -0
  79. package/dist/h5config/DformFile.d.ts +277 -0
  80. package/dist/h5config/DformFile.js +292 -0
  81. package/dist/h5config/DformImagePicker.d.ts +138 -0
  82. package/dist/h5config/DformImagePicker.js +156 -0
  83. package/dist/h5config/DformInput.d.ts +189 -0
  84. package/dist/h5config/DformInput.js +231 -0
  85. package/dist/h5config/DformInputNumber.d.ts +173 -0
  86. package/dist/h5config/DformInputNumber.js +215 -0
  87. package/dist/h5config/DformPicker.d.ts +190 -0
  88. package/dist/h5config/DformPicker.js +236 -0
  89. package/dist/h5config/DformRadio.d.ts +210 -0
  90. package/dist/h5config/DformRadio.js +256 -0
  91. package/dist/h5config/DformRangePicker.d.ts +195 -0
  92. package/dist/h5config/DformRangePicker.js +237 -0
  93. package/dist/h5config/DformSelect.d.ts +198 -0
  94. package/dist/h5config/DformSelect.js +262 -0
  95. package/dist/h5config/DformSwitch.d.ts +145 -0
  96. package/dist/h5config/DformSwitch.js +163 -0
  97. package/dist/h5config/DformTextArea.d.ts +184 -0
  98. package/dist/h5config/DformTextArea.js +226 -0
  99. package/dist/h5config/Divider.d.ts +53 -0
  100. package/dist/h5config/Divider.js +90 -0
  101. package/dist/h5config/FilterItems.d.ts +154 -0
  102. package/dist/h5config/FilterItems.js +204 -0
  103. package/dist/h5config/Grid.d.ts +235 -0
  104. package/dist/h5config/Grid.js +278 -0
  105. package/dist/h5config/Icon.d.ts +54 -0
  106. package/dist/h5config/Icon.js +54 -0
  107. package/dist/h5config/Link.d.ts +51 -0
  108. package/dist/h5config/Link.js +51 -0
  109. package/dist/h5config/LoadMore.d.ts +527 -0
  110. package/dist/h5config/LoadMore.js +940 -0
  111. package/dist/h5config/NoticeBarPlus.d.ts +111 -0
  112. package/dist/h5config/NoticeBarPlus.js +141 -0
  113. package/dist/h5config/SearchView.d.ts +135 -0
  114. package/dist/h5config/SearchView.js +177 -0
  115. package/dist/h5config/StaticTabs.d.ts +121 -0
  116. package/dist/h5config/StaticTabs.js +180 -0
  117. package/dist/h5config/Table.d.ts +197 -0
  118. package/dist/h5config/Table.js +589 -0
  119. package/dist/index.d.ts +4 -0
  120. package/dist/index.js +4 -0
  121. package/dist/lx-mobile.d.ts +23 -0
  122. package/dist/lx-mobile.js +174 -0
  123. package/dist/lx.d.ts +24 -0
  124. package/dist/lx.js +139 -0
  125. package/dist/utils.d.ts +12 -0
  126. package/dist/utils.js +67 -0
  127. package/package.json +1 -1
@@ -0,0 +1,940 @@
1
+ export var LoadMore = {
2
+ type: 'LoadMore',
3
+ variable: {
4
+ backgroundColor: {
5
+ type: 'color',
6
+ label: '背景颜色',
7
+ groupsName: '背景颜色'
8
+ },
9
+ borderColor: {
10
+ type: 'color',
11
+ label: '边框颜色',
12
+ groupsName: '边框'
13
+ },
14
+ borderRadius: {
15
+ type: 'px',
16
+ label: '边框圆角',
17
+ groupsName: '边框'
18
+ }
19
+ },
20
+ groupsName: '高级',
21
+ icon: 'icon-ico-comp-app-LoadMore',
22
+ title: '动态列表',
23
+ defaultValue: [{
24
+ backgroundColor: 'rgba(0,0,0,0)',
25
+ borderColor: 'rgba(0,0,0,0)',
26
+ borderRadius: '0'
27
+ }],
28
+ tpl: "\n .adm-list-item{\n --adm-color-background: backgroundColor;\n border-radius: borderRadius;\n border: 1PX solid borderColor;\n }",
29
+ components: [{
30
+ id: 'DynamicList_686726',
31
+ label: '动态列表',
32
+ compName: 'DynamicList',
33
+ type: 'DynamicList',
34
+ compType: 2,
35
+ compLib: '@/components',
36
+ props: {
37
+ name: '动态列表',
38
+ columnNum: 1,
39
+ status: '1',
40
+ styleType: 'default',
41
+ paging: false,
42
+ pageSize: 1,
43
+ pageNum: 20,
44
+ pulling: false,
45
+ pullingText: '下拉刷新',
46
+ canReleaseText: '松开刷新',
47
+ refreshingText: '正在刷新',
48
+ completeText: '刷新成功',
49
+ dataId: 'das',
50
+ dataSource: '$[{id: 1},{id: 2}, {id: 3}]$'
51
+ },
52
+ style: {
53
+ titleFontSize: 15
54
+ },
55
+ isContainer: true,
56
+ isBusiObjContainer: false,
57
+ cmdgroup: ['basic'],
58
+ platform: 'h5',
59
+ engineApi: ['MemoRenderer'],
60
+ setEvents: [],
61
+ description: '',
62
+ image: '',
63
+ groupsName: '高级',
64
+ icon: 'LoadMore',
65
+ isLabelDropBoxChild: false,
66
+ functors: {
67
+ dataSource: {
68
+ title: '$[{id: 1},{id: 2}, {id: 3}]$',
69
+ value: '$[{ id: 1}, { id: 2}, { id: 3}]$',
70
+ dependOtherIds: []
71
+ }
72
+ },
73
+ components: [{
74
+ id: 'View_948063',
75
+ label: '布局容器',
76
+ compName: 'View',
77
+ type: 'View',
78
+ compType: 0,
79
+ compLib: '@/components',
80
+ props: {
81
+ name: '布局容器1',
82
+ visible: 1
83
+ },
84
+ style: {
85
+ margin: '10px 5px 0 5px',
86
+ padding: '12px 12px 12px 12px',
87
+ borderRadius: 8,
88
+ backgroundColor: 'rgba(255, 255, 255, 1)',
89
+ flexDirection: 'row',
90
+ alignItems: 'center',
91
+ display: 'flex'
92
+ },
93
+ isContainer: true,
94
+ isBusiObjContainer: false,
95
+ cmdgroup: ['basic'],
96
+ platform: 'h5',
97
+ engineApi: ['downloadFileByFileCode'],
98
+ description: '',
99
+ image: '',
100
+ groupsName: '容器',
101
+ icon: 'View',
102
+ setEvents: [],
103
+ isLabelDropBoxChild: false,
104
+ components: [{
105
+ id: 'Image_466906',
106
+ label: '图片',
107
+ compName: 'Image',
108
+ type: 'Image',
109
+ compType: 1,
110
+ compLib: '@/components',
111
+ props: {
112
+ name: '图片',
113
+ visible: 'true',
114
+ disabled: true,
115
+ uploadType: 'fileType',
116
+ src: 'https://gw.alipayobjects.com/zos/rmsportal/WXoqXTHrSnRcUwEaQgXJ.png',
117
+ srcType: 'fileCode'
118
+ },
119
+ style: {
120
+ width: '100px',
121
+ height: '76px',
122
+ backgroundColor: 'rgba(0, 0, 0, 0.04)'
123
+ },
124
+ isContainer: false,
125
+ isBusiObjContainer: false,
126
+ cmdgroup: ['basic'],
127
+ platform: 'h5',
128
+ engineApi: ['downloadFileByFileCode', 'downloadByFileId', 'http'],
129
+ isInlineBlock: true,
130
+ setEvents: [],
131
+ description: '',
132
+ image: '',
133
+ groupsName: '基础',
134
+ icon: 'Image',
135
+ isLabelDropBoxChild: false,
136
+ components: [],
137
+ path: ['454426', 'View_454426_1', 'DynamicList_686726', 'View_948063']
138
+ }, {
139
+ id: 'View_551793',
140
+ label: '布局容器',
141
+ compName: 'View',
142
+ type: 'View',
143
+ compType: 0,
144
+ compLib: '@/components',
145
+ props: {
146
+ name: '布局容器1',
147
+ visible: 1
148
+ },
149
+ style: {
150
+ flex: 1,
151
+ margin: '0 0 0 9px',
152
+ padding: '0 0 0 0',
153
+ display: 'flex',
154
+ flexDirection: 'column',
155
+ alignItems: 'stretch'
156
+ },
157
+ isContainer: true,
158
+ isBusiObjContainer: false,
159
+ cmdgroup: ['basic'],
160
+ platform: 'h5',
161
+ engineApi: ['downloadFileByFileCode'],
162
+ description: '',
163
+ image: '',
164
+ groupsName: '容器',
165
+ icon: 'View',
166
+ setEvents: [],
167
+ isLabelDropBoxChild: false,
168
+ components: [{
169
+ id: 'View_500965',
170
+ label: '布局容器',
171
+ compName: 'View',
172
+ type: 'View',
173
+ compType: 0,
174
+ compLib: '@/components',
175
+ props: {
176
+ name: '布局容器1',
177
+ visible: 1
178
+ },
179
+ style: {
180
+ margin: '0 0 0 0',
181
+ padding: '0 0 0 0',
182
+ display: 'flex',
183
+ flexDirection: 'row'
184
+ },
185
+ isContainer: true,
186
+ isBusiObjContainer: false,
187
+ cmdgroup: ['basic'],
188
+ platform: 'h5',
189
+ engineApi: ['downloadFileByFileCode'],
190
+ description: '',
191
+ image: '',
192
+ groupsName: '容器',
193
+ icon: 'View',
194
+ setEvents: [],
195
+ isLabelDropBoxChild: false,
196
+ components: [{
197
+ id: 'Text_70937',
198
+ label: '文本输入',
199
+ compName: 'Text',
200
+ type: 'Text',
201
+ compType: 1,
202
+ compLib: 'antd-mobile',
203
+ props: {
204
+ name: '标题',
205
+ children: '列表标题'
206
+ },
207
+ style: {
208
+ fontSize: 14,
209
+ fontWeidht: 'bold',
210
+ color: 'rgba(0, 0, 0, 0.9)'
211
+ },
212
+ isContainer: false,
213
+ isBusiObjContainer: false,
214
+ cmdgroup: ['basic'],
215
+ platform: 'h5',
216
+ fieldProps: {
217
+ trigger: 'onChange',
218
+ valuePropName: 'children'
219
+ },
220
+ isInlineBlock: true,
221
+ setEvents: [],
222
+ icon: 'Text',
223
+ description: '',
224
+ image: '',
225
+ groupsName: '基础',
226
+ transform: {
227
+ value: 'children'
228
+ },
229
+ isLabelDropBoxChild: false,
230
+ components: [],
231
+ path: ['454426', 'View_454426_1', 'DynamicList_686726', 'View_948063', 'View_551793', 'View_500965']
232
+ }],
233
+ path: ['454426', 'View_454426_1', 'DynamicList_686726', 'View_948063', 'View_551793']
234
+ }, {
235
+ id: 'View_1620444',
236
+ label: '布局容器',
237
+ compName: 'View',
238
+ type: 'View',
239
+ compType: 0,
240
+ compLib: '@/components',
241
+ props: {
242
+ name: '布局容器2',
243
+ visible: 1
244
+ },
245
+ style: {
246
+ margin: '6px 0 0 0',
247
+ padding: '0 0 0 0',
248
+ display: 'flex',
249
+ flexDirection: 'column',
250
+ alignItems: 'stretch'
251
+ },
252
+ isContainer: true,
253
+ isBusiObjContainer: false,
254
+ cmdgroup: ['basic'],
255
+ platform: 'h5',
256
+ engineApi: ['downloadFileByFileCode'],
257
+ description: '',
258
+ image: '',
259
+ groupsName: '容器',
260
+ icon: 'View',
261
+ setEvents: [],
262
+ isLabelDropBoxChild: false,
263
+ components: [{
264
+ id: 'Text_39779957',
265
+ label: '文本输入',
266
+ compName: 'Text',
267
+ type: 'Text',
268
+ compType: 1,
269
+ compLib: 'antd-mobile',
270
+ props: {
271
+ name: '详情',
272
+ children: '描述文案内容展示,描述文案内容展示描述文案内容展示内容展示最多展示两行'
273
+ },
274
+ style: {
275
+ color: 'rgba(0, 0, 0, 0.6)',
276
+ fontSize: 11
277
+ },
278
+ isContainer: false,
279
+ isBusiObjContainer: false,
280
+ cmdgroup: ['basic'],
281
+ platform: 'h5',
282
+ fieldProps: {
283
+ trigger: 'onChange',
284
+ valuePropName: 'children'
285
+ },
286
+ isInlineBlock: true,
287
+ setEvents: [],
288
+ icon: 'Text',
289
+ description: '',
290
+ image: '',
291
+ groupsName: '基础',
292
+ transform: {
293
+ value: 'children'
294
+ },
295
+ isLabelDropBoxChild: false,
296
+ components: [],
297
+ path: ['454426', 'View_454426_1', 'DynamicList_686726', 'View_948063', 'View_551793', 'View_1620444']
298
+ }],
299
+ path: ['454426', 'View_454426_1', 'DynamicList_686726', 'View_948063', 'View_551793']
300
+ }, {
301
+ id: 'View_874017',
302
+ label: '布局容器',
303
+ compName: 'View',
304
+ type: 'View',
305
+ compType: 0,
306
+ compLib: '@/components',
307
+ props: {
308
+ name: '布局容器3',
309
+ visible: 1
310
+ },
311
+ style: {
312
+ margin: '6px 0 0 0',
313
+ padding: '0 0 0 0',
314
+ display: 'flex',
315
+ flexDirection: 'row',
316
+ justifyContent: 'space-between'
317
+ },
318
+ isContainer: true,
319
+ isBusiObjContainer: false,
320
+ cmdgroup: ['basic'],
321
+ platform: 'h5',
322
+ engineApi: ['downloadFileByFileCode'],
323
+ description: '',
324
+ image: '',
325
+ groupsName: '容器',
326
+ icon: 'View',
327
+ setEvents: [],
328
+ isLabelDropBoxChild: false,
329
+ components: [{
330
+ id: 'View_293786',
331
+ label: '布局容器',
332
+ compName: 'View',
333
+ type: 'View',
334
+ compType: 0,
335
+ compLib: '@/components',
336
+ props: {
337
+ name: '布局容器1',
338
+ visible: 1
339
+ },
340
+ style: {
341
+ margin: '0 0 0 0',
342
+ padding: '0 0 0 0',
343
+ display: 'flex',
344
+ flexDirection: 'row'
345
+ },
346
+ isContainer: true,
347
+ isBusiObjContainer: false,
348
+ cmdgroup: ['basic'],
349
+ platform: 'h5',
350
+ engineApi: ['downloadFileByFileCode'],
351
+ description: '',
352
+ image: '',
353
+ groupsName: '容器',
354
+ icon: 'View',
355
+ setEvents: [],
356
+ isLabelDropBoxChild: false,
357
+ components: [{
358
+ id: 'Icon_460385',
359
+ label: '图标',
360
+ compName: 'Icon',
361
+ type: 'Icon',
362
+ compType: 1,
363
+ compLib: '@/components',
364
+ props: {
365
+ name: '图标',
366
+ state: '1',
367
+ mode: 'normal',
368
+ icon: {
369
+ type: 'check-circle',
370
+ theme: 'outlined',
371
+ fontAddress: '',
372
+ isIconFont: false
373
+ },
374
+ size: 'sm',
375
+ theme: 'outlined',
376
+ type: {
377
+ type: 'eye',
378
+ theme: 'filled',
379
+ fontAddress: '',
380
+ isIconFont: false,
381
+ iconFileInfo: {}
382
+ }
383
+ },
384
+ style: {
385
+ border: '0px',
386
+ color: '#9b9b9b',
387
+ fontSize: 12,
388
+ margin: '0 3 0 0'
389
+ },
390
+ isContainer: false,
391
+ isBusiObjContainer: false,
392
+ cmdgroup: ['basic'],
393
+ platform: 'h5',
394
+ engineApi: ['downloadFileByFileCode', 'getMaterialFile'],
395
+ isInlineBlock: true,
396
+ setEvents: [],
397
+ description: '',
398
+ image: '',
399
+ groupsName: '基础',
400
+ icon: 'Icon',
401
+ isLabelDropBoxChild: false,
402
+ components: [],
403
+ path: ['454426', 'View_454426_1', 'DynamicList_686726', 'View_948063', 'View_551793', 'View_874017', 'View_293786']
404
+ }, {
405
+ id: 'Text_047284',
406
+ label: '文本输入',
407
+ compName: 'Text',
408
+ type: 'Text',
409
+ compType: 1,
410
+ compLib: 'antd-mobile',
411
+ props: {
412
+ name: '文本输入',
413
+ children: '2000'
414
+ },
415
+ style: {
416
+ color: 'rgba(0, 0, 0, 0.3)',
417
+ fontSize: 11
418
+ },
419
+ isContainer: false,
420
+ isBusiObjContainer: false,
421
+ cmdgroup: ['basic'],
422
+ platform: 'h5',
423
+ fieldProps: {
424
+ trigger: 'onChange',
425
+ valuePropName: 'children'
426
+ },
427
+ isInlineBlock: true,
428
+ setEvents: [],
429
+ icon: 'Text',
430
+ description: '',
431
+ image: '',
432
+ groupsName: '基础',
433
+ transform: {
434
+ value: 'children'
435
+ },
436
+ isLabelDropBoxChild: false,
437
+ components: [],
438
+ path: ['454426', 'View_454426_1', 'DynamicList_686726', 'View_948063', 'View_551793', 'View_874017', 'View_293786']
439
+ }],
440
+ path: ['454426', 'View_454426_1', 'DynamicList_686726', 'View_948063', 'View_551793', 'View_874017']
441
+ }, {
442
+ id: 'Text_6710417',
443
+ label: '文本输入',
444
+ compName: 'Text',
445
+ type: 'Text',
446
+ compType: 1,
447
+ compLib: 'antd-mobile',
448
+ props: {
449
+ name: '文本输入',
450
+ children: '2021.10.10'
451
+ },
452
+ style: {
453
+ color: 'rgba(0, 0, 0, 0.3)',
454
+ fontSize: 11
455
+ },
456
+ isContainer: false,
457
+ isBusiObjContainer: false,
458
+ cmdgroup: ['basic'],
459
+ platform: 'h5',
460
+ fieldProps: {
461
+ trigger: 'onChange',
462
+ valuePropName: 'children'
463
+ },
464
+ isInlineBlock: true,
465
+ setEvents: [],
466
+ icon: 'Text',
467
+ description: '',
468
+ image: '',
469
+ groupsName: '基础',
470
+ transform: {
471
+ value: 'children'
472
+ },
473
+ isLabelDropBoxChild: false,
474
+ components: [],
475
+ path: ['454426', 'View_454426_1', 'DynamicList_686726', 'View_948063', 'View_551793', 'View_874017']
476
+ }],
477
+ path: ['454426', 'View_454426_1', 'DynamicList_686726', 'View_948063', 'View_551793']
478
+ }],
479
+ path: ['454426', 'View_454426_1', 'DynamicList_686726', 'View_948063']
480
+ }],
481
+ path: ['454426', 'View_454426_1', 'DynamicList_686726']
482
+ }],
483
+ path: ['454426', 'View_454426_1']
484
+ }, {
485
+ id: 'DynamicList_2820446',
486
+ label: '动态列表',
487
+ compName: 'DynamicList',
488
+ type: 'DynamicList',
489
+ compType: 2,
490
+ compLib: '@/components',
491
+ props: {
492
+ name: '动态列表',
493
+ columnNum: 2,
494
+ status: '1',
495
+ styleType: 'default',
496
+ paging: true,
497
+ pageSize: 20,
498
+ pageNum: 1,
499
+ pulling: true,
500
+ pullingText: '下拉刷新',
501
+ canReleaseText: '松开刷新',
502
+ refreshingText: '正在刷新',
503
+ completeText: '刷新成功',
504
+ dataId: 'asd',
505
+ dataSource: '$[{id: 1},{id: 2}, {id: 3}]$'
506
+ },
507
+ style: {
508
+ titleFontSize: 15
509
+ },
510
+ isContainer: true,
511
+ isBusiObjContainer: false,
512
+ cmdgroup: ['basic'],
513
+ platform: 'h5',
514
+ engineApi: ['MemoRenderer'],
515
+ setEvents: [],
516
+ description: '',
517
+ image: '',
518
+ groupsName: '高级',
519
+ icon: 'LoadMore',
520
+ isLabelDropBoxChild: false,
521
+ functors: {
522
+ dataSource: {
523
+ title: '$[{id: 1},{id: 2}, {id: 3}]$',
524
+ value: '$[{ id: 1}, { id: 2}, { id: 3}]$',
525
+ dependOtherIds: []
526
+ }
527
+ },
528
+ components: [{
529
+ id: 'View_695851',
530
+ label: '布局容器',
531
+ compName: 'View',
532
+ type: 'View',
533
+ compType: 0,
534
+ compLib: '@/components',
535
+ props: {
536
+ name: '布局容器4',
537
+ visible: 1
538
+ },
539
+ style: {
540
+ margin: '10px 5px 0 5px',
541
+ padding: '12px 12px 12px 12px',
542
+ borderRadius: 8,
543
+ backgroundColor: 'rgba(255, 255, 255, 1)',
544
+ display: 'flex',
545
+ flexDirection: 'column',
546
+ alignItems: 'stretch'
547
+ },
548
+ isContainer: true,
549
+ isBusiObjContainer: false,
550
+ cmdgroup: ['basic'],
551
+ platform: 'h5',
552
+ engineApi: ['downloadFileByFileCode'],
553
+ description: '',
554
+ image: '',
555
+ groupsName: '容器',
556
+ icon: 'View',
557
+ setEvents: [],
558
+ isLabelDropBoxChild: false,
559
+ components: [{
560
+ id: 'Image_156573',
561
+ label: '图片',
562
+ compName: 'Image',
563
+ type: 'Image',
564
+ compType: 1,
565
+ compLib: '@/components',
566
+ props: {
567
+ name: '图片',
568
+ visible: 'true',
569
+ disabled: true,
570
+ uploadType: 'fileType',
571
+ src: 'https://gw.alipayobjects.com/zos/rmsportal/WXoqXTHrSnRcUwEaQgXJ.png',
572
+ srcType: 'fileCode'
573
+ },
574
+ style: {
575
+ width: '100%',
576
+ height: '124px',
577
+ backgroundColor: 'rgba(0, 0, 0, 0.04)'
578
+ },
579
+ isContainer: false,
580
+ isBusiObjContainer: false,
581
+ cmdgroup: ['basic'],
582
+ platform: 'h5',
583
+ engineApi: ['downloadFileByFileCode', 'downloadByFileId', 'http'],
584
+ isInlineBlock: true,
585
+ setEvents: [],
586
+ description: '',
587
+ image: '',
588
+ groupsName: '基础',
589
+ icon: 'Image',
590
+ isLabelDropBoxChild: false,
591
+ components: [],
592
+ path: ['454426', 'View_454426_1', 'DynamicList_2820446', 'View_695851']
593
+ }, {
594
+ id: 'View_35476',
595
+ label: '布局容器',
596
+ compName: 'View',
597
+ type: 'View',
598
+ compType: 0,
599
+ compLib: '@/components',
600
+ props: {
601
+ name: '布局容器4',
602
+ visible: 1
603
+ },
604
+ style: {
605
+ flex: 1,
606
+ margin: '6px 0 0 0',
607
+ padding: '0 0 0 0',
608
+ display: 'flex',
609
+ flexDirection: 'column',
610
+ alignItems: 'stretch'
611
+ },
612
+ isContainer: true,
613
+ isBusiObjContainer: false,
614
+ cmdgroup: ['basic'],
615
+ platform: 'h5',
616
+ engineApi: ['downloadFileByFileCode'],
617
+ description: '',
618
+ image: '',
619
+ groupsName: '容器',
620
+ icon: 'View',
621
+ setEvents: [],
622
+ isLabelDropBoxChild: false,
623
+ components: [{
624
+ id: 'View_845817',
625
+ label: '布局容器',
626
+ compName: 'View',
627
+ type: 'View',
628
+ compType: 0,
629
+ compLib: '@/components',
630
+ props: {
631
+ name: '布局容器4',
632
+ visible: 1
633
+ },
634
+ style: {
635
+ margin: '0 0 0 0',
636
+ padding: '0 0 0 0',
637
+ display: 'flex',
638
+ flexDirection: 'row'
639
+ },
640
+ isContainer: true,
641
+ isBusiObjContainer: false,
642
+ cmdgroup: ['basic'],
643
+ platform: 'h5',
644
+ engineApi: ['downloadFileByFileCode'],
645
+ description: '',
646
+ image: '',
647
+ groupsName: '容器',
648
+ icon: 'View',
649
+ setEvents: [],
650
+ isLabelDropBoxChild: false,
651
+ components: [{
652
+ id: 'Text_176602',
653
+ label: '文本输入',
654
+ compName: 'Text',
655
+ type: 'Text',
656
+ compType: 1,
657
+ compLib: 'antd-mobile',
658
+ props: {
659
+ name: '标题',
660
+ children: '列表标题'
661
+ },
662
+ style: {
663
+ fontSize: 14,
664
+ fontWeidht: 'bold',
665
+ color: 'rgba(0, 0, 0, 0.9)'
666
+ },
667
+ isContainer: false,
668
+ isBusiObjContainer: false,
669
+ cmdgroup: ['basic'],
670
+ platform: 'h5',
671
+ fieldProps: {
672
+ trigger: 'onChange',
673
+ valuePropName: 'children'
674
+ },
675
+ isInlineBlock: true,
676
+ setEvents: [],
677
+ icon: 'Text',
678
+ description: '',
679
+ image: '',
680
+ groupsName: '基础',
681
+ transform: {
682
+ value: 'children'
683
+ },
684
+ isLabelDropBoxChild: false,
685
+ components: [],
686
+ path: ['454426', 'View_454426_1', 'DynamicList_2820446', 'View_695851', 'View_35476', 'View_845817']
687
+ }],
688
+ path: ['454426', 'View_454426_1', 'DynamicList_2820446', 'View_695851', 'View_35476']
689
+ }, {
690
+ id: 'View_545794',
691
+ label: '布局容器',
692
+ compName: 'View',
693
+ type: 'View',
694
+ compType: 0,
695
+ compLib: '@/components',
696
+ props: {
697
+ name: '布局容器5',
698
+ visible: 1
699
+ },
700
+ style: {
701
+ margin: '6px 0 0 0',
702
+ padding: '0 0 0 0',
703
+ display: 'flex',
704
+ flexDirection: 'column',
705
+ alignItems: 'stretch'
706
+ },
707
+ isContainer: true,
708
+ isBusiObjContainer: false,
709
+ cmdgroup: ['basic'],
710
+ platform: 'h5',
711
+ engineApi: ['downloadFileByFileCode'],
712
+ description: '',
713
+ image: '',
714
+ groupsName: '容器',
715
+ icon: 'View',
716
+ setEvents: [],
717
+ isLabelDropBoxChild: false,
718
+ components: [{
719
+ id: 'Text_8204883',
720
+ label: '文本输入',
721
+ compName: 'Text',
722
+ type: 'Text',
723
+ compType: 1,
724
+ compLib: 'antd-mobile',
725
+ props: {
726
+ name: '详情',
727
+ children: '描述文案内容展示,描述文案内容展示描述文案内容展示内容展示最多展示两行'
728
+ },
729
+ style: {
730
+ color: 'rgba(0, 0, 0, 0.6)',
731
+ fontSize: 11
732
+ },
733
+ isContainer: false,
734
+ isBusiObjContainer: false,
735
+ cmdgroup: ['basic'],
736
+ platform: 'h5',
737
+ fieldProps: {
738
+ trigger: 'onChange',
739
+ valuePropName: 'children'
740
+ },
741
+ isInlineBlock: true,
742
+ setEvents: [],
743
+ icon: 'Text',
744
+ description: '',
745
+ image: '',
746
+ groupsName: '基础',
747
+ transform: {
748
+ value: 'children'
749
+ },
750
+ isLabelDropBoxChild: false,
751
+ components: [],
752
+ path: ['454426', 'View_454426_1', 'DynamicList_2820446', 'View_695851', 'View_35476', 'View_545794']
753
+ }],
754
+ path: ['454426', 'View_454426_1', 'DynamicList_2820446', 'View_695851', 'View_35476']
755
+ }, {
756
+ id: 'View_52702',
757
+ label: '布局容器',
758
+ compName: 'View',
759
+ type: 'View',
760
+ compType: 0,
761
+ compLib: '@/components',
762
+ props: {
763
+ name: '布局容器6',
764
+ visible: 1
765
+ },
766
+ style: {
767
+ margin: '6px 0 0 0',
768
+ padding: '0 0 0 0',
769
+ display: 'flex',
770
+ flexDirection: 'row',
771
+ justifyContent: 'space-between'
772
+ },
773
+ isContainer: true,
774
+ isBusiObjContainer: false,
775
+ cmdgroup: ['basic'],
776
+ platform: 'h5',
777
+ engineApi: ['downloadFileByFileCode'],
778
+ description: '',
779
+ image: '',
780
+ groupsName: '容器',
781
+ icon: 'View',
782
+ setEvents: [],
783
+ isLabelDropBoxChild: false,
784
+ components: [{
785
+ id: 'View_6166974',
786
+ label: '布局容器',
787
+ compName: 'View',
788
+ type: 'View',
789
+ compType: 0,
790
+ compLib: '@/components',
791
+ props: {
792
+ name: '布局容器4',
793
+ visible: 1
794
+ },
795
+ style: {
796
+ margin: '0 0 0 0',
797
+ padding: '0 0 0 0',
798
+ display: 'flex',
799
+ flexDirection: 'row'
800
+ },
801
+ isContainer: true,
802
+ isBusiObjContainer: false,
803
+ cmdgroup: ['basic'],
804
+ platform: 'h5',
805
+ engineApi: ['downloadFileByFileCode'],
806
+ description: '',
807
+ image: '',
808
+ groupsName: '容器',
809
+ icon: 'View',
810
+ setEvents: [],
811
+ isLabelDropBoxChild: false,
812
+ components: [{
813
+ id: 'Icon_7227846',
814
+ label: '图标',
815
+ compName: 'Icon',
816
+ type: 'Icon',
817
+ compType: 1,
818
+ compLib: '@/components',
819
+ props: {
820
+ name: '图标',
821
+ state: '1',
822
+ mode: 'normal',
823
+ icon: {
824
+ type: 'check-circle',
825
+ theme: 'outlined',
826
+ fontAddress: '',
827
+ isIconFont: false
828
+ },
829
+ size: 'sm',
830
+ theme: 'outlined',
831
+ type: {
832
+ type: 'eye',
833
+ theme: 'filled',
834
+ fontAddress: '',
835
+ isIconFont: false,
836
+ iconFileInfo: {}
837
+ }
838
+ },
839
+ style: {
840
+ border: '0px',
841
+ color: '#9b9b9b',
842
+ fontSize: 12,
843
+ margin: '0 3 0 0'
844
+ },
845
+ isContainer: false,
846
+ isBusiObjContainer: false,
847
+ cmdgroup: ['basic'],
848
+ platform: 'h5',
849
+ engineApi: ['downloadFileByFileCode', 'getMaterialFile'],
850
+ isInlineBlock: true,
851
+ setEvents: [],
852
+ description: '',
853
+ image: '',
854
+ groupsName: '基础',
855
+ icon: 'Icon',
856
+ isLabelDropBoxChild: false,
857
+ components: [],
858
+ path: ['454426', 'View_454426_1', 'DynamicList_2820446', 'View_695851', 'View_35476', 'View_52702', 'View_6166974']
859
+ }, {
860
+ id: 'Text_757552',
861
+ label: '文本输入',
862
+ compName: 'Text',
863
+ type: 'Text',
864
+ compType: 1,
865
+ compLib: 'antd-mobile',
866
+ props: {
867
+ name: '文本输入',
868
+ children: '2000'
869
+ },
870
+ style: {
871
+ color: 'rgba(0, 0, 0, 0.3)',
872
+ fontSize: 11
873
+ },
874
+ isContainer: false,
875
+ isBusiObjContainer: false,
876
+ cmdgroup: ['basic'],
877
+ platform: 'h5',
878
+ fieldProps: {
879
+ trigger: 'onChange',
880
+ valuePropName: 'children'
881
+ },
882
+ isInlineBlock: true,
883
+ setEvents: [],
884
+ icon: 'Text',
885
+ description: '',
886
+ image: '',
887
+ groupsName: '基础',
888
+ transform: {
889
+ value: 'children'
890
+ },
891
+ isLabelDropBoxChild: false,
892
+ components: [],
893
+ path: ['454426', 'View_454426_1', 'DynamicList_2820446', 'View_695851', 'View_35476', 'View_52702', 'View_6166974']
894
+ }],
895
+ path: ['454426', 'View_454426_1', 'DynamicList_2820446', 'View_695851', 'View_35476', 'View_52702']
896
+ }, {
897
+ id: 'Text_193314',
898
+ label: '文本输入',
899
+ compName: 'Text',
900
+ type: 'Text',
901
+ compType: 1,
902
+ compLib: 'antd-mobile',
903
+ props: {
904
+ name: '文本输入',
905
+ children: '2021.10.10'
906
+ },
907
+ style: {
908
+ color: 'rgba(0, 0, 0, 0.3)',
909
+ fontSize: 11
910
+ },
911
+ isContainer: false,
912
+ isBusiObjContainer: false,
913
+ cmdgroup: ['basic'],
914
+ platform: 'h5',
915
+ fieldProps: {
916
+ trigger: 'onChange',
917
+ valuePropName: 'children'
918
+ },
919
+ isInlineBlock: true,
920
+ setEvents: [],
921
+ icon: 'Text',
922
+ description: '',
923
+ image: '',
924
+ groupsName: '基础',
925
+ transform: {
926
+ value: 'children'
927
+ },
928
+ isLabelDropBoxChild: false,
929
+ components: [],
930
+ path: ['454426', 'View_454426_1', 'DynamicList_2820446', 'View_695851', 'View_35476', 'View_52702']
931
+ }],
932
+ path: ['454426', 'View_454426_1', 'DynamicList_2820446', 'View_695851', 'View_35476']
933
+ }],
934
+ path: ['454426', 'View_454426_1', 'DynamicList_2820446', 'View_695851']
935
+ }],
936
+ path: ['454426', 'View_454426_1', 'DynamicList_2820446']
937
+ }],
938
+ path: ['454426', 'View_454426_1']
939
+ }]
940
+ };