@teamias/rex-design 0.0.12 → 0.0.14

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 (34) hide show
  1. package/LICENSE +0 -0
  2. package/README.md +0 -0
  3. package/dist/components/action-buttons/index.d.ts +1 -1
  4. package/dist/components/action-buttons/index.js +2 -2
  5. package/dist/components/base-form/demo/BaseFormCustomContent.js +5 -5
  6. package/dist/components/base-form/index.d.ts +1 -1
  7. package/dist/components/base-form/index.js +2 -2
  8. package/dist/components/base-form/modules/dependencyUtils.d.ts +1 -1
  9. package/dist/components/base-form/modules/handlerData.d.ts +1 -1
  10. package/dist/components/base-form/modules/handlerData.js +1 -1
  11. package/dist/components/base-form/modules/renderComponentNode.js +18 -13
  12. package/dist/components/base-form/modules/valuesToFields.js +4 -4
  13. package/dist/components/base-list-table/demo/NoData.js +44 -45
  14. package/dist/components/base-list-table/demo/VirtualDemo.js +348 -349
  15. package/dist/components/base-table/base-table.d.ts +6 -1
  16. package/dist/components/base-table/base-table.js +55 -24
  17. package/dist/components/base-table/components/BaseTableRow.js +8 -8
  18. package/dist/components/base-table/demo/BaseTableAll.js +35 -28
  19. package/dist/components/base-table/demo/BaseTableBasic.js +22 -23
  20. package/dist/components/base-table/demo/BaseTableRowSelect.js +22 -23
  21. package/dist/components/base-table/demo/tableData.js +172 -172
  22. package/dist/components/data-cell/style/index.js +1 -1
  23. package/dist/components/icons/assets/icon-park--arrow-up.svg +0 -0
  24. package/dist/components/icons/assets/svg-spinners--blocks-shuffle-3.svg +0 -0
  25. package/dist/components/media-viewer/style/index.d.ts +1 -1
  26. package/dist/components/media-viewer/style/index.js +3 -3
  27. package/dist/components/tiptap-editor/demo/index.js +4 -1
  28. package/dist/components/tiptap-editor/tiptap-editor.d.ts +3 -3
  29. package/dist/components/tiptap-editor/tiptap-editor.js +11 -12
  30. package/dist/hooks/use-state-data/demo/index.js +0 -1
  31. package/dist/locales/en-US.json +0 -0
  32. package/dist/locales/zh-CN.json +0 -0
  33. package/dist/types/svg.d.ts +1 -1
  34. package/package.json +1 -1
@@ -1,4 +1,3 @@
1
- import React from 'react';
2
1
  import { BaseListTable } from "../base-list-table";
3
2
  import { jsx as _jsx } from "react/jsx-runtime";
4
3
  import { Fragment as _Fragment } from "react/jsx-runtime";
@@ -42,512 +41,512 @@ export default (function () {
42
41
  });
43
42
  },
44
43
  fieldsConfig: [{
45
- "title": "编号/状态",
46
- "dataIndex": "status_name",
47
- "key": "status_name"
44
+ title: '编号/状态',
45
+ dataIndex: 'status_name',
46
+ key: 'status_name'
48
47
  }, {
49
- "title": "SPU/组合SKU",
50
- "dataIndex": "goods_spu_info",
51
- "key": "goods_spu_info"
48
+ title: 'SPU/组合SKU',
49
+ dataIndex: 'goods_spu_info',
50
+ key: 'goods_spu_info'
52
51
  }, {
53
- "title": "图片",
54
- "dataIndex": "goods_image",
55
- "key": "goods_image",
56
- "align": 'center'
52
+ title: '图片',
53
+ dataIndex: 'goods_image',
54
+ key: 'goods_image',
55
+ align: 'center'
57
56
  }, {
58
- "title": "SKU/属性",
59
- "dataIndex": "goods_sku_info",
60
- "key": "goods_sku_info"
57
+ title: 'SKU/属性',
58
+ dataIndex: 'goods_sku_info',
59
+ key: 'goods_sku_info'
61
60
  }, {
62
- "title": "计划员",
63
- "dataIndex": "planuser",
64
- "key": "planuser"
61
+ title: '计划员',
62
+ dataIndex: 'planuser',
63
+ key: 'planuser'
65
64
  }, {
66
- "title": "供应商",
67
- "dataIndex": "factory",
68
- "key": "factory"
65
+ title: '供应商',
66
+ dataIndex: 'factory',
67
+ key: 'factory'
69
68
  }, {
70
- "title": "ASIN",
71
- "dataIndex": "asin",
72
- "key": "asin"
69
+ title: 'ASIN',
70
+ dataIndex: 'asin',
71
+ key: 'asin'
73
72
  }, {
74
- "title": "销量",
75
- "dataIndex": "goods_sales",
76
- "key": "goods_sales"
73
+ title: '销量',
74
+ dataIndex: 'goods_sales',
75
+ key: 'goods_sales'
77
76
  }, {
78
- "title": "DMS",
79
- "dataIndex": "goods_dms",
80
- "key": "goods_dms"
77
+ title: 'DMS',
78
+ dataIndex: 'goods_dms',
79
+ key: 'goods_dms'
81
80
  }, {
82
- "title": "毛利率",
83
- "dataIndex": "gross_margin",
84
- "key": "gross_margin"
81
+ title: '毛利率',
82
+ dataIndex: 'gross_margin',
83
+ key: 'gross_margin'
85
84
  }, {
86
- "title": "售后率",
87
- "dataIndex": "goods_rma",
88
- "key": "goods_rma"
85
+ title: '售后率',
86
+ dataIndex: 'goods_rma',
87
+ key: 'goods_rma'
89
88
  }],
