@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,314 @@
1
+ export var Tag = {
2
+ type: 'Tag',
3
+ variable: {
4
+ // tagHeight: { type: 'px', label: '标签高度', groupsName: '文字' },
5
+ backgroundColor: {
6
+ type: 'color',
7
+ label: '背景颜色',
8
+ groupsName: '背景颜色'
9
+ },
10
+ paddingValue: {
11
+ type: 'marginInput',
12
+ label: '内边距',
13
+ groupsName: '布局'
14
+ },
15
+ // borderColor: { type: 'color', label: '边框颜色', groupsName: '边框' },
16
+ borderRadius: {
17
+ type: 'px',
18
+ label: '边框圆角',
19
+ groupsName: '边框'
20
+ },
21
+ // textColor: { type: 'color', label: '文本颜色', groupsName: '文字' },
22
+ fontSize: {
23
+ type: 'px',
24
+ label: '文本尺寸',
25
+ groupsName: '文字'
26
+ },
27
+ closeColor: {
28
+ type: 'color',
29
+ label: '关闭图标颜色',
30
+ groupsName: '文字'
31
+ },
32
+ closeSize: {
33
+ type: 'px',
34
+ label: '关闭图标尺寸',
35
+ groupsName: '文字'
36
+ }
37
+ },
38
+ groupsName: '数据展示',
39
+ icon: 'icon-ico-comp-tag',
40
+ title: '标签',
41
+ defaultValue: [{
42
+ backgroundColor: 'rgba(0,0,0,0)',
43
+ paddingValue: '0 7px 0 7px',
44
+ borderRadius: '11px',
45
+ fontSize: '12px',
46
+ closeColor: 'rgba(0,0,0,.45)',
47
+ closeSize: '10px'
48
+ }],
49
+ tpl: ".ued-tag-wrap .pcfactory-tag{\n background: backgroundColor;\n padding: paddingValue;\n border-radius: borderRadius;\n font-size: fontSize;\n }\n .ued-tag-wrap .pcfactory-tag .pcfactory-tag-close-icon { \n color: closeColor;\n > svg{\n width: closeSize;\n height: closeSize;\n }\n }",
50
+ components: [{
51
+ id: 'Tag_6939955',
52
+ label: '标签',
53
+ compName: 'Tag',
54
+ type: 'Tag',
55
+ compType: 3,
56
+ compLib: 'antd',
57
+ props: {
58
+ name: '标签',
59
+ basicStatus: 1,
60
+ title: 'tag',
61
+ closable: true,
62
+ tagType: {
63
+ name: 'tag',
64
+ key: '1'
65
+ }
66
+ },
67
+ style: {
68
+ minHeight: '10px'
69
+ },
70
+ isContainer: false,
71
+ isBusiObjContainer: false,
72
+ cmdgroup: ['basic'],
73
+ platform: 'pc',
74
+ icon: 'Tag',
75
+ description: '',
76
+ image: '',
77
+ groupsName: '数据展示',
78
+ setEvents: [],
79
+ isLabelDropBoxChild: false,
80
+ components: [],
81
+ path: ['3602564', 'View_3602564_1']
82
+ }, {
83
+ id: 'Tag_099399',
84
+ label: '标签',
85
+ compName: 'Tag',
86
+ type: 'Tag',
87
+ compType: 3,
88
+ compLib: 'antd',
89
+ props: {
90
+ name: '标签',
91
+ basicStatus: 1,
92
+ title: 'tag',
93
+ closable: true,
94
+ tagType: {
95
+ name: '蓝色描边标签',
96
+ key: '2',
97
+ classname: 'ued-tag-blue'
98
+ }
99
+ },
100
+ style: {
101
+ minHeight: '10px'
102
+ },
103
+ isContainer: false,
104
+ isBusiObjContainer: false,
105
+ cmdgroup: ['basic'],
106
+ platform: 'pc',
107
+ icon: 'Tag',
108
+ description: '',
109
+ image: '',
110
+ groupsName: '数据展示',
111
+ setEvents: [],
112
+ isLabelDropBoxChild: false,
113
+ components: [],
114
+ path: ['3602564', 'View_3602564_1']
115
+ }, {
116
+ id: 'Tag_22958',
117
+ label: '标签',
118
+ compName: 'Tag',
119
+ type: 'Tag',
120
+ compType: 3,
121
+ compLib: 'antd',
122
+ props: {
123
+ name: '标签',
124
+ basicStatus: 1,
125
+ title: 'tag',
126
+ closable: true,
127
+ tagType: {
128
+ name: '紫色描边标签',
129
+ key: '3',
130
+ classname: 'ued-tag-purple'
131
+ }
132
+ },
133
+ style: {
134
+ minHeight: '10px'
135
+ },
136
+ isContainer: false,
137
+ isBusiObjContainer: false,
138
+ cmdgroup: ['basic'],
139
+ platform: 'pc',
140
+ icon: 'Tag',
141
+ description: '',
142
+ image: '',
143
+ groupsName: '数据展示',
144
+ setEvents: [],
145
+ isLabelDropBoxChild: false,
146
+ components: [],
147
+ path: ['3602564', 'View_3602564_1']
148
+ }, {
149
+ id: 'Tag_799551',
150
+ label: '标签',
151
+ compName: 'Tag',
152
+ type: 'Tag',
153
+ compType: 3,
154
+ compLib: 'antd',
155
+ props: {
156
+ name: '标签',
157
+ basicStatus: 1,
158
+ title: 'tag',
159
+ closable: true,
160
+ tagType: {
161
+ name: '绿色描边标签',
162
+ key: '4',
163
+ classname: 'ued-tag-green'
164
+ }
165
+ },
166
+ style: {
167
+ minHeight: '10px'
168
+ },
169
+ isContainer: false,
170
+ isBusiObjContainer: false,
171
+ cmdgroup: ['basic'],
172
+ platform: 'pc',
173
+ icon: 'Tag',
174
+ description: '',
175
+ image: '',
176
+ groupsName: '数据展示',
177
+ setEvents: [],
178
+ isLabelDropBoxChild: false,
179
+ components: [],
180
+ path: ['3602564', 'View_3602564_1']
181
+ }, {
182
+ id: 'Tag_10752956',
183
+ label: '标签',
184
+ compName: 'Tag',
185
+ type: 'Tag',
186
+ compType: 3,
187
+ compLib: 'antd',
188
+ props: {
189
+ name: '标签',
190
+ basicStatus: 1,
191
+ title: 'tag',
192
+ closable: true,
193
+ tagType: {
194
+ name: '红色描边标签',
195
+ key: '5',
196
+ classname: 'ued-tag-red'
197
+ }
198
+ },
199
+ style: {
200
+ minHeight: '10px'
201
+ },
202
+ isContainer: false,
203
+ isBusiObjContainer: false,
204
+ cmdgroup: ['basic'],
205
+ platform: 'pc',
206
+ icon: 'Tag',
207
+ description: '',
208
+ image: '',
209
+ groupsName: '数据展示',
210
+ setEvents: [],
211
+ isLabelDropBoxChild: false,
212
+ components: [],
213
+ path: ['3602564', 'View_3602564_1']
214
+ }, {
215
+ id: 'Tag_3207935',
216
+ label: '标签',
217
+ compName: 'Tag',
218
+ type: 'Tag',
219
+ compType: 3,
220
+ compLib: 'antd',
221
+ props: {
222
+ name: '标签',
223
+ basicStatus: 1,
224
+ title: 'tag',
225
+ closable: true,
226
+ tagType: {
227
+ name: '橙色描边标签',
228
+ key: '6',
229
+ classname: 'ued-tag-orange'
230
+ }
231
+ },
232
+ style: {
233
+ minHeight: '10px'
234
+ },
235
+ isContainer: false,
236
+ isBusiObjContainer: false,
237
+ cmdgroup: ['basic'],
238
+ platform: 'pc',
239
+ icon: 'Tag',
240
+ description: '',
241
+ image: '',
242
+ groupsName: '数据展示',
243
+ setEvents: [],
244
+ isLabelDropBoxChild: false,
245
+ components: [],
246
+ path: ['3602564', 'View_3602564_1']
247
+ }, {
248
+ id: 'Tag_905984',
249
+ label: '标签',
250
+ compName: 'Tag',
251
+ type: 'Tag',
252
+ compType: 3,
253
+ compLib: 'antd',
254
+ props: {
255
+ name: '标签',
256
+ basicStatus: 1,
257
+ title: 'tag',
258
+ closable: true,
259
+ tagType: {
260
+ name: '金色描边标签',
261
+ key: '7',
262
+ classname: 'ued-tag-gold'
263
+ }
264
+ },
265
+ style: {
266
+ minHeight: '10px'
267
+ },
268
+ isContainer: false,
269
+ isBusiObjContainer: false,
270
+ cmdgroup: ['basic'],
271
+ platform: 'pc',
272
+ icon: 'Tag',
273
+ description: '',
274
+ image: '',
275
+ groupsName: '数据展示',
276
+ setEvents: [],
277
+ isLabelDropBoxChild: false,
278
+ components: [],
279
+ path: ['3602564', 'View_3602564_1']
280
+ }, {
281
+ id: 'Tag_0175',
282
+ label: '标签',
283
+ compName: 'Tag',
284
+ type: 'Tag',
285
+ compType: 3,
286
+ compLib: 'antd',
287
+ props: {
288
+ name: '标签',
289
+ basicStatus: 1,
290
+ title: 'tag',
291
+ closable: true,
292
+ tagType: {
293
+ name: '青色描边标签',
294
+ key: '8',
295
+ classname: 'ued-tag-cyan'
296
+ }
297
+ },
298
+ style: {
299
+ minHeight: '10px'
300
+ },
301
+ isContainer: false,
302
+ isBusiObjContainer: false,
303
+ cmdgroup: ['basic'],
304
+ platform: 'pc',
305
+ icon: 'Tag',
306
+ description: '',
307
+ image: '',
308
+ groupsName: '数据展示',
309
+ setEvents: [],
310
+ isLabelDropBoxChild: false,
311
+ components: [],
312
+ path: ['3602564', 'View_3602564_1']
313
+ }]
314
+ };
@@ -0,0 +1,30 @@
1
+ export declare const Text: {
2
+ type: string;
3
+ variable: {
4
+ textColor: {
5
+ type: string;
6
+ label: string;
7
+ groupsName: string;
8
+ };
9
+ lineHeight: {
10
+ type: string;
11
+ label: string;
12
+ groupsName: string;
13
+ };
14
+ fontSize: {
15
+ type: string;
16
+ label: string;
17
+ groupsName: string;
18
+ };
19
+ };
20
+ groupsName: string;
21
+ icon: string;
22
+ title: string;
23
+ defaultValue: {
24
+ textColor: string;
25
+ lineHeight: string;
26
+ fontSize: string;
27
+ }[];
28
+ tpl: string;
29
+ components: never[];
30
+ };
@@ -0,0 +1,30 @@
1
+ export var Text = {
2
+ type: 'Text',
3
+ variable: {
4
+ textColor: {
5
+ type: 'color',
6
+ label: '文本颜色',
7
+ groupsName: '文字'
8
+ },
9
+ lineHeight: {
10
+ type: 'px',
11
+ label: '文本行高',
12
+ groupsName: '文字'
13
+ },
14
+ fontSize: {
15
+ type: 'px',
16
+ label: '文本尺寸',
17
+ groupsName: '文字'
18
+ }
19
+ },
20
+ groupsName: '通用',
21
+ icon: 'Text',
22
+ title: '文本',
23
+ defaultValue: [{
24
+ textColor: '#1c242e',
25
+ lineHeight: '0px',
26
+ fontSize: '14px'
27
+ }],
28
+ tpl: "",
29
+ components: []
30
+ };
@@ -0,0 +1,142 @@
1
+ export declare const TextArea: {
2
+ type: string;
3
+ variable: {
4
+ labelTextColor: {
5
+ type: string;
6
+ label: string;
7
+ groupsName: string;
8
+ desc: string;
9
+ canEdit: boolean;
10
+ extendsKey: string;
11
+ };
12
+ labelLineHeight: {
13
+ type: string;
14
+ label: string;
15
+ groupsName: string;
16
+ desc: string;
17
+ canEdit: boolean;
18
+ extendsKey: string;
19
+ };
20
+ labelFontSize: {
21
+ type: string;
22
+ label: string;
23
+ groupsName: string;
24
+ desc: string;
25
+ canEdit: boolean;
26
+ extendsKey: string;
27
+ };
28
+ textColor: {
29
+ type: string;
30
+ label: string;
31
+ groupsName: string;
32
+ desc: string;
33
+ canEdit: boolean;
34
+ extendsKey: string;
35
+ };
36
+ fontSize: {
37
+ type: string;
38
+ label: string;
39
+ groupsName: string;
40
+ desc: string;
41
+ canEdit: boolean;
42
+ extendsKey: string;
43
+ };
44
+ itemBorderColor: {
45
+ type: string;
46
+ label: string;
47
+ groupsName: string;
48
+ desc: string;
49
+ canEdit: boolean;
50
+ extendsKey: string;
51
+ };
52
+ itemBorderRadius: {
53
+ type: string;
54
+ label: string;
55
+ groupsName: string;
56
+ desc: string;
57
+ canEdit: boolean;
58
+ extendsKey: string;
59
+ };
60
+ };
61
+ groupsName: string;
62
+ icon: string;
63
+ title: string;
64
+ defaultValue: {}[];
65
+ tpl: string;
66
+ components: {
67
+ id: string;
68
+ label: string;
69
+ compName: string;
70
+ type: string;
71
+ compType: number;
72
+ compLib: string;
73
+ props: {
74
+ name: string;
75
+ colSpan: number;
76
+ labelCol: number;
77
+ wrapperCol: number;
78
+ layout: string;
79
+ colon: boolean;
80
+ labelAlign: string;
81
+ basicStatus: number;
82
+ colSpace: number;
83
+ rowSpace: number;
84
+ formCode: string;
85
+ };
86
+ style: {
87
+ padding: string;
88
+ };
89
+ isContainer: boolean;
90
+ isBusiObjContainer: boolean;
91
+ cmdgroup: string[];
92
+ platform: string;
93
+ icon: string;
94
+ description: string;
95
+ image: string;
96
+ groupsName: string;
97
+ engineApi: string[];
98
+ setEvents: never[];
99
+ isLabelDropBoxChild: boolean;
100
+ components: {
101
+ id: string;
102
+ label: string;
103
+ compName: string;
104
+ type: string;
105
+ compType: number;
106
+ compLib: string;
107
+ props: {
108
+ name: string;
109
+ labelCol: number;
110
+ wrapperCol: number;
111
+ basicStatus: number;
112
+ titleTip: string;
113
+ tipSize: string;
114
+ tipWidth: string;
115
+ tipHeight: string;
116
+ required: boolean;
117
+ placeholder: string;
118
+ allowClear: boolean;
119
+ formItemIndex: number;
120
+ fieldName: string;
121
+ };
122
+ style: {};
123
+ isContainer: boolean;
124
+ isBusiObjContainer: boolean;
125
+ cmdgroup: string[];
126
+ platform: string;
127
+ fieldProps: {
128
+ trigger: string;
129
+ valuePropName: string;
130
+ };
131
+ icon: string;
132
+ description: string;
133
+ image: string;
134
+ groupsName: string;
135
+ setEvents: never[];
136
+ isLabelDropBoxChild: boolean;
137
+ components: never[];
138
+ path: string[];
139
+ }[];
140
+ path: string[];
141
+ }[];
142
+ };
@@ -0,0 +1,142 @@
1
+ export var TextArea = {
2
+ type: 'TextArea',
3
+ variable: {
4
+ labelTextColor: {
5
+ type: 'color',
6
+ label: '标签文本颜色',
7
+ groupsName: '文字',
8
+ desc: '继承自表单,此处不可编辑',
9
+ canEdit: false,
10
+ extendsKey: 'Form'
11
+ },
12
+ labelLineHeight: {
13
+ type: 'px',
14
+ label: '标签文本行高',
15
+ groupsName: '文字',
16
+ desc: '继承自表单,此处不可编辑',
17
+ canEdit: false,
18
+ extendsKey: 'Form'
19
+ },
20
+ labelFontSize: {
21
+ type: 'px',
22
+ label: '标签文本尺寸',
23
+ groupsName: '文字',
24
+ desc: '继承自表单,此处不可编辑',
25
+ canEdit: false,
26
+ extendsKey: 'Form'
27
+ },
28
+ textColor: {
29
+ type: 'color',
30
+ label: '文本颜色',
31
+ groupsName: '文字',
32
+ desc: '继承自表单,此处不可编辑',
33
+ canEdit: false,
34
+ extendsKey: 'Form'
35
+ },
36
+ fontSize: {
37
+ type: 'px',
38
+ label: '文本尺寸',
39
+ groupsName: '文字',
40
+ desc: '继承自表单,此处不可编辑',
41
+ canEdit: false,
42
+ extendsKey: 'Form'
43
+ },
44
+ itemBorderColor: {
45
+ type: 'color',
46
+ label: '边框颜色',
47
+ groupsName: '边框',
48
+ desc: '继承自表单,此处不可编辑',
49
+ canEdit: false,
50
+ extendsKey: 'Form'
51
+ },
52
+ itemBorderRadius: {
53
+ type: 'px',
54
+ label: '边框圆角',
55
+ groupsName: '边框',
56
+ desc: '继承自表单,此处不可编辑',
57
+ canEdit: false,
58
+ extendsKey: 'Form'
59
+ }
60
+ },
61
+ groupsName: '数据录入',
62
+ icon: 'icon-ico-comp-textarea',
63
+ title: '多行输入',
64
+ defaultValue: [{}],
65
+ tpl: "",
66
+ components: [{
67
+ id: 'Form_180373',
68
+ label: '表单',
69
+ compName: 'Form',
70
+ type: 'Form',
71
+ compType: 0,
72
+ compLib: 'comm',
73
+ props: {
74
+ name: '表单',
75
+ colSpan: 12,
76
+ labelCol: 8,
77
+ wrapperCol: 16,
78
+ layout: 'vertical',
79
+ colon: true,
80
+ labelAlign: 'right',
81
+ basicStatus: 1,
82
+ colSpace: 16,
83
+ rowSpace: 16,
84
+ formCode: 'Code_Form_180373'
85
+ },
86
+ style: {
87
+ padding: '0px 0px 0px 0px'
88
+ },
89
+ isContainer: true,
90
+ isBusiObjContainer: true,
91
+ cmdgroup: ['basic'],
92
+ platform: 'pc',
93
+ icon: 'Form',
94
+ description: '',
95
+ image: '',
96
+ groupsName: '容器',
97
+ engineApi: ['service.downloadFileByFileCode', 'getVisible', 'stateListener'],
98
+ setEvents: [],
99
+ isLabelDropBoxChild: false,
100
+ components: [{
101
+ id: 'TextArea_78428606',
102
+ label: '多行输入',
103
+ compName: 'TextArea',
104
+ type: 'TextArea',
105
+ compType: 2,
106
+ compLib: 'comm',
107
+ props: {
108
+ name: '多行输入',
109
+ labelCol: 8,
110
+ wrapperCol: 16,
111
+ basicStatus: 1,
112
+ titleTip: 'notext',
113
+ tipSize: 'default',
114
+ tipWidth: '240px',
115
+ tipHeight: 'auto',
116
+ required: false,
117
+ placeholder: '请输入',
118
+ allowClear: true,
119
+ formItemIndex: 15,
120
+ fieldName: 'fdec'
121
+ },
122
+ style: {},
123
+ isContainer: false,
124
+ isBusiObjContainer: false,
125
+ cmdgroup: ['basic'],
126
+ platform: 'pc',
127
+ fieldProps: {
128
+ trigger: 'onChange',
129
+ valuePropName: 'value'
130
+ },
131
+ icon: 'TextArea',
132
+ description: '',
133
+ image: '',
134
+ groupsName: '数据录入',
135
+ setEvents: [],
136
+ isLabelDropBoxChild: false,
137
+ components: [],
138
+ path: ['998509', 'Form_180373']
139
+ }],
140
+ path: ['998509']
141
+ }]
142
+ };