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