90
89
  dataSource: new Array(5000).fill(0).map(function (_, index) {
91
90
  return {
92
- "key": "parent_1075".concat(index),
93
- "id": [{
94
- "type": "text",
95
- "props": {
96
- "value": "1075-".concat(index),
97
- "width": 200
91
+ key: "parent_1075".concat(index),
92
+ id: [{
93
+ type: 'text',
94
+ props: {
95
+ value: "1075-".concat(index),
96
+ width: 200
98
97
  },
99
- "extra": {
100
- "colSpan": 28
98
+ extra: {
99
+ colSpan: 28
101
100
  }
102
101
  }],
103
- "store_name": [{
104
- "type": "text",
105
- "props": {
106
- "label": "目的仓",
107
- "value": "国内备货仓",
108
- "width": 200
102
+ store_name: [{
103
+ type: 'text',
104
+ props: {
105
+ label: '目的仓',
106
+ value: '国内备货仓',
107
+ width: 200
109
108
  }
110
109
  }],
111
- "planuser": [{
112
- "type": "text",
113
- "props": {
114
- "label": "计划员",
115
- "value": "",
116
- "width": 200
110
+ planuser: [{
111
+ type: 'text',
112
+ props: {
113
+ label: '计划员',
114
+ value: '',
115
+ width: 200
117
116
  }
118
117
  }],
119
- "label": [{
120
- "type": "tag",
121
- "props": {
122
- "value": "加工"
118
+ label: [{
119
+ type: 'tag',
120
+ props: {
121
+ value: '加工'
123
122
  }
124
123
  }],
125
124
  children: [{
126
- "key": "1075_1102".concat(index),
127
- "id": 1075,
128
- "detail_id": 1102,
129
- "status_name": [{
130
- "type": "text",
131
- "props": {
132
- "value": 1075
125
+ key: "1075_1102".concat(index),
126
+ id: 1075,
127
+ detail_id: 1102,
128
+ status_name: [{
129
+ type: 'text',
130
+ props: {
131
+ value: 1075
133
132
  },
134
- "extra": {
135
- "rowSpan": 2
133
+ extra: {
134
+ rowSpan: 2
136
135
  }
137
136
  }, {
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": "/"
137
+ type: 'tag',
138
+ props: {
139
+ value: '待处理'
140
+ }
141
+ }],
142
+ goods_spu_info: [{
143
+ type: 'text',
144
+ props: {
145
+ label: 'SPU',
146
+ value: {
147
+ type: 'link',
148
+ props: {
149
+ label: 'CO576911',
150
+ value: '/'
152
151
  }
153
152
  }
154
153
  },
155
- "extra": {
156
- "rowSpan": 2
154
+ extra: {
155
+ rowSpan: 2
157
156
  }
158
157
  }, {
159
- "type": "text",
160
- "props": {
161
- "label": "品名",
162
- "value": "跨境新款车载垃圾桶带盖多功能车家两用置物收纳桶迷你汽车垃圾桶"
158
+ type: 'text',
159
+ props: {
160
+ label: '品名',
161
+ value: '跨境新款车载垃圾桶带盖多功能车家两用置物收纳桶迷你汽车垃圾桶'
163
162
  }
164
163
  }, {
165
- "type": "text",
166
- "props": {
167
- "label": "买手",
168
- "value": ""
164
+ type: 'text',
165
+ props: {
166
+ label: '买手',
167
+ value: ''
169
168
  }
170
169
  }],
171
- "store_name": [{
172
- "type": "text",
173
- "props": {
174
- "value": "国内备货仓"
170
+ store_name: [{
171
+ type: 'text',
172
+ props: {
173
+ value: '国内备货仓'
175
174
  }
176
175
  }],
177
- "goods_image": [{
178
- "type": "img",
179
- "props": {
180
- "value": "http://image.spocoo.com/881a5f295d399a1bfab9cd9a03173801.jpg"
176
+ goods_image: [{
177
+ type: 'img',
178
+ props: {
179
+ value: 'http://image.spocoo.com/881a5f295d399a1bfab9cd9a03173801.jpg'
181
180
  }
182
181
  }],
183
- "goods_sku_info": [{
184
- "type": "link",
185
- "props": {
186
- "label": "CO576911_01",
187
- "value": "/"
182
+ goods_sku_info: [{
183
+ type: 'link',
184
+ props: {
185
+ label: 'CO576911_01',
186
+ value: '/'
188
187
  }
189
188
  }, {
190
- "type": "text",
191
- "props": {
192
- "value": "跨境新款车载垃圾桶带盖多功能车家两用置物收纳桶迷你汽车垃圾桶 黑色"
189
+ type: 'text',
190
+ props: {
191
+ value: '跨境新款车载垃圾桶带盖多功能车家两用置物收纳桶迷你汽车垃圾桶 黑色'
193
192
  }
194
193
  }, {
195
- "type": "tag",
196
- "props": {
197
- "value": "",
198
- "color": "red"
194
+ type: 'tag',
195
+ props: {
196
+ value: '',
197
+ color: 'red'
199
198
  }
200
199
  }],
201
- "planuser": [{
202
- "type": "text",
203
- "props": {
204
- "value": ""
200
+ planuser: [{
201
+ type: 'text',
202
+ props: {
203
+ value: ''
205
204
  }
206
205
  }],
207
- "factory": [{
208
- "type": "link",
209
- "props": {
210
- "label": "CO576911_01",
211
- "value": "/"
206
+ factory: [{
207
+ type: 'link',
208
+ props: {
209
+ label: 'CO576911_01',
210
+ value: '/'
212
211
  }
213
212
  }],
214
- "asin": [{
215
- "type": "text",
216
- "props": {
217
- "value": "0 / 0"
213
+ asin: [{
214
+ type: 'text',
215
+ props: {
216
+ value: '0 / 0'
218
217
  }
219
218
  }],
220
- "goods_sales": [{
221
- "type": "text",
222
- "props": {
223
- "value": "0 / 0 / 0 / / "
219
+ goods_sales: [{
220
+ type: 'text',
221
+ props: {
222
+ value: '0 / 0 / 0 / / '
224
223
  }
225
224
  }],
226
- "goods_dms": [{
227
- "type": "text",
228
- "props": {
229
- "value": "0 / 0"
225
+ goods_dms: [{
226
+ type: 'text',
227
+ props: {
228
+ value: '0 / 0'
230
229
  }
231
230
  }],
232
- "gross_margin": [{
233
- "type": "text",
234
- "props": {
235
- "value": "0 / 0 / 0 / 0 / 0"
231
+ gross_margin: [{
232
+ type: 'text',
233
+ props: {
234
+ value: '0 / 0 / 0 / 0 / 0'
236
235
  }
237
236
  }],
238
- "goods_rma": [{
239
- "type": "text",
240
- "props": {
241
- "value": "0 / 0 / 0 / 0 / 0"
237
+ goods_rma: [{
238
+ type: 'text',
239
+ props: {
240
+ value: '0 / 0 / 0 / 0 / 0'
242
241
  }
243
242
  }],
244
- "goods_stock": [{
245
- "type": "text",
246
- "props": {
247
- "value": 0
243
+ goods_stock: [{
244
+ type: 'text',
245
+ props: {
246
+ value: 0
248
247
  }
249
248
  }],
250
- "usable_stock": [{
251
- "type": "text",
252
- "props": {
253
- "value": 0
249
+ usable_stock: [{
250
+ type: 'text',
251
+ props: {
252
+ value: 0
254
253
  }
255
254
  }],
256
- "having_stock": [{
257
- "type": "text",
258
- "props": {
259
- "value": 0
255
+ having_stock: [{
256
+ type: 'text',
257
+ props: {
258
+ value: 0
260
259
  }
261
260
  }],
262
- "unsellable_stock": [{
263
- "type": "text",
264
- "props": {
265
- "value": 0
261
+ unsellable_stock: [{
262
+ type: 'text',
263
+ props: {
264
+ value: 0
266
265
  }
267
266
  }],
268
- "plan_quantity": [{
269
- "type": "text",
270
- "props": {
271
- "value": 0
267
+ plan_quantity: [{
268
+ type: 'text',
269
+ props: {
270
+ value: 0
272
271
  }
273
272
  }],
274
- "process_ing_quantity": [{
275
- "type": "text",
276
- "props": {
277
- "value": 0
273
+ process_ing_quantity: [{
274
+ type: 'text',
275
+ props: {
276
+ value: 0
278
277
  }
279
278
  }],
280
- "ship_wait_quantity": [{
281
- "type": "text",
282
- "props": {
283
- "value": 0
279
+ ship_wait_quantity: [{
280
+ type: 'text',
281
+ props: {
282
+ value: 0
284
283
  }
285
284
  }],
286
- "shiping_num": [{
287
- "type": "text",
288
- "props": {
289
- "value": 0
285
+ shiping_num: [{
286
+ type: 'text',
287
+ props: {
288
+ value: 0
290
289
  }
291
290
  }],
292
- "overseas_stock": [{
293
- "type": "text",
294
- "props": {
295
- "value": 0
291
+ overseas_stock: [{
292
+ type: 'text',
293
+ props: {
294
+ value: 0
296
295
  }
297
296
  }],
298
- "shiped_error_quantity": [{
299
- "type": "text",
300
- "props": {
301
- "value": 0
297
+ shiped_error_quantity: [{
298
+ type: 'text',
299
+ props: {
300
+ value: 0
302
301
  }
303
302
  }],
304
- "time_info": [{
305
- "type": "text",
306
- "props": {
307
- "value": "1970-01-01 08:00:00(黄盛)"
303
+ time_info: [{
304
+ type: 'text',
305
+ props: {
306
+ value: '1970-01-01 08:00:00(黄盛)'
308
307
  }
309
308
  }, {
310
- "type": "text",
311
- "props": {
312
- "value": "2025-03-12 15:54:26(黄盛)"
309
+ type: 'text',
310
+ props: {
311
+ value: '2025-03-12 15:54:26(黄盛)'
313
312
  }
314
313
  }],
315
- "p_remark": [{
316
- "type": "text",
317
- "props": {
318
- "value": ""
314
+ p_remark: [{
315
+ type: 'text',
316
+ props: {
317
+ value: ''
319
318
  }
320
319
  }],
321
- "quantity": [{
322
- "type": "text",
323
- "props": {
324
- "value": 0
320
+ quantity: [{
321
+ type: 'text',
322
+ props: {
323
+ value: 0
325
324
  }
326
325
  }],
327
- "quantity_modify": [{
328
- "type": "text",
329
- "props": {
330
- "value": 103
326
+ quantity_modify: [{
327
+ type: 'text',
328
+ props: {
329
+ value: 103
331
330
  }
332
331
  }],
333
- "bom_data": [{
334
- "type": "text",
335
- "props": {
336
- "value": "0 / 0"
332
+ bom_data: [{
333
+ type: 'text',
334
+ props: {
335
+ value: '0 / 0'
337
336
  }
338
337
  }]
339
338
  }, {
340
- "key": "1075_1103".concat(index),
341
- "id": 1075,
342
- "detail_id": 1103,
343
- "status_name": [{
344
- "type": "text",
345
- "props": {
346
- "value": ""
339
+ key: "1075_1103".concat(index),
340
+ id: 1075,
341
+ detail_id: 1103,
342
+ status_name: [{
343
+ type: 'text',
344
+ props: {
345
+ value: ''
347
346
  },
348
- "extra": {
349
- "rowSpan": -1
347
+ extra: {
348
+ rowSpan: -1
350
349
  }
351
350
  }, {
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": "/"
351
+ type: 'tag',
352
+ props: {
353
+ value: ''
354
+ }
355
+ }],
356
+ goods_spu_info: [{
357
+ type: 'text',
358
+ props: {
359
+ label: 'SPU',
360
+ value: {
361
+ type: 'link',
362
+ props: {
363
+ label: '',
364
+ value: '/'
366
365
  }
367
366
  }
368
367
  },
369
- "extra": {
370
- "rowSpan": -1
368
+ extra: {
369
+ rowSpan: -1
371
370
  }
372
371
  }, {
373
- "type": "text",
374
- "props": {
375
- "label": "品名",
376
- "value": ""
372
+ type: 'text',
373
+ props: {
374
+ label: '品名',
375
+ value: ''
377
376
  }
378
377
  }, {
379
- "type": "text",
380
- "props": {
381
- "label": "买手",
382
- "value": ""
378
+ type: 'text',
379
+ props: {
380
+ label: '买手',
381
+ value: ''
383
382
  }
384
383
  }],
385
- "store_name": [{
386
- "type": "text",
387
- "props": {
388
- "value": "国内备货仓"
384
+ store_name: [{
385
+ type: 'text',
386
+ props: {
387
+ value: '国内备货仓'
389
388
  }
390
389
  }],
391
- "goods_image": [{
392
- "type": "img",
393
- "props": {
394
- "value": "http://image.spocoo.com/ac88db91d513da3256a6e18dd60c11a8.jpg"
390
+ goods_image: [{
391
+ type: 'img',
392
+ props: {
393
+ value: 'http://image.spocoo.com/ac88db91d513da3256a6e18dd60c11a8.jpg'
395
394
  }
396
395
  }],
397
- "goods_sku_info": [{
398
- "type": "link",
399
- "props": {
400
- "label": "CO576911_02",
401
- "value": "/"
396
+ goods_sku_info: [{
397
+ type: 'link',
398
+ props: {
399
+ label: 'CO576911_02',
400
+ value: '/'
402
401
  }
403
402
  }, {
404
- "type": "text",
405
- "props": {
406
- "value": "跨境新款车载垃圾桶带盖多功能车家两用置物收纳桶迷你汽车垃圾桶 粉色"
403
+ type: 'text',
404
+ props: {
405
+ value: '跨境新款车载垃圾桶带盖多功能车家两用置物收纳桶迷你汽车垃圾桶 粉色'
407
406
  }
408
407
  }, {
409
- "type": "tag",
410
- "props": {
411
- "value": "",
412
- "color": "red"
408
+ type: 'tag',
409
+ props: {
410
+ value: '',
411
+ color: 'red'
413
412
  }
414
413
  }],
415
- "planuser": [{
416
- "type": "text",
417
- "props": {
418
- "value": ""
414
+ planuser: [{
415
+ type: 'text',
416
+ props: {
417
+ value: ''
419
418
  }
420
419
  }],
421
- "factory": [{
422
- "type": "link",
423
- "props": {
424
- "label": "CO576911_02",
425
- "value": "/"
420
+ factory: [{
421
+ type: 'link',
422
+ props: {
423
+ label: 'CO576911_02',
424
+ value: '/'
426
425
  }
427
426
  }],
428
- "asin": [{
429
- "type": "text",
430
- "props": {
431
- "value": "0 / 0"
427
+ asin: [{
428
+ type: 'text',
429
+ props: {
430
+ value: '0 / 0'
432
431
  }
433
432
  }],
434
- "goods_sales": [{
435
- "type": "text",
436
- "props": {
437
- "value": "0 / 0 / 0 / / "
433
+ goods_sales: [{
434
+ type: 'text',
435
+ props: {
436
+ value: '0 / 0 / 0 / / '
438
437
  }
439
438
  }],
440
- "goods_dms": [{
441
- "type": "text",
442
- "props": {
443
- "value": "0 / 0"
439
+ goods_dms: [{
440
+ type: 'text',
441
+ props: {
442
+ value: '0 / 0'
444
443
  }
445
444
  }],
446
- "gross_margin": [{
447
- "type": "text",
448
- "props": {
449
- "value": "0 / 0 / 0 / 0 / 0"
445
+ gross_margin: [{
446
+ type: 'text',
447
+ props: {
448
+ value: '0 / 0 / 0 / 0 / 0'
450
449
  }
451
450
  }],
452
- "goods_rma": [{
453
- "type": "text",
454
- "props": {
455
- "value": "0 / 0 / 0 / 0 / 0"
451
+ goods_rma: [{
452
+ type: 'text',
453
+ props: {
454
+ value: '0 / 0 / 0 / 0 / 0'
456
455
  }
457
456
  }],
458
- "goods_stock": [{
459
- "type": "text",
460
- "props": {
461
- "value": 0
457
+ goods_stock: [{
458
+ type: 'text',
459
+ props: {
460
+ value: 0
462
461
  }
463
462
  }],
464
- "usable_stock": [{
465
- "type": "text",
466
- "props": {
467
- "value": 0
463
+ usable_stock: [{
464
+ type: 'text',
465
+ props: {
466
+ value: 0
468
467
  }
469
468
  }],
470
- "having_stock": [{
471
- "type": "text",
472
- "props": {
473
- "value": 0
469
+ having_stock: [{
470
+ type: 'text',
471
+ props: {
472
+ value: 0
474
473
  }
475
474
  }],
476
- "unsellable_stock": [{
477
- "type": "text",
478
- "props": {
479
- "value": 0
475
+ unsellable_stock: [{
476
+ type: 'text',
477
+ props: {
478
+ value: 0
480
479
  }
481
480
  }],
482
- "plan_quantity": [{
483
- "type": "text",
484
- "props": {
485
- "value": 0
481
+ plan_quantity: [{
482
+ type: 'text',
483
+ props: {
484
+ value: 0
486
485
  }
487
486
  }],
488
- "process_ing_quantity": [{
489
- "type": "text",
490
- "props": {
491
- "value": 0
487
+ process_ing_quantity: [{
488
+ type: 'text',
489
+ props: {
490
+ value: 0
492
491
  }
493
492
  }],
494
- "ship_wait_quantity": [{
495
- "type": "text",
496
- "props": {
497
- "value": 0
493
+ ship_wait_quantity: [{
494
+ type: 'text',
495
+ props: {
496
+ value: 0
498
497
  }
499
498
  }],
500
- "shiping_num": [{
501
- "type": "text",
502
- "props": {
503
- "value": 0
499
+ shiping_num: [{
500
+ type: 'text',
501
+ props: {
502
+ value: 0
504
503
  }
505
504
  }],
506
- "overseas_stock": [{
507
- "type": "text",
508
- "props": {
509
- "value": 0
505
+ overseas_stock: [{
506
+ type: 'text',
507
+ props: {
508
+ value: 0
510
509
  }
511
510
  }],
512
- "shiped_error_quantity": [{
513
- "type": "text",
514
- "props": {
515
- "value": 0
511
+ shiped_error_quantity: [{
512
+ type: 'text',
513
+ props: {
514
+ value: 0
516
515
  }
517
516
  }],
518
- "time_info": [{
519
- "type": "text",
520
- "props": {
521
- "value": "1970-01-01 08:00:00(黄盛)"
517
+ time_info: [{
518
+ type: 'text',
519
+ props: {
520
+ value: '1970-01-01 08:00:00(黄盛)'
522
521
  }
523
522
  }, {
524
- "type": "text",
525
- "props": {
526
- "value": "2025-03-12 15:54:26(黄盛)"
523
+ type: 'text',
524
+ props: {
525
+ value: '2025-03-12 15:54:26(黄盛)'
527
526
  }
528
527
  }],
529
- "p_remark": [{
530
- "type": "text",
531
- "props": {
532
- "value": ""
528
+ p_remark: [{
529
+ type: 'text',
530
+ props: {
531
+ value: ''
533
532
  }
534
533
  }],
535
- "quantity": [{
536
- "type": "text",
537
- "props": {
538
- "value": 0
534
+ quantity: [{
535
+ type: 'text',
536
+ props: {
537
+ value: 0
539
538
  }
540
539
  }],
541
- "quantity_modify": [{
542
- "type": "text",
543
- "props": {
544
- "value": 102
540
+ quantity_modify: [{
541
+ type: 'text',
542
+ props: {
543
+ value: 102
545
544
  }
546
545
  }],
547
- "bom_data": [{
548
- "type": "text",
549
- "props": {
550
- "value": "0 / 0"
546
+ bom_data: [{
547
+ type: 'text',
548
+ props: {
549
+ value: '0 / 0'
551
550
  }
552
551
  }]
553
552
  }]