@teamias/rex-design 0.0.1

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 (134) hide show
  1. package/LICENSE +21 -0
  2. package/README.md +43 -0
  3. package/dist/components/action-buttons/action-buttons.d.ts +2 -0
  4. package/dist/components/action-buttons/action-buttons.js +182 -0
  5. package/dist/components/action-buttons/demo/index.d.ts +2 -0
  6. package/dist/components/action-buttons/demo/index.js +69 -0
  7. package/dist/components/action-buttons/index.d.ts +3 -0
  8. package/dist/components/action-buttons/index.js +3 -0
  9. package/dist/components/action-buttons/modules/handlerFilter.d.ts +2 -0
  10. package/dist/components/action-buttons/modules/handlerFilter.js +62 -0
  11. package/dist/components/action-buttons/types.d.ts +96 -0
  12. package/dist/components/action-buttons/types.js +3 -0
  13. package/dist/components/base-form/base-form.d.ts +3 -0
  14. package/dist/components/base-form/base-form.js +260 -0
  15. package/dist/components/base-form/demo/index.d.ts +4 -0
  16. package/dist/components/base-form/demo/index.js +515 -0
  17. package/dist/components/base-form/index.d.ts +4 -0
  18. package/dist/components/base-form/index.js +4 -0
  19. package/dist/components/base-form/locales/en-US.json +21 -0
  20. package/dist/components/base-form/locales/zh-CN.json +21 -0
  21. package/dist/components/base-form/locales.index.d.ts +42 -0
  22. package/dist/components/base-form/locales.index.js +4 -0
  23. package/dist/components/base-form/modules/dependencyUtils.d.ts +13 -0
  24. package/dist/components/base-form/modules/dependencyUtils.js +43 -0
  25. package/dist/components/base-form/modules/handlerData.d.ts +8 -0
  26. package/dist/components/base-form/modules/handlerData.js +59 -0
  27. package/dist/components/base-form/modules/renderComponentNode.d.ts +11 -0
  28. package/dist/components/base-form/modules/renderComponentNode.js +607 -0
  29. package/dist/components/base-form/modules/valuesToFields.d.ts +10 -0
  30. package/dist/components/base-form/modules/valuesToFields.js +18 -0
  31. package/dist/components/base-form/style/index.d.ts +3 -0
  32. package/dist/components/base-form/style/index.js +8 -0
  33. package/dist/components/base-form/types.d.ts +181 -0
  34. package/dist/components/base-form/types.js +10 -0
  35. package/dist/components/base-list-table/base-list-table.d.ts +33 -0
  36. package/dist/components/base-list-table/base-list-table.js +292 -0
  37. package/dist/components/base-list-table/demo/BasicBaseListTable.d.ts +2 -0
  38. package/dist/components/base-list-table/demo/BasicBaseListTable.js +1469 -0
  39. package/dist/components/base-list-table/demo/NoData.d.ts +2 -0
  40. package/dist/components/base-list-table/demo/NoData.js +55 -0
  41. package/dist/components/base-list-table/demo/TableMaxRowCount.d.ts +2 -0
  42. package/dist/components/base-list-table/demo/TableMaxRowCount.js +1696 -0
  43. package/dist/components/base-list-table/demo/VirtualDemo.d.ts +2 -0
  44. package/dist/components/base-list-table/demo/VirtualDemo.js +548 -0
  45. package/dist/components/base-list-table/index.d.ts +1 -0
  46. package/dist/components/base-list-table/index.js +1 -0
  47. package/dist/components/base-list-table/style/index.d.ts +5 -0
  48. package/dist/components/base-list-table/style/index.js +17 -0
  49. package/dist/components/base-table/base-table.d.ts +51 -0
  50. package/dist/components/base-table/base-table.js +291 -0
  51. package/dist/components/base-table/components/BaseTableRow.d.ts +1 -0
  52. package/dist/components/base-table/components/BaseTableRow.js +129 -0
  53. package/dist/components/base-table/demo/BaseTableAll.d.ts +2 -0
  54. package/dist/components/base-table/demo/BaseTableAll.js +66 -0
  55. package/dist/components/base-table/demo/BaseTableBasic.d.ts +2 -0
  56. package/dist/components/base-table/demo/BaseTableBasic.js +58 -0
  57. package/dist/components/base-table/demo/BaseTableIndex.d.ts +2 -0
  58. package/dist/components/base-table/demo/BaseTableIndex.js +57 -0
  59. package/dist/components/base-table/demo/BaseTableRowSelect.d.ts +2 -0
  60. package/dist/components/base-table/demo/BaseTableRowSelect.js +45 -0
  61. package/dist/components/base-table/demo/tableData.d.ts +332 -0
  62. package/dist/components/base-table/demo/tableData.js +293 -0
  63. package/dist/components/base-table/index.d.ts +1 -0
  64. package/dist/components/base-table/index.js +1 -0
  65. package/dist/components/base-table/style/index.d.ts +3 -0
  66. package/dist/components/base-table/style/index.js +9 -0
  67. package/dist/components/data-cell/data-cell.d.ts +3 -0
  68. package/dist/components/data-cell/data-cell.js +17 -0
  69. package/dist/components/data-cell/demo/index.d.ts +2 -0
  70. package/dist/components/data-cell/demo/index.js +332 -0
  71. package/dist/components/data-cell/index.d.ts +2 -0
  72. package/dist/components/data-cell/index.js +2 -0
  73. package/dist/components/data-cell/modules/cellItemMap.d.ts +3 -0
  74. package/dist/components/data-cell/modules/cellItemMap.js +374 -0
  75. package/dist/components/data-cell/style/index.d.ts +7 -0
  76. package/dist/components/data-cell/style/index.js +23 -0
  77. package/dist/components/data-cell/types.d.ts +192 -0
  78. package/dist/components/data-cell/types.js +1 -0
  79. package/dist/components/icons/assets/icon-park--arrow-up.svg +7 -0
  80. package/dist/components/icons/assets/index.d.ts +4 -0
  81. package/dist/components/icons/assets/index.js +9 -0
  82. package/dist/components/icons/assets/svg-spinners--blocks-shuffle-3.svg +21 -0
  83. package/dist/components/icons/demo/index.d.ts +2 -0
  84. package/dist/components/icons/demo/index.js +43 -0
  85. package/dist/components/icons/icons.d.ts +39 -0
  86. package/dist/components/icons/icons.js +251 -0
  87. package/dist/components/icons/index.d.ts +1 -0
  88. package/dist/components/icons/index.js +1 -0
  89. package/dist/components/icons/style/index.d.ts +2 -0
  90. package/dist/components/icons/style/index.js +5 -0
  91. package/dist/components/media-viewer/demo/index.d.ts +2 -0
  92. package/dist/components/media-viewer/demo/index.js +23 -0
  93. package/dist/components/media-viewer/index.d.ts +1 -0
  94. package/dist/components/media-viewer/index.js +1 -0
  95. package/dist/components/media-viewer/media-viewer.d.ts +48 -0
  96. package/dist/components/media-viewer/media-viewer.js +119 -0
  97. package/dist/components/media-viewer/style/index.d.ts +6 -0
  98. package/dist/components/media-viewer/style/index.js +31 -0
  99. package/dist/hooks/request-fields-container/demo/index.d.ts +2 -0
  100. package/dist/hooks/request-fields-container/demo/index.js +36 -0
  101. package/dist/hooks/request-fields-container/index.d.ts +4 -0
  102. package/dist/hooks/request-fields-container/index.js +3 -0
  103. package/dist/hooks/request-fields-container/request-fields-container-context-provider.d.ts +22 -0
  104. package/dist/hooks/request-fields-container/request-fields-container-context-provider.js +134 -0
  105. package/dist/hooks/request-fields-container/request-fields-container-context.d.ts +39 -0
  106. package/dist/hooks/request-fields-container/request-fields-container-context.js +5 -0
  107. package/dist/hooks/request-fields-container/request-fields-container-hoc.d.ts +4 -0
  108. package/dist/hooks/request-fields-container/request-fields-container-hoc.js +31 -0
  109. package/dist/hooks/request-fields-container/use-request-fields-container.d.ts +22 -0
  110. package/dist/hooks/request-fields-container/use-request-fields-container.js +131 -0
  111. package/dist/hooks/rex-pro-config-provider/demo/index.d.ts +2 -0
  112. package/dist/hooks/rex-pro-config-provider/demo/index.js +61 -0
  113. package/dist/hooks/rex-pro-config-provider/index.d.ts +2 -0
  114. package/dist/hooks/rex-pro-config-provider/index.js +2 -0
  115. package/dist/hooks/rex-pro-config-provider/rex-pro-config-context.d.ts +27 -0
  116. package/dist/hooks/rex-pro-config-provider/rex-pro-config-context.js +33 -0
  117. package/dist/hooks/rex-pro-config-provider/rex-pro-config-provider.d.ts +6 -0
  118. package/dist/hooks/rex-pro-config-provider/rex-pro-config-provider.js +24 -0
  119. package/dist/hooks/rex-pro-config-provider/use-rex-pro-config-provider.d.ts +2 -0
  120. package/dist/hooks/rex-pro-config-provider/use-rex-pro-config-provider.js +11 -0
  121. package/dist/hooks/use-state-data/demo/index.d.ts +2 -0
  122. package/dist/hooks/use-state-data/demo/index.js +135 -0
  123. package/dist/hooks/use-state-data/index.d.ts +1 -0
  124. package/dist/hooks/use-state-data/index.js +1 -0
  125. package/dist/hooks/use-state-data/use-state-data.d.ts +11 -0
  126. package/dist/hooks/use-state-data/use-state-data.js +64 -0
  127. package/dist/index.d.ts +10 -0
  128. package/dist/index.js +10 -0
  129. package/dist/types/svg.d.ts +4 -0
  130. package/dist/utils/locales/en-US.json +13 -0
  131. package/dist/utils/locales/index.d.ts +26 -0
  132. package/dist/utils/locales/index.js +4 -0
  133. package/dist/utils/locales/zh-CN.json +13 -0
  134. package/package.json +90 -0
