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