@lingxiteam/theme-utils 0.5.3 → 0.5.5

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,560 @@
1
+ export var Table = {
2
+ type: 'Table',
3
+ hasPrefixClass: true,
4
+ variable: {
5
+ headBgColor: {
6
+ type: 'color',
7
+ label: '表头填充颜色',
8
+ groupsName: '背景'
9
+ },
10
+ bodyBgColor: {
11
+ type: 'color',
12
+ label: '内容填充颜色',
13
+ groupsName: '背景'
14
+ },
15
+ zebraBgColor: {
16
+ type: 'color',
17
+ label: '斑马纹填充颜色',
18
+ groupsName: '背景'
19
+ },
20
+ textColor: {
21
+ type: 'color',
22
+ label: '标题颜色',
23
+ groupsName: '标题',
24
+ desc: '继承自容器,此处不可编辑',
25
+ canEdit: false,
26
+ extendsKey: 'Container'
27
+ },
28
+ fontSize: {
29
+ type: 'px',
30
+ label: '标题尺寸',
31
+ groupsName: '标题',
32
+ desc: '继承自容器,此处不可编辑',
33
+ canEdit: false,
34
+ extendsKey: 'Container'
35
+ },
36
+ lineHeight: {
37
+ type: 'px',
38
+ label: '标题行高',
39
+ groupsName: '标题',
40
+ desc: '继承自容器,此处不可编辑',
41
+ canEdit: false,
42
+ extendsKey: 'Container'
43
+ },
44
+ fontWeight: {
45
+ type: 'select',
46
+ label: '标题字重',
47
+ groupsName: '标题',
48
+ desc: '继承自容器,此处不可编辑',
49
+ canEdit: false,
50
+ extendsKey: 'Container',
51
+ options: [{
52
+ title: '100',
53
+ value: '100'
54
+ }, {
55
+ title: '200',
56
+ value: '200'
57
+ }, {
58
+ title: '300',
59
+ value: '300'
60
+ }, {
61
+ title: '400',
62
+ value: '400'
63
+ }, {
64
+ title: '500',
65
+ value: '500'
66
+ }, {
67
+ title: '600',
68
+ value: '600'
69
+ }, {
70
+ title: '700',
71
+ value: '700'
72
+ }]
73
+ },
74
+ // 基础表格
75
+ tbFontSize: {
76
+ type: 'px',
77
+ label: '文本尺寸',
78
+ groupsName: '文字',
79
+ followTheme: '@font-size-base'
80
+ },
81
+ // headLineSize: {
82
+ // type: 'px',
83
+ // label: '下分割线尺寸',
84
+ // groupsName: '表头',
85
+ // },
86
+ // headLineColor: {
87
+ // type: 'color',
88
+ // label: '下分割线颜色',
89
+ // groupsName: '表头',
90
+ // },
91
+ headTextColor: {
92
+ type: 'color',
93
+ label: '文本颜色',
94
+ followTheme: '@text-color',
95
+ groupsName: '表头行'
96
+ },
97
+ headFontWeight: {
98
+ type: 'select',
99
+ label: '文本字重',
100
+ groupsName: '表头行',
101
+ options: [{
102
+ title: '100',
103
+ value: '100'
104
+ }, {
105
+ title: '200',
106
+ value: '200'
107
+ }, {
108
+ title: '300',
109
+ value: '300'
110
+ }, {
111
+ title: '400',
112
+ value: '400'
113
+ }, {
114
+ title: '500',
115
+ value: '500'
116
+ }, {
117
+ title: '600',
118
+ value: '600'
119
+ }, {
120
+ title: '700',
121
+ value: '700'
122
+ }]
123
+ },
124
+ headTextAlign: {
125
+ type: 'select',
126
+ label: '对齐方式',
127
+ groupsName: '表头行',
128
+ options: [{
129
+ title: '左',
130
+ value: 'left'
131
+ }, {
132
+ title: '中',
133
+ value: 'center'
134
+ }, {
135
+ title: '右',
136
+ value: 'right'
137
+ }]
138
+ },
139
+ bodyTextColor: {
140
+ type: 'color',
141
+ label: '文本颜色',
142
+ groupsName: '内容行',
143
+ followTheme: '@text-color'
144
+ },
145
+ bodyFontWeight: {
146
+ type: 'select',
147
+ label: '文本字重',
148
+ groupsName: '内容行',
149
+ options: [{
150
+ title: '100',
151
+ value: '100'
152
+ }, {
153
+ title: '200',
154
+ value: '200'
155
+ }, {
156
+ title: '300',
157
+ value: '300'
158
+ }, {
159
+ title: '400',
160
+ value: '400'
161
+ }, {
162
+ title: '500',
163
+ value: '500'
164
+ }, {
165
+ title: '600',
166
+ value: '600'
167
+ }, {
168
+ title: '700',
169
+ value: '700'
170
+ }]
171
+ },
172
+ bodyTextAlign: {
173
+ type: 'select',
174
+ label: '对齐方式',
175
+ groupsName: '内容行',
176
+ options: [{
177
+ title: '左',
178
+ value: 'left'
179
+ }, {
180
+ title: '中',
181
+ value: 'center'
182
+ }, {
183
+ title: '右',
184
+ value: 'right'
185
+ }]
186
+ },
187
+ headPadding: {
188
+ type: 'marginInput',
189
+ label: '表头内边距',
190
+ groupsName: '布局'
191
+ },
192
+ bodyPadding: {
193
+ type: 'marginInput',
194
+ label: '内容内边距',
195
+ groupsName: '布局'
196
+ },
197
+ tbBorderRadius: {
198
+ type: 'px',
199
+ label: '圆角',
200
+ groupsName: '边框',
201
+ followTheme: '@border-radius-base'
202
+ },
203
+ tbBorderColor: {
204
+ type: 'color',
205
+ label: '分割线颜色',
206
+ groupsName: '边框',
207
+ followTheme: '@border-color-base',
208
+ desc: '边框线类型为表格时,四周边框以及竖分割线将同步生效'
209
+ },
210
+ selectPaginationColor: {
211
+ type: 'color',
212
+ label: '分页选中填充颜色',
213
+ groupsName: '其他',
214
+ followTheme: '@primary-color'
215
+ },
216
+ selectPaginationRadius: {
217
+ type: 'px',
218
+ label: '分页边框圆角',
219
+ groupsName: '其他',
220
+ followTheme: '@border-radius-base'
221
+ },
222
+ selectPaginationBorder: {
223
+ type: 'color',
224
+ label: '分页边框颜色',
225
+ groupsName: '其他',
226
+ followTheme: '@primary-color'
227
+ }
228
+ },
229
+ groupsName: '数据展示',
230
+ icon: 'icon-ico-comp-table',
231
+ title: '表格',
232
+ defaultValue: [{
233
+ selectPaginationColor: '#47e',
234
+ selectPaginationRadius: '2px',
235
+ selectPaginationBorder: '#47e',
236
+ tbFontSize: '14px',
237
+ tbBorderColor: '#f0f0f0',
238
+ tbBorderRadius: '2px',
239
+ headBgColor: '#F5F8FA',
240
+ headPadding: '10px 8px 10px 8px',
241
+ // headLineSize: '1px',
242
+ // headLineColor: '#f0f0f0',
243
+ headFontWeight: '400',
244
+ headTextColor: '#1c242e',
245
+ headTextAlign: 'left',
246
+ bodyBgColor: '#fff',
247
+ bodyPadding: '10px 8px 10px 8px',
248
+ bodyFontWeight: '400',
249
+ bodyTextColor: '#1c242e',
250
+ bodyTextAlign: 'left',
251
+ zebraBgColor: '#fbfbfb'
252
+ }],
253
+ followThemes: {
254
+ '@primary-color': ['selectPaginationColor', 'selectPaginationBorder'],
255
+ '@font-size-base': ['tbFontSize'],
256
+ '@text-color': [],
257
+ '@border-radius-base': [],
258
+ '@border-color-base': []
259
+ },
260
+ tpl: ".ued-table-wrap {\n .ued-control-line-number{\n line-height: tbFontSize !important;\n max-height: tbFontSize !important;\n }\n .pcfactory-table{\n font-size: tbFontSize;\n }\n .pcfactory-table-tbody{\n background: bodyBgColor;\n }\n .ued-table .pcfactory-table table {\n border-radius: tbBorderRadius;\n border-color: tbBorderColor;\n }\n .ued-table .pcfactory-table-thead > tr:first-child > th:first-child{\n border-top-left-radius: tbBorderRadius;\n }\n .ued-table .pcfactory-table-thead > tr:first-child > th:last-child{\n border-top-right-radius: tbBorderRadius;\n }\n .ued-table .pcfactory-table table .pcfactory-table-thead th {\n background: headBgColor;\n padding: headPadding;\n color: headTextColor;\n font-weight: headFontWeight;\n }\n .ued-table .pcfactory-table table .pcfactory-table-thead th:not(.pcfactory-table-selection-column) {\n text-align: headTextAlign;\n }\n .pcfactory-table.pcfactory-table-bordered>.pcfactory-table-container>.pcfactory-table-body>table>tbody>tr>td{\n border-color: tbBorderColor;\n }\n .pcfactory-table.pcfactory-table-bordered>.pcfactory-table-container>.pcfactory-table-body>table>tfoot>tr>td{\n border-color: tbBorderColor;\n }\n .pcfactory-table.pcfactory-table-bordered>.pcfactory-table-container>.pcfactory-table-body>table>tfoot>tr>th{\n border-color: tbBorderColor;\n }\n .pcfactory-table.pcfactory-table-bordered>.pcfactory-table-container>.pcfactory-table-content>table>tbody>tr>td{\n border-color: tbBorderColor;\n }\n .pcfactory-table.pcfactory-table-bordered>.pcfactory-table-container>.pcfactory-table-content>table>tfoot>tr>td{\n border-color: tbBorderColor;\n }\n .pcfactory-table.pcfactory-table-bordered>.pcfactory-table-container>.pcfactory-table-content>table>tfoot>tr>th{\n border-color: tbBorderColor;\n }\n .pcfactory-table.pcfactory-table-bordered>.pcfactory-table-container>.pcfactory-table-content>table>thead>tr>th{\n border-color: tbBorderColor;\n }\n .pcfactory-table.pcfactory-table-bordered>.pcfactory-table-container>.pcfactory-table-header>table>tbody>tr>td{\n border-color: tbBorderColor;\n }\n .pcfactory-table.pcfactory-table-bordered>.pcfactory-table-container>.pcfactory-table-header>table>tfoot>tr>td{\n border-color: tbBorderColor;\n }\n .pcfactory-table.pcfactory-table-bordered>.pcfactory-table-container>.pcfactory-table-header>table>tfoot>tr>th{\n border-color: tbBorderColor;\n }\n .pcfactory-table.pcfactory-table-bordered>.pcfactory-table-container>.pcfactory-table-header>table>thead>tr>th{\n border-color: tbBorderColor;\n }\n .pcfactory-table.pcfactory-table-bordered>.pcfactory-table-container>.pcfactory-table-summary>table>tbody>tr>td{\n border-color: tbBorderColor;\n }\n .pcfactory-table.pcfactory-table-bordered>.pcfactory-table-container>.pcfactory-table-summary>table>tfoot>tr>td{\n border-color: tbBorderColor;\n }\n .pcfactory-table.pcfactory-table-bordered>.pcfactory-table-container>.pcfactory-table-summary>table>tfoot>tr>th{\n border-color: tbBorderColor;\n }\n .pcfactory-table.pcfactory-table-bordered>.pcfactory-table-container>.pcfactory-table-summary>table>thead>tr>th{\n border-color: tbBorderColor;\n }\n .pcfactory-table.pcfactory-table-bordered>.pcfactory-table-container>.pcfactory-table-content>table>thead>tr>th{\n border-color: tbBorderColor;\n }\n .ued-table-filters .ued-table .pcfactory-table-thead>tr>th{\n border-color: tbBorderColor;\n }\n .ued-table .pcfactory-table-thead>tr>th{\n border-color: tbBorderColor;\n }\n .ued-table-filters .ued-table .pcfactory-table-tbody>tr>td{\n border-color: tbBorderColor;\n padding: bodyPadding;\n color: bodyTextColor;\n font-weight: bodyFontWeight;\n }\n .ued-table-filters .ued-table .pcfactory-table-tbody>tr>td:not(.pcfactory-table-selection-column){\n text-align: bodyTextAlign;\n }\n .ued-table .pcfactory-table-tbody>tr>td{\n border-color: tbBorderColor;\n padding: bodyPadding;\n color: bodyTextColor;\n font-weight: bodyFontWeight;\n }\n .ued-table .pcfactory-table-tbody>tr>td:not(.pcfactory-table-selection-column){\n text-align: bodyTextAlign;\n }\n .ued-table-filters .ued-table .pcfactory-table-bordered{\n border-color: tbBorderColor;\n }\n .ued-table .pcfactory-table-bordered{\n border-color: tbBorderColor;\n border-radius: tbBorderRadius;\n }\n .ued-table-filters .ued-table-page .pcfactory-pagination-item-active{\n background: selectPaginationColor;\n }\n .ued-table-page .pcfactory-pagination-item-active{\n background: selectPaginationColor;\n border-style: solid;\n border-width: 1px;\n }\n .ued-table-page .pcfactory-pagination-item{\n border-radius: selectPaginationRadius;\n border-color: selectPaginationBorder;\n }\n .ued-table-page .pcfactory-pagination-item-link{\n border-radius: selectPaginationRadius;\n border-color: selectPaginationBorder;\n }\n .ued-table-page .pcfactory-pagination-options .pcfactory-select .pcfactory-select-selector{\n border-radius: selectPaginationRadius;\n border-color: selectPaginationBorder;\n }\n .ued-table-page .pcfactory-pagination-options .pcfactory-pagination-options-quick-jumper input{\n border-radius: selectPaginationRadius;\n border-color: selectPaginationBorder;\n }\n .ued-table-filters .ued-table-zebra-stripe .pcfactory-table-row:nth-child(2n){\n background: zebraBgColor;\n }\n .ued-table-zebra-stripe .pcfactory-table-row:nth-child(2n){\n background: zebraBgColor;\n }\n}",
261
+ components: [{
262
+ id: 'Table_2740384',
263
+ label: '表格',
264
+ compName: 'Table',
265
+ type: 'Table',
266
+ compType: 3,
267
+ compLib: 'comm',
268
+ props: {
269
+ name: '表格',
270
+ isFlexColumn: false,
271
+ extendNum: 3,
272
+ adjustModel: 'auto',
273
+ pageSize: 5,
274
+ current: 1,
275
+ tableTitle: '分割线表格',
276
+ headBtnNum: 3,
277
+ showCustom: {
278
+ iconPosition: 'left',
279
+ customTitle: '自定义列',
280
+ customStyle: 'default',
281
+ hasCustom: false
282
+ },
283
+ columns: [{
284
+ title: '商品名称',
285
+ dataIndex: 'name',
286
+ key: 'column1',
287
+ className: '',
288
+ id: '119445'
289
+ }, {
290
+ title: '编码',
291
+ dataIndex: 'code',
292
+ key: 'column2',
293
+ className: 'divider',
294
+ id: '241842'
295
+ }, {
296
+ title: '状态',
297
+ dataIndex: 'statusText',
298
+ key: 'column3',
299
+ className: 'divider',
300
+ id: '299707'
301
+ }, {
302
+ title: '销售金额(元)',
303
+ dataIndex: 'sales',
304
+ key: 'column4',
305
+ className: 'divider',
306
+ id: '7973874'
307
+ }],
308
+ page: true,
309
+ rowKeyType: 'specified',
310
+ editMode: 'single',
311
+ bordered: false,
312
+ size: 'default',
313
+ fixedAction: false,
314
+ rowSelection: 'checkbox',
315
+ showHead: true,
316
+ showTotal: true,
317
+ showSizeChanger: true,
318
+ showQuickJumper: true,
319
+ pageSizeOptions: '[5,10,20]',
320
+ customNum: 3,
321
+ rowKey: 'id',
322
+ rowActions: [],
323
+ extend: [],
324
+ dataSource: "$[{\t'id': 1,\t'name': '王女士-月嫂服务订单',\t'code': '24475411512',\t'statusText': '服务成功',\t'status': 'success',\t'sales': '18779.70'}, {\t'id': 2,\t'name': '李女士-开荒保洁套餐',\t'code': '4443503045',\t'statusText': '服务延期',\t'status': 'warning',\t'sales': '1452.79'}, {\t'id': 3,\t'name': '陈先生-油烟机清洗服务',\t'code': '4443503045',\t'statusText': '服务终止',\t'status': 'fail',\t'sales': '142.86'}, {\t'id': 4,\t'name': '陈先生-窗户保洁服务',\t'code': '4443503045',\t'statusText': '待服务',\t'status': 'normal',\t'sales': '560.00'}, {\t'id': 5,\t'name': '秦女士-月嫂服务订单',\t'code': '4443503045',\t'statusText': '服务终止',\t'status': 'fail',\t'sales': '16779.70'}, {\t'id': 6,\t'name': '王先生-油烟机安装服务',\t'code': '4443503045',\t'statusText': '订单取消',\t'status': 'waiting',\t'sales': ''}, ]$",
325
+ basicStatus: 1,
326
+ headExtends: []
327
+ },
328
+ style: {
329
+ margin: '0px 0px 0px 0px'
330
+ },
331
+ isContainer: false,
332
+ isBusiObjContainer: true,
333
+ cmdgroup: ['basic'],
334
+ platform: 'pc',
335
+ icon: 'Table',
336
+ description: '',
337
+ image: '',
338
+ groupsName: '数据展示',
339
+ setEvents: [],
340
+ isLabelDropBoxChild: false,
341
+ functors: {
342
+ dataSource: {
343
+ title: "$[{\t'id': 1,\t'name': '王女士-月嫂服务订单',\t'code': '24475411512',\t'statusText': '服务成功',\t'status': 'success',\t'sales': '18779.70'}, {\t'id': 2,\t'name': '李女士-开荒保洁套餐',\t'code': '4443503045',\t'statusText': '服务延期',\t'status': 'warning',\t'sales': '1452.79'}, {\t'id': 3,\t'name': '陈先生-油烟机清洗服务',\t'code': '4443503045',\t'statusText': '服务终止',\t'status': 'fail',\t'sales': '142.86'}, {\t'id': 4,\t'name': '陈先生-窗户保洁服务',\t'code': '4443503045',\t'statusText': '待服务',\t'status': 'normal',\t'sales': '560.00'}, {\t'id': 5,\t'name': '秦女士-月嫂服务订单',\t'code': '4443503045',\t'statusText': '服务终止',\t'status': 'fail',\t'sales': '16779.70'}, {\t'id': 6,\t'name': '王先生-油烟机安装服务',\t'code': '4443503045',\t'statusText': '订单取消',\t'status': 'waiting',\t'sales': ''}, ]$",
344
+ value: "$[{ 'id': 1, 'name': '王女士-月嫂服务订单', 'code': '24475411512', 'statusText': '服务成功', 'status': 'success', 'sales': '18779.70'}, { 'id': 2, 'name': '李女士-开荒保洁套餐', 'code': '4443503045', 'statusText': '服务延期', 'status': 'warning', 'sales': '1452.79'}, { 'id': 3, 'name': '陈先生-油烟机清洗服务', 'code': '4443503045', 'statusText': '服务终止', 'status': 'fail', 'sales': '142.86'}, { 'id': 4, 'name': '陈先生-窗户保洁服务', 'code': '4443503045', 'statusText': '待服务', 'status': 'normal', 'sales': '560.00'}, { 'id': 5, 'name': '秦女士-月嫂服务订单', 'code': '4443503045', 'statusText': '服务终止', 'status': 'fail', 'sales': '16779.70'}, { 'id': 6, 'name': '王先生-油烟机安装服务', 'code': '4443503045', 'statusText': '订单取消', 'status': 'waiting', 'sales': ''}];$",
345
+ dependOtherIds: []
346
+ }
347
+ },
348
+ components: [],
349
+ path: ['3602564', 'View_3602564_1', 'Card_88389153']
350
+ }, {
351
+ id: 'Table_2740384',
352
+ label: '表格',
353
+ compName: 'Table',
354
+ type: 'Table',
355
+ compType: 3,
356
+ compLib: 'comm',
357
+ props: {
358
+ name: '表格',
359
+ isFlexColumn: false,
360
+ extendNum: 3,
361
+ adjustModel: 'auto',
362
+ pageSize: 5,
363
+ current: 1,
364
+ tableTitle: '斑马纹表格',
365
+ headBtnNum: 3,
366
+ showCustom: {
367
+ iconPosition: 'left',
368
+ customTitle: '自定义列',
369
+ customStyle: 'default',
370
+ hasCustom: false
371
+ },
372
+ columns: [{
373
+ title: '商品名称',
374
+ dataIndex: 'name',
375
+ key: 'column1',
376
+ className: '',
377
+ id: '119445'
378
+ }, {
379
+ title: '编码',
380
+ dataIndex: 'code',
381
+ key: 'column2',
382
+ className: 'divider',
383
+ id: '241842'
384
+ }, {
385
+ title: '状态',
386
+ dataIndex: 'statusText',
387
+ key: 'column3',
388
+ className: 'divider',
389
+ id: '299707'
390
+ }, {
391
+ title: '销售金额(元)',
392
+ dataIndex: 'sales',
393
+ key: 'column4',
394
+ className: 'divider',
395
+ id: '7973874'
396
+ }],
397
+ page: true,
398
+ rowKeyType: 'specified',
399
+ editMode: 'single',
400
+ bordered: 'zebra',
401
+ size: 'default',
402
+ fixedAction: false,
403
+ rowSelection: 'checkbox',
404
+ showHead: true,
405
+ showTotal: true,
406
+ showSizeChanger: true,
407
+ showQuickJumper: true,
408
+ pageSizeOptions: '[5,10,20]',
409
+ customNum: 3,
410
+ rowKey: 'id',
411
+ rowActions: [],
412
+ extend: [],
413
+ dataSource: "$[{\t'id': 1,\t'name': '王女士-月嫂服务订单',\t'code': '24475411512',\t'statusText': '服务成功',\t'status': 'success',\t'sales': '18779.70'}, {\t'id': 2,\t'name': '李女士-开荒保洁套餐',\t'code': '4443503045',\t'statusText': '服务延期',\t'status': 'warning',\t'sales': '1452.79'}, {\t'id': 3,\t'name': '陈先生-油烟机清洗服务',\t'code': '4443503045',\t'statusText': '服务终止',\t'status': 'fail',\t'sales': '142.86'}, {\t'id': 4,\t'name': '陈先生-窗户保洁服务',\t'code': '4443503045',\t'statusText': '待服务',\t'status': 'normal',\t'sales': '560.00'}, {\t'id': 5,\t'name': '秦女士-月嫂服务订单',\t'code': '4443503045',\t'statusText': '服务终止',\t'status': 'fail',\t'sales': '16779.70'}, {\t'id': 6,\t'name': '王先生-油烟机安装服务',\t'code': '4443503045',\t'statusText': '订单取消',\t'status': 'waiting',\t'sales': ''}, ]$",
414
+ basicStatus: 1,
415
+ headExtends: []
416
+ },
417
+ style: {
418
+ margin: '0px 0px 0px 0px'
419
+ },
420
+ isContainer: false,
421
+ isBusiObjContainer: true,
422
+ cmdgroup: ['basic'],
423
+ platform: 'pc',
424
+ icon: 'Table',
425
+ description: '',
426
+ image: '',
427
+ groupsName: '数据展示',
428
+ setEvents: [],
429
+ isLabelDropBoxChild: false,
430
+ functors: {
431
+ dataSource: {
432
+ title: "$[{\t'id': 1,\t'name': '王女士-月嫂服务订单',\t'code': '24475411512',\t'statusText': '服务成功',\t'status': 'success',\t'sales': '18779.70'}, {\t'id': 2,\t'name': '李女士-开荒保洁套餐',\t'code': '4443503045',\t'statusText': '服务延期',\t'status': 'warning',\t'sales': '1452.79'}, {\t'id': 3,\t'name': '陈先生-油烟机清洗服务',\t'code': '4443503045',\t'statusText': '服务终止',\t'status': 'fail',\t'sales': '142.86'}, {\t'id': 4,\t'name': '陈先生-窗户保洁服务',\t'code': '4443503045',\t'statusText': '待服务',\t'status': 'normal',\t'sales': '560.00'}, {\t'id': 5,\t'name': '秦女士-月嫂服务订单',\t'code': '4443503045',\t'statusText': '服务终止',\t'status': 'fail',\t'sales': '16779.70'}, {\t'id': 6,\t'name': '王先生-油烟机安装服务',\t'code': '4443503045',\t'statusText': '订单取消',\t'status': 'waiting',\t'sales': ''}, ]$",
433
+ value: "$[{ 'id': 1, 'name': '王女士-月嫂服务订单', 'code': '24475411512', 'statusText': '服务成功', 'status': 'success', 'sales': '18779.70'}, { 'id': 2, 'name': '李女士-开荒保洁套餐', 'code': '4443503045', 'statusText': '服务延期', 'status': 'warning', 'sales': '1452.79'}, { 'id': 3, 'name': '陈先生-油烟机清洗服务', 'code': '4443503045', 'statusText': '服务终止', 'status': 'fail', 'sales': '142.86'}, { 'id': 4, 'name': '陈先生-窗户保洁服务', 'code': '4443503045', 'statusText': '待服务', 'status': 'normal', 'sales': '560.00'}, { 'id': 5, 'name': '秦女士-月嫂服务订单', 'code': '4443503045', 'statusText': '服务终止', 'status': 'fail', 'sales': '16779.70'}, { 'id': 6, 'name': '王先生-油烟机安装服务', 'code': '4443503045', 'statusText': '订单取消', 'status': 'waiting', 'sales': ''}];$",
434
+ dependOtherIds: []
435
+ }
436
+ },
437
+ components: [],
438
+ path: ['3602564', 'View_3602564_1', 'Card_88389153']
439
+ }, {
440
+ id: 'Table_2740384',
441
+ label: '表格',
442
+ compName: 'Table',
443
+ type: 'Table',
444
+ compType: 3,
445
+ compLib: 'comm',
446
+ props: {
447
+ name: '表格',
448
+ isFlexColumn: false,
449
+ extendNum: 3,
450
+ adjustModel: 'auto',
451
+ pageSize: 5,
452
+ current: 1,
453
+ tableTitle: '边框线表格',
454
+ headBtnNum: 3,
455
+ showCustom: {
456
+ iconPosition: 'left',
457
+ customTitle: '自定义列',
458
+ customStyle: 'default',
459
+ hasCustom: false
460
+ },
461
+ columns: [{
462
+ title: '商品名称',
463
+ dataIndex: 'name',
464
+ key: 'column1',
465
+ className: '',
466
+ id: '119445'
467
+ }, {
468
+ title: '编码',
469
+ dataIndex: 'code',
470
+ key: 'column2',
471
+ className: 'divider',
472
+ id: '241842'
473
+ }, {
474
+ title: '状态',
475
+ dataIndex: 'statusText',
476
+ key: 'column3',
477
+ className: 'divider',
478
+ id: '299707'
479
+ }, {
480
+ title: '销售金额(元)',
481
+ dataIndex: 'sales',
482
+ key: 'column4',
483
+ className: 'divider',
484
+ id: '7973874'
485
+ }],
486
+ page: true,
487
+ rowKeyType: 'specified',
488
+ editMode: 'single',
489
+ bordered: 'border',
490
+ size: 'default',
491
+ fixedAction: false,
492
+ rowSelection: 'checkbox',
493
+ showHead: true,
494
+ showTotal: true,
495
+ showSizeChanger: true,
496
+ showQuickJumper: true,
497
+ pageSizeOptions: '[5,10,20]',
498
+ customNum: 3,
499
+ rowKey: 'id',
500
+ rowActions: [],
501
+ extend: [],
502
+ dataSource: "$[{\t'id': 1,\t'name': '王女士-月嫂服务订单',\t'code': '24475411512',\t'statusText': '服务成功',\t'status': 'success',\t'sales': '18779.70'}, {\t'id': 2,\t'name': '李女士-开荒保洁套餐',\t'code': '4443503045',\t'statusText': '服务延期',\t'status': 'warning',\t'sales': '1452.79'}, {\t'id': 3,\t'name': '陈先生-油烟机清洗服务',\t'code': '4443503045',\t'statusText': '服务终止',\t'status': 'fail',\t'sales': '142.86'}, {\t'id': 4,\t'name': '陈先生-窗户保洁服务',\t'code': '4443503045',\t'statusText': '待服务',\t'status': 'normal',\t'sales': '560.00'}, {\t'id': 5,\t'name': '秦女士-月嫂服务订单',\t'code': '4443503045',\t'statusText': '服务终止',\t'status': 'fail',\t'sales': '16779.70'}, {\t'id': 6,\t'name': '王先生-油烟机安装服务',\t'code': '4443503045',\t'statusText': '订单取消',\t'status': 'waiting',\t'sales': ''}, ]$",
503
+ basicStatus: 1,
504
+ headExtends: []
505
+ },
506
+ style: {},
507
+ isContainer: false,
508
+ isBusiObjContainer: true,
509
+ cmdgroup: ['basic'],
510
+ platform: 'pc',
511
+ icon: 'Table',
512
+ description: '',
513
+ image: '',
514
+ groupsName: '数据展示',
515
+ setEvents: [],
516
+ isLabelDropBoxChild: false,
517
+ functors: {
518
+ dataSource: {
519
+ title: "$[{\t'id': 1,\t'name': '王女士-月嫂服务订单',\t'code': '24475411512',\t'statusText': '服务成功',\t'status': 'success',\t'sales': '18779.70'}, {\t'id': 2,\t'name': '李女士-开荒保洁套餐',\t'code': '4443503045',\t'statusText': '服务延期',\t'status': 'warning',\t'sales': '1452.79'}, {\t'id': 3,\t'name': '陈先生-油烟机清洗服务',\t'code': '4443503045',\t'statusText': '服务终止',\t'status': 'fail',\t'sales': '142.86'}, {\t'id': 4,\t'name': '陈先生-窗户保洁服务',\t'code': '4443503045',\t'statusText': '待服务',\t'status': 'normal',\t'sales': '560.00'}, {\t'id': 5,\t'name': '秦女士-月嫂服务订单',\t'code': '4443503045',\t'statusText': '服务终止',\t'status': 'fail',\t'sales': '16779.70'}, {\t'id': 6,\t'name': '王先生-油烟机安装服务',\t'code': '4443503045',\t'statusText': '订单取消',\t'status': 'waiting',\t'sales': ''}, ]$",
520
+ value: "$[{ 'id': 1, 'name': '王女士-月嫂服务订单', 'code': '24475411512', 'statusText': '服务成功', 'status': 'success', 'sales': '18779.70'}, { 'id': 2, 'name': '李女士-开荒保洁套餐', 'code': '4443503045', 'statusText': '服务延期', 'status': 'warning', 'sales': '1452.79'}, { 'id': 3, 'name': '陈先生-油烟机清洗服务', 'code': '4443503045', 'statusText': '服务终止', 'status': 'fail', 'sales': '142.86'}, { 'id': 4, 'name': '陈先生-窗户保洁服务', 'code': '4443503045', 'statusText': '待服务', 'status': 'normal', 'sales': '560.00'}, { 'id': 5, 'name': '秦女士-月嫂服务订单', 'code': '4443503045', 'statusText': '服务终止', 'status': 'fail', 'sales': '16779.70'}, { 'id': 6, 'name': '王先生-油烟机安装服务', 'code': '4443503045', 'statusText': '订单取消', 'status': 'waiting', 'sales': ''}];$",
521
+ dependOtherIds: []
522
+ }
523
+ },
524
+ components: [],
525
+ path: ['3602564', 'View_3602564_1', 'Card_88389153']
526
+ }, {
527
+ id: 'View_519882',
528
+ label: '普通容器',
529
+ compName: 'View',
530
+ type: 'View',
531
+ compType: 0,
532
+ compLib: 'custom',
533
+ props: {
534
+ name: '普通容器1',
535
+ basicStatus: 1
536
+ },
537
+ style: {
538
+ textAlign: 'left',
539
+ display: 'block',
540
+ flexDirection: 'column',
541
+ padding: '0px 0px 0px 0px',
542
+ width: '100%',
543
+ backgroundColor: '#FFFFFF',
544
+ height: '150px'
545
+ },
546
+ isContainer: true,
547
+ isBusiObjContainer: false,
548
+ cmdgroup: ['basic'],
549
+ platform: 'pc',
550
+ icon: 'View',
551
+ description: '',
552
+ image: '',
553
+ groupsName: '布局',
554
+ engineApi: ['service.downloadFileByFileCode'],
555
+ setEvents: [],
556
+ isLabelDropBoxChild: false,
557
+ components: [],
558
+ path: ['998509']
559
+ }]
560
+ };