@@ -0,0 +1,1469 @@
1
+ import React from 'react';
2
+ import { BaseListTable } from "../base-list-table";
3
+ export default (function () {
4
+ return /*#__PURE__*/React.createElement(BaseListTable, {
5
+ defaultExpandAllCollapse: true
6
+ // rowSelection={{
7
+ // getCheckboxProps (record) {
8
+ // return {
9
+ // disabled: record.key === 'parent_1075',
10
+ // };
11
+ // },
12
+ // }}
13
+ // scroll={(h) => ({y: h})}
14
+ // virtual
15
+ ,
16
+ headerRender: function headerRender(originNode) {
17
+ return /*#__PURE__*/React.createElement(React.Fragment, null, originNode, /*#__PURE__*/React.createElement("span", {
18
+ style: {
19
+ color: 'red'
20
+ }
21
+ }, "\u81EA\u5B9A\u4E49\u5185\u5BB9"));
22
+ },
23
+ titleRender: function titleRender(item, index, originNode) {
24
+ return /*#__PURE__*/React.createElement(React.Fragment, null, originNode.checkboxNode, originNode.dataNode, /*#__PURE__*/React.createElement("span", {
25
+ style: {
26
+ flex: 1,
27
+ textAlign: 'right',
28
+ color: 'red'
29
+ }
30
+ }, "\u81EA\u5B9A\u4E49\u5185\u5BB9"));
31
+ },
32
+ fieldsConfig: [{
33
+ "title": "编号/状态",
34
+ "dataIndex": "status_name",
35
+ "key": "status_name"
36
+ }, {
37
+ "title": "SPU/组合SKU",
38
+ "dataIndex": "goods_spu_info",
39
+ "key": "goods_spu_info"
40
+ }, {
41
+ "title": "图片",
42
+ "dataIndex": "goods_image",
43
+ "key": "goods_image",
44
+ "align": 'center'
45
+ }, {
46
+ "title": "SKU/属性",
47
+ "dataIndex": "goods_sku_info",
48
+ "key": "goods_sku_info"
49
+ }, {
50
+ "title": "计划员",
51
+ "dataIndex": "planuser",
52
+ "key": "planuser"
53
+ }, {
54
+ "title": "供应商",
55
+ "dataIndex": "factory",
56
+ "key": "factory"
57
+ }, {
58
+ "title": "ASIN",
59
+ "dataIndex": "asin",
60
+ "key": "asin"
61
+ }, {
62
+ "title": "销量",
63
+ "dataIndex": "goods_sales",
64
+ "key": "goods_sales"
65
+ }, {
66
+ "title": "DMS",
67
+ "dataIndex": "goods_dms",
68
+ "key": "goods_dms"
69
+ }, {
70
+ "title": "毛利率",
71
+ "dataIndex": "gross_margin",
72
+ "key": "gross_margin"
73
+ }, {
74
+ "title": "售后率",
75
+ "dataIndex": "goods_rma",
76
+ "key": "goods_rma"
77
+ }],
78
+ dataSource: [{
79
+ "key": "parent_1075",
80
+ "id": [{
81
+ "type": "text",
82
+ "props": {
83
+ "value": 1075,
84
+ "width": 200
85
+ },
86
+ "extra": {
87
+ "colSpan": 28
88
+ }
89
+ }],
90
+ "store_name": [{
91
+ "type": "text",
92
+ "props": {
93
+ "label": "目的仓",
94
+ "value": "国内备货仓",
95
+ "width": 200
96
+ }
97
+ }],
98
+ "planuser": [{
99
+ "type": "text",
100
+ "props": {
101
+ "label": "计划员",
102
+ "value": "",
103
+ "width": 200
104
+ }
105
+ }],
106
+ "label": [{
107
+ "type": "tag",
108
+ "props": {
109
+ "value": "加工"
110
+ }
111
+ }],
112
+ children: [{
113
+ "key": "1075_1102",
114
+ "id": 1075,
115
+ "detail_id": 1102,
116
+ "status_name": [{
117
+ "type": "text",
118
+ "props": {
119
+ "value": 1075
120
+ },
121
+ "extra": {
122
+ "rowSpan": 2
123
+ }
124
+ }, {
125
+ "type": "tag",
126
+ "props": {
127
+ "value": "待处理"
128
+ }
129
+ }],
130
+ "goods_spu_info": [{
131
+ "type": "text",
132
+ "props": {
133
+ "label": "SPU",
134
+ "value": {
135
+ "type": "link",
136
+ "props": {
137
+ "label": "CO576911",
138
+ "value": "/"
139
+ }
140
+ }
141
+ },
142
+ "extra": {
143
+ "rowSpan": 2
144
+ }
145
+ }, {
146
+ "type": "text",
147
+ "props": {
148
+ "label": "品名",
149
+ "value": "跨境新款车载垃圾桶带盖多功能车家两用置物收纳桶迷你汽车垃圾桶"
150
+ }
151
+ }, {
152
+ "type": "text",
153
+ "props": {
154
+ "label": "买手",
155
+ "value": ""
156
+ }
157
+ }],
158
+ "store_name": [{
159
+ "type": "text",
160
+ "props": {
161
+ "value": "国内备货仓"
162
+ }
163
+ }],
164
+ "goods_image": [{
165
+ "type": "img",
166
+ "props": {
167
+ "value": "http://image.spocoo.com/881a5f295d399a1bfab9cd9a03173801.jpg"
168
+ }
169
+ }],
170
+ "goods_sku_info": [{
171
+ "type": "link",
172
+ "props": {
173
+ "label": "CO576911_01",
174
+ "value": "/"
175
+ }
176
+ }, {
177
+ "type": "text",
178
+ "props": {
179
+ "value": "跨境新款车载垃圾桶带盖多功能车家两用置物收纳桶迷你汽车垃圾桶 黑色"
180
+ }
181
+ }, {
182
+ "type": "tag",
183
+ "props": {
184
+ "value": "加",
185
+ "color": "red"
186
+ }
187
+ }],
188
+ "planuser": [{
189
+ "type": "text",
190
+ "props": {
191
+ "value": ""
192
+ }
193
+ }],
194
+ "factory": [{
195
+ "type": "link",
196
+ "props": {
197
+ "label": "CO576911_01",
198
+ "value": "/"
199
+ }
200
+ }],
201
+ "asin": [{
202
+ "type": "text",
203
+ "props": {
204
+ "value": "0 / 0"
205
+ }
206
+ }],
207
+ "goods_sales": [{
208
+ "type": "text",
209
+ "props": {
210
+ "value": "0 / 0 / 0 / / "
211
+ }
212
+ }],
213
+ "goods_dms": [{
214
+ "type": "text",
215
+ "props": {
216
+ "value": "0 / 0"
217
+ }
218
+ }],
219
+ "gross_margin": [{
220
+ "type": "text",
221
+ "props": {
222
+ "value": "0 / 0 / 0 / 0 / 0"
223
+ }
224
+ }],
225
+ "goods_rma": [{
226
+ "type": "text",
227
+ "props": {
228
+ "value": "0 / 0 / 0 / 0 / 0"
229
+ }
230
+ }],
231
+ "goods_stock": [{
232
+ "type": "text",
233
+ "props": {
234
+ "value": 0
235
+ }
236
+ }],
237
+ "usable_stock": [{
238
+ "type": "text",
239
+ "props": {
240
+ "value": 0
241
+ }
242
+ }],
243
+ "having_stock": [{
244
+ "type": "text",
245
+ "props": {
246
+ "value": 0
247
+ }
248
+ }],
249
+ "unsellable_stock": [{
250
+ "type": "text",
251
+ "props": {
252
+ "value": 0
253
+ }
254
+ }],
255
+ "plan_quantity": [{
256
+ "type": "text",
257
+ "props": {
258
+ "value": 0
259
+ }
260
+ }],
261
+ "process_ing_quantity": [{
262
+ "type": "text",
263
+ "props": {
264
+ "value": 0
265
+ }
266
+ }],
267
+ "ship_wait_quantity": [{
268
+ "type": "text",
269
+ "props": {
270
+ "value": 0
271
+ }
272
+ }],
273
+ "shiping_num": [{
274
+ "type": "text",
275
+ "props": {
276
+ "value": 0
277
+ }
278
+ }],
279
+ "overseas_stock": [{
280
+ "type": "text",
281
+ "props": {
282
+ "value": 0
283
+ }
284
+ }],
285
+ "shiped_error_quantity": [{
286
+ "type": "text",
287
+ "props": {
288
+ "value": 0
289
+ }
290
+ }],
291
+ "time_info": [{
292
+ "type": "text",
293
+ "props": {
294
+ "value": "1970-01-01 08:00:00(黄盛)"
295
+ }
296
+ }, {
297
+ "type": "text",
298
+ "props": {
299
+ "value": "2025-03-12 15:54:26(黄盛)"
300
+ }
301
+ }],
302
+ "p_remark": [{
303
+ "type": "text",
304
+ "props": {
305
+ "value": ""
306
+ }
307
+ }],
308
+ "quantity": [{
309
+ "type": "text",
310
+ "props": {
311
+ "value": 0
312
+ }
313
+ }],
314
+ "quantity_modify": [{
315
+ "type": "text",
316
+ "props": {
317
+ "value": 103
318
+ }
319
+ }],
320
+ "bom_data": [{
321
+ "type": "text",
322
+ "props": {
323
+ "value": "0 / 0"
324
+ }
325
+ }]
326
+ }, {
327
+ "key": "1075_1103",
328
+ "id": 1075,
329
+ "detail_id": 1103,
330
+ "status_name": [{
331
+ "type": "text",
332
+ "props": {
333
+ "value": ""
334
+ },
335
+ "extra": {
336
+ "rowSpan": -1
337
+ }
338
+ }, {
339
+ "type": "tag",
340
+ "props": {
341
+ "value": ""
342
+ }
343
+ }],
344
+ "goods_spu_info": [{
345
+ "type": "text",
346
+ "props": {
347
+ "label": "SPU",
348
+ "value": {
349
+ "type": "link",
350
+ "props": {
351
+ "label": "",
352
+ "value": "/"
353
+ }
354
+ }
355
+ },
356
+ "extra": {
357
+ "rowSpan": -1
358
+ }
359
+ }, {
360
+ "type": "text",
361
+ "props": {
362
+ "label": "品名",
363
+ "value": ""
364
+ }
365
+ }, {
366
+ "type": "text",
367
+ "props": {
368
+ "label": "买手",
369
+ "value": ""
370
+ }
371
+ }],
372
+ "store_name": [{
373
+ "type": "text",
374
+ "props": {
375
+ "value": "国内备货仓"
376
+ }
377
+ }],
378
+ "goods_image": [{
379
+ "type": "img",
380
+ "props": {
381
+ "value": "http://image.spocoo.com/ac88db91d513da3256a6e18dd60c11a8.jpg"
382
+ }
383
+ }],
384
+ "goods_sku_info": [{
385
+ "type": "link",
386
+ "props": {
387
+ "label": "CO576911_02",
388
+ "value": "/"
389
+ }
390
+ }, {
391
+ "type": "text",
392
+ "props": {
393
+ "value": "跨境新款车载垃圾桶带盖多功能车家两用置物收纳桶迷你汽车垃圾桶 粉色"
394
+ }
395
+ }, {
396
+ "type": "tag",
397
+ "props": {
398
+ "value": "加",
399
+ "color": "red"
400
+ }
401
+ }],
402
+ "planuser": [{
403
+ "type": "text",
404
+ "props": {
405
+ "value": ""
406
+ }
407
+ }],
408
+ "factory": [{
409
+ "type": "link",
410
+ "props": {
411
+ "label": "CO576911_02",
412
+ "value": "/"
413
+ }
414
+ }],
415
+ "asin": [{
416
+ "type": "text",
417
+ "props": {
418
+ "value": "0 / 0"
419
+ }
420
+ }],
421
+ "goods_sales": [{
422
+ "type": "text",
423
+ "props": {
424
+ "value": "0 / 0 / 0 / / "
425
+ }
426
+ }],
427
+ "goods_dms": [{
428
+ "type": "text",
429
+ "props": {
430
+ "value": "0 / 0"
431
+ }
432
+ }],
433
+ "gross_margin": [{
434
+ "type": "text",
435
+ "props": {
436
+ "value": "0 / 0 / 0 / 0 / 0"
437
+ }
438
+ }],
439
+ "goods_rma": [{
440
+ "type": "text",
441
+ "props": {
442
+ "value": "0 / 0 / 0 / 0 / 0"
443
+ }
444
+ }],
445
+ "goods_stock": [{
446
+ "type": "text",
447
+ "props": {
448
+ "value": 0
449
+ }
450
+ }],
451
+ "usable_stock": [{
452
+ "type": "text",
453
+ "props": {
454
+ "value": 0
455
+ }
456
+ }],
457
+ "having_stock": [{
458
+ "type": "text",
459
+ "props": {
460
+ "value": 0
461
+ }
462
+ }],
463
+ "unsellable_stock": [{
464
+ "type": "text",
465
+ "props": {
466
+ "value": 0
467
+ }
468
+ }],
469
+ "plan_quantity": [{
470
+ "type": "text",
471
+ "props": {
472
+ "value": 0
473
+ }
474
+ }],
475
+ "process_ing_quantity": [{
476
+ "type": "text",
477
+ "props": {
478
+ "value": 0
479
+ }
480
+ }],
481
+ "ship_wait_quantity": [{
482
+ "type": "text",
483
+ "props": {
484
+ "value": 0
485
+ }
486
+ }],
487
+ "shiping_num": [{
488
+ "type": "text",
489
+ "props": {
490
+ "value": 0
491
+ }
492
+ }],
493
+ "overseas_stock": [{
494
+ "type": "text",
495
+ "props": {
496
+ "value": 0
497
+ }
498
+ }],
499
+ "shiped_error_quantity": [{
500
+ "type": "text",
501
+ "props": {
502
+ "value": 0
503
+ }
504
+ }],
505
+ "time_info": [{
506
+ "type": "text",
507
+ "props": {
508
+ "value": "1970-01-01 08:00:00(黄盛)"
509
+ }
510
+ }, {
511
+ "type": "text",
512
+ "props": {
513
+ "value": "2025-03-12 15:54:26(黄盛)"
514
+ }
515
+ }],
516
+ "p_remark": [{
517
+ "type": "text",
518
+ "props": {
519
+ "value": ""
520
+ }
521
+ }],
522
+ "quantity": [{
523
+ "type": "text",
524
+ "props": {
525
+ "value": 0
526
+ }
527
+ }],
528
+ "quantity_modify": [{
529
+ "type": "text",
530
+ "props": {
531
+ "value": 102
532
+ }
533
+ }],
534
+ "bom_data": [{
535
+ "type": "text",
536
+ "props": {
537
+ "value": "0 / 0"
538
+ }
539
+ }]
540
+ }]
541
+ }, {
542
+ "key": "parent_1075_1",
543
+ "id": [{
544
+ "type": "text",
545
+ "props": {
546
+ "value": 1075,
547
+ "width": 200
548
+ },
549
+ "extra": {
550
+ "colSpan": 28
551
+ }
552
+ }],
553
+ "store_name": [{
554
+ "type": "text",
555
+ "props": {
556
+ "label": "目的仓",
557
+ "value": "国内备货仓",
558
+ "width": 200
559
+ }
560
+ }],
561
+ "planuser": [{
562
+ "type": "text",
563
+ "props": {
564
+ "label": "计划员",
565
+ "value": "",
566
+ "width": 200
567
+ }
568
+ }],
569
+ "label": [{
570
+ "type": "tag",
571
+ "props": {
572
+ "value": "加工"
573
+ }
574
+ }],
575
+ children: [{
576
+ "key": "1075_1102_1",
577
+ "id": 1075,
578
+ "detail_id": 1102,
579
+ "status_name": [{
580
+ "type": "text",
581
+ "props": {
582
+ "value": 1075
583
+ },
584
+ "extra": {
585
+ "rowSpan": 2
586
+ }
587
+ }, {
588
+ "type": "tag",
589
+ "props": {
590
+ "value": "待处理"
591
+ }
592
+ }],
593
+ "goods_spu_info": [{
594
+ "type": "text",
595
+ "props": {
596
+ "label": "SPU",
597
+ "value": {
598
+ "type": "link",
599
+ "props": {
600
+ "label": "CO576911",
601
+ "value": "/"
602
+ }
603
+ }
604
+ },
605
+ "extra": {
606
+ "rowSpan": 2
607
+ }
608
+ }, {
609
+ "type": "text",
610
+ "props": {
611
+ "label": "品名",
612
+ "value": "跨境新款车载垃圾桶带盖多功能车家两用置物收纳桶迷你汽车垃圾桶"
613
+ }
614
+ }, {
615
+ "type": "text",
616
+ "props": {
617
+ "label": "买手",
618
+ "value": ""
619
+ }
620
+ }],
621
+ "store_name": [{
622
+ "type": "text",
623
+ "props": {
624
+ "value": "国内备货仓"
625
+ }
626
+ }],
627
+ "goods_image": [{
628
+ "type": "img",
629
+ "props": {
630
+ "value": "http://image.spocoo.com/881a5f295d399a1bfab9cd9a03173801.jpg"
631
+ }
632
+ }],
633
+ "goods_sku_info": [{
634
+ "type": "link",
635
+ "props": {
636
+ "label": "CO576911_01",
637
+ "value": "/"
638
+ }
639
+ }, {
640
+ "type": "text",
641
+ "props": {
642
+ "value": "跨境新款车载垃圾桶带盖多功能车家两用置物收纳桶迷你汽车垃圾桶 黑色"
643
+ }
644
+ }, {
645
+ "type": "tag",
646
+ "props": {
647
+ "value": "加",
648
+ "color": "red"
649
+ }
650
+ }],
651
+ "planuser": [{
652
+ "type": "text",
653
+ "props": {
654
+ "value": ""
655
+ }
656
+ }],
657
+ "factory": [{
658
+ "type": "link",
659
+ "props": {
660
+ "label": "CO576911_01",
661
+ "value": "/"
662
+ }
663
+ }],
664
+ "asin": [{
665
+ "type": "text",
666
+ "props": {
667
+ "value": "0 / 0"
668
+ }
669
+ }],
670
+ "goods_sales": [{
671
+ "type": "text",
672
+ "props": {
673
+ "value": "0 / 0 / 0 / / "
674
+ }
675
+ }],
676
+ "goods_dms": [{
677
+ "type": "text",
678
+ "props": {
679
+ "value": "0 / 0"
680
+ }
681
+ }],
682
+ "gross_margin": [{
683
+ "type": "text",
684
+ "props": {
685
+ "value": "0 / 0 / 0 / 0 / 0"
686
+ }
687
+ }],
688
+ "goods_rma": [{
689
+ "type": "text",
690
+ "props": {
691
+ "value": "0 / 0 / 0 / 0 / 0"
692
+ }
693
+ }],
694
+ "goods_stock": [{
695
+ "type": "text",
696
+ "props": {
697
+ "value": 0
698
+ }
699
+ }],
700
+ "usable_stock": [{
701
+ "type": "text",
702
+ "props": {
703
+ "value": 0
704
+ }
705
+ }],
706
+ "having_stock": [{
707
+ "type": "text",
708
+ "props": {
709
+ "value": 0
710
+ }
711
+ }],
712
+ "unsellable_stock": [{
713
+ "type": "text",
714
+ "props": {
715
+ "value": 0
716
+ }
717
+ }],
718
+ "plan_quantity": [{
719
+ "type": "text",
720
+ "props": {
721
+ "value": 0
722
+ }
723
+ }],
724
+ "process_ing_quantity": [{
725
+ "type": "text",
726
+ "props": {
727
+ "value": 0
728
+ }
729
+ }],
730
+ "ship_wait_quantity": [{
731
+ "type": "text",
732
+ "props": {
733
+ "value": 0
734
+ }
735
+ }],
736
+ "shiping_num": [{
737
+ "type": "text",
738
+ "props": {
739
+ "value": 0
740
+ }
741
+ }],
742
+ "overseas_stock": [{
743
+ "type": "text",
744
+ "props": {
745
+ "value": 0
746
+ }
747
+ }],
748
+ "shiped_error_quantity": [{
749
+ "type": "text",
750
+ "props": {
751
+ "value": 0
752
+ }
753
+ }],
754
+ "time_info": [{
755
+ "type": "text",
756
+ "props": {
757
+ "value": "1970-01-01 08:00:00(黄盛)"
758
+ }
759
+ }, {
760
+ "type": "text",
761
+ "props": {
762
+ "value": "2025-03-12 15:54:26(黄盛)"
763
+ }
764
+ }],
765
+ "p_remark": [{
766
+ "type": "text",
767
+ "props": {
768
+ "value": ""
769
+ }
770
+ }],
771
+ "quantity": [{
772
+ "type": "text",
773
+ "props": {
774
+ "value": 0
775
+ }
776
+ }],
777
+ "quantity_modify": [{
778
+ "type": "text",
779
+ "props": {
780
+ "value": 103
781
+ }
782
+ }],
783
+ "bom_data": [{
784
+ "type": "text",
785
+ "props": {
786
+ "value": "0 / 0"
787
+ }
788
+ }]
789
+ }, {
790
+ "key": "1075_1103_1",
791
+ "id": 1075,
792
+ "detail_id": 1103,
793
+ "status_name": [{
794
+ "type": "text",
795
+ "props": {
796
+ "value": ""
797
+ },
798
+ "extra": {
799
+ "rowSpan": -1
800
+ }
801
+ }, {
802
+ "type": "tag",
803
+ "props": {
804
+ "value": ""
805
+ }
806
+ }],
807
+ "goods_spu_info": [{
808
+ "type": "text",
809
+ "props": {
810
+ "label": "SPU",
811
+ "value": {
812
+ "type": "link",
813
+ "props": {
814
+ "label": "",
815
+ "value": "/"
816
+ }
817
+ }
818
+ },
819
+ "extra": {
820
+ "rowSpan": -1
821
+ }
822
+ }, {
823
+ "type": "text",
824
+ "props": {
825
+ "label": "品名",
826
+ "value": ""
827
+ }
828
+ }, {
829
+ "type": "text",
830
+ "props": {
831
+ "label": "买手",
832
+ "value": ""
833
+ }
834
+ }],
835
+ "store_name": [{
836
+ "type": "text",
837
+ "props": {
838
+ "value": "国内备货仓"
839
+ }
840
+ }],
841
+ "goods_image": [{
842
+ "type": "img",
843
+ "props": {
844
+ "value": "http://image.spocoo.com/ac88db91d513da3256a6e18dd60c11a8.jpg"
845
+ }
846
+ }],
847
+ "goods_sku_info": [{
848
+ "type": "link",
849
+ "props": {
850
+ "label": "CO576911_02",
851
+ "value": "/"
852
+ }
853
+ }, {
854
+ "type": "text",
855
+ "props": {
856
+ "value": "跨境新款车载垃圾桶带盖多功能车家两用置物收纳桶迷你汽车垃圾桶 粉色"
857
+ }
858
+ }, {
859
+ "type": "tag",
860
+ "props": {
861
+ "value": "加",
862
+ "color": "red"
863
+ }
864
+ }],
865
+ "planuser": [{
866
+ "type": "text",
867
+ "props": {
868
+ "value": ""
869
+ }
870
+ }],
871
+ "factory": [{
872
+ "type": "link",
873
+ "props": {
874
+ "label": "CO576911_02",
875
+ "value": "/"
876
+ }
877
+ }],
878
+ "asin": [{
879
+ "type": "text",
880
+ "props": {
881
+ "value": "0 / 0"
882
+ }
883
+ }],
884
+ "goods_sales": [{
885
+ "type": "text",
886
+ "props": {
887
+ "value": "0 / 0 / 0 / / "
888
+ }
889
+ }],
890
+ "goods_dms": [{
891
+ "type": "text",
892
+ "props": {
893
+ "value": "0 / 0"
894
+ }
895
+ }],
896
+ "gross_margin": [{
897
+ "type": "text",
898
+ "props": {
899
+ "value": "0 / 0 / 0 / 0 / 0"
900
+ }
901
+ }],
902
+ "goods_rma": [{
903
+ "type": "text",
904
+ "props": {
905
+ "value": "0 / 0 / 0 / 0 / 0"
906
+ }
907
+ }],
908
+ "goods_stock": [{
909
+ "type": "text",
910
+ "props": {
911
+ "value": 0
912
+ }
913
+ }],
914
+ "usable_stock": [{
915
+ "type": "text",
916
+ "props": {
917
+ "value": 0
918
+ }
919
+ }],
920
+ "having_stock": [{
921
+ "type": "text",
922
+ "props": {
923
+ "value": 0
924
+ }
925
+ }],
926
+ "unsellable_stock": [{
927
+ "type": "text",
928
+ "props": {
929
+ "value": 0
930
+ }
931
+ }],
932
+ "plan_quantity": [{
933
+ "type": "text",
934
+ "props": {
935
+ "value": 0
936
+ }
937
+ }],
938
+ "process_ing_quantity": [{
939
+ "type": "text",
940
+ "props": {
941
+ "value": 0
942
+ }
943
+ }],
944
+ "ship_wait_quantity": [{
945
+ "type": "text",
946
+ "props": {
947
+ "value": 0
948
+ }
949
+ }],
950
+ "shiping_num": [{
951
+ "type": "text",
952
+ "props": {
953
+ "value": 0
954
+ }
955
+ }],
956
+ "overseas_stock": [{
957
+ "type": "text",
958
+ "props": {
959
+ "value": 0
960
+ }
961
+ }],
962
+ "shiped_error_quantity": [{
963
+ "type": "text",
964
+ "props": {
965
+ "value": 0
966
+ }
967
+ }],
968
+ "time_info": [{
969
+ "type": "text",
970
+ "props": {
971
+ "value": "1970-01-01 08:00:00(黄盛)"
972
+ }
973
+ }, {
974
+ "type": "text",
975
+ "props": {
976
+ "value": "2025-03-12 15:54:26(黄盛)"
977
+ }
978
+ }],
979
+ "p_remark": [{
980
+ "type": "text",
981
+ "props": {
982
+ "value": ""
983
+ }
984
+ }],
985
+ "quantity": [{
986
+ "type": "text",
987
+ "props": {
988
+ "value": 0
989
+ }
990
+ }],
991
+ "quantity_modify": [{
992
+ "type": "text",
993
+ "props": {
994
+ "value": 102
995
+ }
996
+ }],
997
+ "bom_data": [{
998
+ "type": "text",
999
+ "props": {
1000
+ "value": "0 / 0"
1001
+ }
1002
+ }]
1003
+ }]
1004
+ }, {
1005
+ "key": "parent_1075_2",
1006
+ "id": [{
1007
+ "type": "text",
1008
+ "props": {
1009
+ "value": 1075,
1010
+ "width": 200
1011
+ },
1012
+ "extra": {
1013
+ "colSpan": 28
1014
+ }
1015
+ }],
1016
+ "store_name": [{
1017
+ "type": "text",
1018
+ "props": {
1019
+ "label": "目的仓",
1020
+ "value": "国内备货仓",
1021
+ "width": 200
1022
+ }
1023
+ }],
1024
+ "planuser": [{
1025
+ "type": "text",
1026
+ "props": {
1027
+ "label": "计划员",
1028
+ "value": "",
1029
+ "width": 200
1030
+ }
1031
+ }],
1032
+ "label": [{
1033
+ "type": "tag",
1034
+ "props": {
1035
+ "value": "加工"
1036
+ }
1037
+ }],
1038
+ children: [{
1039
+ "key": "1075_1102_2",
1040
+ "id": 1075,
1041
+ "detail_id": 1102,
1042
+ "status_name": [{
1043
+ "type": "text",
1044
+ "props": {
1045
+ "value": 1075
1046
+ },
1047
+ "extra": {
1048
+ "rowSpan": 2
1049
+ }
1050
+ }, {
1051
+ "type": "tag",
1052
+ "props": {
1053
+ "value": "待处理"
1054
+ }
1055
+ }],
1056
+ "goods_spu_info": [{
1057
+ "type": "text",
1058
+ "props": {
1059
+ "label": "SPU",
1060
+ "value": {
1061
+ "type": "link",
1062
+ "props": {
1063
+ "label": "CO576911",
1064
+ "value": "/"
1065
+ }
1066
+ }
1067
+ },
1068
+ "extra": {
1069
+ "rowSpan": 2
1070
+ }
1071
+ }, {
1072
+ "type": "text",
1073
+ "props": {
1074
+ "label": "品名",
1075
+ "value": "跨境新款车载垃圾桶带盖多功能车家两用置物收纳桶迷你汽车垃圾桶"
1076
+ }
1077
+ }, {
1078
+ "type": "text",
1079
+ "props": {
1080
+ "label": "买手",
1081
+ "value": ""
1082
+ }
1083
+ }],
1084
+ "store_name": [{
1085
+ "type": "text",
1086
+ "props": {
1087
+ "value": "国内备货仓"
1088
+ }
1089
+ }],
1090
+ "goods_image": [{
1091
+ "type": "img",
1092
+ "props": {
1093
+ "value": "http://image.spocoo.com/881a5f295d399a1bfab9cd9a03173801.jpg"
1094
+ }
1095
+ }],
1096
+ "goods_sku_info": [{
1097
+ "type": "link",
1098
+ "props": {
1099
+ "label": "CO576911_01",
1100
+ "value": "/"
1101
+ }
1102
+ }, {
1103
+ "type": "text",
1104
+ "props": {
1105
+ "value": "跨境新款车载垃圾桶带盖多功能车家两用置物收纳桶迷你汽车垃圾桶 黑色"
1106
+ }
1107
+ }, {
1108
+ "type": "tag",
1109
+ "props": {
1110
+ "value": "加",
1111
+ "color": "red"
1112
+ }
1113
+ }],
1114
+ "planuser": [{
1115
+ "type": "text",
1116
+ "props": {
1117
+ "value": ""
1118
+ }
1119
+ }],
1120
+ "factory": [{
1121
+ "type": "link",
1122
+ "props": {
1123
+ "label": "CO576911_01",
1124
+ "value": "/"
1125
+ }
1126
+ }],
1127
+ "asin": [{
1128
+ "type": "text",
1129
+ "props": {
1130
+ "value": "0 / 0"
1131
+ }
1132
+ }],
1133
+ "goods_sales": [{
1134
+ "type": "text",
1135
+ "props": {
1136
+ "value": "0 / 0 / 0 / / "
1137
+ }
1138
+ }],
1139
+ "goods_dms": [{
1140
+ "type": "text",
1141
+ "props": {
1142
+ "value": "0 / 0"
1143
+ }
1144
+ }],
1145
+ "gross_margin": [{
1146
+ "type": "text",
1147
+ "props": {
1148
+ "value": "0 / 0 / 0 / 0 / 0"
1149
+ }
1150
+ }],
1151
+ "goods_rma": [{
1152
+ "type": "text",
1153
+ "props": {
1154
+ "value": "0 / 0 / 0 / 0 / 0"
1155
+ }
1156
+ }],
1157
+ "goods_stock": [{
1158
+ "type": "text",
1159
+ "props": {
1160
+ "value": 0
1161
+ }
1162
+ }],
1163
+ "usable_stock": [{
1164
+ "type": "text",
1165
+ "props": {
1166
+ "value": 0
1167
+ }
1168
+ }],
1169
+ "having_stock": [{
1170
+ "type": "text",
1171
+ "props": {
1172
+ "value": 0
1173
+ }
1174
+ }],
1175
+ "unsellable_stock": [{
1176
+ "type": "text",
1177
+ "props": {
1178
+ "value": 0
1179
+ }
1180
+ }],
1181
+ "plan_quantity": [{
1182
+ "type": "text",
1183
+ "props": {
1184
+ "value": 0
1185
+ }
1186
+ }],
1187
+ "process_ing_quantity": [{
1188
+ "type": "text",
1189
+ "props": {
1190
+ "value": 0
1191
+ }
1192
+ }],
1193
+ "ship_wait_quantity": [{
1194
+ "type": "text",
1195
+ "props": {
1196
+ "value": 0
1197
+ }
1198
+ }],
1199
+ "shiping_num": [{
1200
+ "type": "text",
1201
+ "props": {
1202
+ "value": 0
1203
+ }
1204
+ }],
1205
+ "overseas_stock": [{
1206
+ "type": "text",
1207
+ "props": {
1208
+ "value": 0
1209
+ }
1210
+ }],
1211
+ "shiped_error_quantity": [{
1212
+ "type": "text",
1213
+ "props": {
1214
+ "value": 0
1215
+ }
1216
+ }],
1217
+ "time_info": [{
1218
+ "type": "text",
1219
+ "props": {
1220
+ "value": "1970-01-01 08:00:00(黄盛)"
1221
+ }
1222
+ }, {
1223
+ "type": "text",
1224
+ "props": {
1225
+ "value": "2025-03-12 15:54:26(黄盛)"
1226
+ }
1227
+ }],
1228
+ "p_remark": [{
1229
+ "type": "text",
1230
+ "props": {
1231
+ "value": ""
1232
+ }
1233
+ }],
1234
+ "quantity": [{
1235
+ "type": "text",
1236
+ "props": {
1237
+ "value": 0
1238
+ }
1239
+ }],
1240
+ "quantity_modify": [{
1241
+ "type": "text",
1242
+ "props": {
1243
+ "value": 103
1244
+ }
1245
+ }],
1246
+ "bom_data": [{
1247
+ "type": "text",
1248
+ "props": {
1249
+ "value": "0 / 0"
1250
+ }
1251
+ }]
1252
+ }, {
1253
+ "key": "1075_1103_2",
1254
+ "id": 1075,
1255
+ "detail_id": 1103,
1256
+ "status_name": [{
1257
+ "type": "text",
1258
+ "props": {
1259
+ "value": ""
1260
+ },
1261
+ "extra": {
1262
+ "rowSpan": -1
1263
+ }
1264
+ }, {
1265
+ "type": "tag",
1266
+ "props": {
1267
+ "value": ""
1268
+ }
1269
+ }],
1270
+ "goods_spu_info": [{
1271
+ "type": "text",
1272
+ "props": {
1273
+ "label": "SPU",
1274
+ "value": {
1275
+ "type": "link",
1276
+ "props": {
1277
+ "label": "",
1278
+ "value": "/"
1279
+ }
1280
+ }
1281
+ },
1282
+ "extra": {
1283
+ "rowSpan": -1
1284
+ }
1285
+ }, {
1286
+ "type": "text",
1287
+ "props": {
1288
+ "label": "品名",
1289
+ "value": ""
1290
+ }
1291
+ }, {
1292
+ "type": "text",
1293
+ "props": {
1294
+ "label": "买手",
1295
+ "value": ""
1296
+ }
1297
+ }],
1298
+ "store_name": [{
1299
+ "type": "text",
1300
+ "props": {
1301
+ "value": "国内备货仓"
1302
+ }
1303
+ }],
1304
+ "goods_image": [{
1305
+ "type": "img",
1306
+ "props": {
1307
+ "value": "http://image.spocoo.com/ac88db91d513da3256a6e18dd60c11a8.jpg"
1308
+ }
1309
+ }],
1310
+ "goods_sku_info": [{
1311
+ "type": "link",
1312
+ "props": {
1313
+ "label": "CO576911_02",
1314
+ "value": "/"
1315
+ }
1316
+ }, {
1317
+ "type": "text",
1318
+ "props": {
1319
+ "value": "跨境新款车载垃圾桶带盖多功能车家两用置物收纳桶迷你汽车垃圾桶 粉色"
1320
+ }
1321
+ }, {
1322
+ "type": "tag",
1323
+ "props": {
1324
+ "value": "加",
1325
+ "color": "red"
1326
+ }
1327
+ }],
1328
+ "planuser": [{
1329
+ "type": "text",
1330
+ "props": {
1331
+ "value": ""
1332
+ }
1333
+ }],
1334
+ "factory": [{
1335
+ "type": "link",
1336
+ "props": {
1337
+ "label": "CO576911_02",
1338
+ "value": "/"
1339
+ }
1340
+ }],
1341
+ "asin": [{
1342
+ "type": "text",
1343
+ "props": {
1344
+ "value": "0 / 0"
1345
+ }
1346
+ }],
1347
+ "goods_sales": [{
1348
+ "type": "text",
1349
+ "props": {
1350
+ "value": "0 / 0 / 0 / / "
1351
+ }
1352
+ }],
1353
+ "goods_dms": [{
1354
+ "type": "text",
1355
+ "props": {
1356
+ "value": "0 / 0"
1357
+ }
1358
+ }],
1359
+ "gross_margin": [{
1360
+ "type": "text",
1361
+ "props": {
1362
+ "value": "0 / 0 / 0 / 0 / 0"
1363
+ }
1364
+ }],
1365
+ "goods_rma": [{
1366
+ "type": "text",
1367
+ "props": {
1368
+ "value": "0 / 0 / 0 / 0 / 0"
1369
+ }
1370
+ }],
1371
+ "goods_stock": [{
1372
+ "type": "text",
1373
+ "props": {
1374
+ "value": 0
1375
+ }
1376
+ }],
1377
+ "usable_stock": [{
1378
+ "type": "text",
1379
+ "props": {
1380
+ "value": 0
1381
+ }
1382
+ }],
1383
+ "having_stock": [{
1384
+ "type": "text",
1385
+ "props": {
1386
+ "value": 0
1387
+ }
1388
+ }],
1389
+ "unsellable_stock": [{
1390
+ "type": "text",
1391
+ "props": {
1392
+ "value": 0
1393
+ }
1394
+ }],
1395
+ "plan_quantity": [{
1396
+ "type": "text",
1397
+ "props": {
1398
+ "value": 0
1399
+ }
1400
+ }],
1401
+ "process_ing_quantity": [{
1402
+ "type": "text",
1403
+ "props": {
1404
+ "value": 0
1405
+ }
1406
+ }],
1407
+ "ship_wait_quantity": [{
1408
+ "type": "text",
1409
+ "props": {
1410
+ "value": 0
1411
+ }
1412
+ }],
1413
+ "shiping_num": [{
1414
+ "type": "text",
1415
+ "props": {
1416
+ "value": 0
1417
+ }
1418
+ }],
1419
+ "overseas_stock": [{
1420
+ "type": "text",
1421
+ "props": {
1422
+ "value": 0
1423
+ }
1424
+ }],
1425
+ "shiped_error_quantity": [{
1426
+ "type": "text",
1427
+ "props": {
1428
+ "value": 0
1429
+ }
1430
+ }],
1431
+ "time_info": [{
1432
+ "type": "text",
1433
+ "props": {
1434
+ "value": "1970-01-01 08:00:00(黄盛)"
1435
+ }
1436
+ }, {
1437
+ "type": "text",
1438
+ "props": {
1439
+ "value": "2025-03-12 15:54:26(黄盛)"
1440
+ }
1441
+ }],
1442
+ "p_remark": [{
1443
+ "type": "text",
1444
+ "props": {
1445
+ "value": ""
1446
+ }
1447
+ }],
1448
+ "quantity": [{
1449
+ "type": "text",
1450
+ "props": {
1451
+ "value": 0
1452
+ }
1453
+ }],
1454
+ "quantity_modify": [{
1455
+ "type": "text",
1456
+ "props": {
1457
+ "value": 102
1458
+ }
1459
+ }],
1460
+ "bom_data": [{
1461
+ "type": "text",
1462
+ "props": {
1463
+ "value": "0 / 0"
1464
+ }
1465
+ }]
1466
+ }]
1467
+ }]
1468
+ });
1469
+ });