@kmkf-fe-packages/basic-components 2.2.13-beta.68 → 2.2.13-beta.69
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.
- package/dist/index.esm.js +592 -327
- package/dist/index.js +592 -327
- package/dist/src/bs/component/GoodItem/index.d.ts +1 -0
- package/dist/src/bs/component/GoodsModal.d.ts +2 -0
- package/dist/src/bs/component/model/BsE3GoodList.d.ts +1 -0
- package/dist/src/bs/component/model/Columns/Erp/bse3.d.ts +2 -0
- package/dist/src/bs/component/model/Columns/Erp/common.d.ts +2 -0
- package/dist/src/bs/component/model/Columns/Erp/gy.d.ts +1 -1
- package/dist/src/bs/component/model/Columns/Erp/jst.d.ts +1 -7
- package/dist/src/bs/component/model/Columns/Erp/jy.d.ts +0 -6
- package/dist/src/bs/component/model/Columns/Erp/km.d.ts +0 -6
- package/dist/src/bs/component/model/Columns/Erp/wdt.d.ts +1 -1
- package/dist/src/bs/component/model/GyGoodsList.d.ts +1 -0
- package/dist/src/bs/component/model/JstGoodsModal/GoodsList.d.ts +1 -0
- package/dist/src/bs/component/model/JyGoodsModal/GoodsList.d.ts +1 -0
- package/dist/src/bs/component/model/KmGoodsModal/GoodsList.d.ts +1 -0
- package/dist/src/bs/component/model/WdtGoodList.d.ts +1 -0
- package/dist/src/bs/component/model/components/SearchForm/index.d.ts +1 -0
- package/package.json +2 -2
package/dist/index.esm.js
CHANGED
|
@@ -10416,8 +10416,10 @@ function CopyTextIcon(_ref) {
|
|
|
10416
10416
|
justifyContent: 'center'
|
|
10417
10417
|
}
|
|
10418
10418
|
}, /*#__PURE__*/React.createElement("span", {
|
|
10419
|
+
className: "ellipsis-text-3",
|
|
10419
10420
|
style: {
|
|
10420
10421
|
marginRight: 8,
|
|
10422
|
+
flex: 1,
|
|
10421
10423
|
overflow: 'hidden',
|
|
10422
10424
|
textOverflow: 'ellipsis',
|
|
10423
10425
|
whiteSpace: 'nowrap'
|
|
@@ -13977,6 +13979,18 @@ var ItemList = function ItemList(props) {
|
|
|
13977
13979
|
}, "\u6682\u4E0D\u652F\u6301\u6DFB\u52A0")) : null);
|
|
13978
13980
|
};
|
|
13979
13981
|
|
|
13982
|
+
var renderTextEllipsis = function renderTextEllipsis(value) {
|
|
13983
|
+
return /*#__PURE__*/React.createElement("span", {
|
|
13984
|
+
className: "ellipsis-text-3"
|
|
13985
|
+
}, value);
|
|
13986
|
+
};
|
|
13987
|
+
|
|
13988
|
+
var css_248z$b = ".GoodModalColumns .ellipsis-text-3 {\n display: -webkit-box;\n overflow: hidden;\n white-space: normal !important;\n text-overflow: ellipsis;\n word-break: break-all;\n overflow-wrap: anywhere;\n -webkit-box-orient: vertical;\n -webkit-line-clamp: 3;\n line-clamp: 3;\n}\n";
|
|
13989
|
+
styleInject(css_248z$b);
|
|
13990
|
+
|
|
13991
|
+
var css_248z$c = ".search-form .ant-form-item {\n margin-right: 0px;\n margin-bottom: 12px;\n padding-right: 10px;\n}\n@media (max-width: 600px) {\n .search-form {\n display: flex;\n flex-wrap: wrap;\n }\n .search-form .ant-form-item {\n box-sizing: border-box;\n width: 33.33% !important;\n }\n .search-form .ant-input-affix-wrapper,\n .search-form .ant-select,\n .search-form .ant-select-selector {\n width: 100% !important;\n }\n .search-form .search-form-actions .ant-form-item-row {\n width: 100% !important;\n }\n .search-form .search-form-actions .ant-form-item-row .ant-form-item-control-input-content {\n display: flex;\n flex-wrap: nowrap;\n justify-content: space-between;\n }\n .search-form .search-form-actions .ant-form-item-row .ant-form-item-control-input-content .ant-btn {\n width: calc((100% - 8px) / 2) !important;\n }\n}\n";
|
|
13992
|
+
styleInject(css_248z$c);
|
|
13993
|
+
|
|
13980
13994
|
var _excluded$d = ["shopId"];
|
|
13981
13995
|
var columns = [{
|
|
13982
13996
|
dataIndex: 'index',
|
|
@@ -13991,44 +14005,39 @@ var columns = [{
|
|
|
13991
14005
|
}, {
|
|
13992
14006
|
dataIndex: 'skuName',
|
|
13993
14007
|
title: '商品sku名称',
|
|
13994
|
-
|
|
13995
|
-
ellipsis: true
|
|
14008
|
+
width: 300,
|
|
14009
|
+
ellipsis: true,
|
|
14010
|
+
render: renderTextEllipsis
|
|
13996
14011
|
}, {
|
|
13997
14012
|
dataIndex: 'skuCode',
|
|
13998
14013
|
title: '商品sku编码',
|
|
13999
|
-
|
|
14000
|
-
ellipsis: true
|
|
14014
|
+
width: 200,
|
|
14015
|
+
ellipsis: true,
|
|
14016
|
+
render: renderTextEllipsis
|
|
14001
14017
|
}, {
|
|
14002
14018
|
dataIndex: 'name',
|
|
14003
14019
|
title: '商品名称',
|
|
14004
|
-
|
|
14005
|
-
ellipsis: true
|
|
14020
|
+
width: 200,
|
|
14021
|
+
ellipsis: true,
|
|
14022
|
+
render: renderTextEllipsis
|
|
14006
14023
|
}, {
|
|
14007
14024
|
dataIndex: 'goodsId',
|
|
14008
14025
|
title: '商品id',
|
|
14009
|
-
|
|
14010
|
-
ellipsis: true
|
|
14026
|
+
width: 200,
|
|
14027
|
+
ellipsis: true,
|
|
14028
|
+
render: renderTextEllipsis
|
|
14011
14029
|
}, {
|
|
14012
14030
|
dataIndex: 'code',
|
|
14013
14031
|
title: '商品编码',
|
|
14014
|
-
|
|
14015
|
-
|
|
14016
|
-
|
|
14017
|
-
style: {
|
|
14018
|
-
width: '100px'
|
|
14019
|
-
}
|
|
14020
|
-
}, val);
|
|
14021
|
-
}
|
|
14032
|
+
width: 200,
|
|
14033
|
+
ellipsis: true,
|
|
14034
|
+
render: renderTextEllipsis
|
|
14022
14035
|
}, {
|
|
14023
14036
|
dataIndex: 'marketPrice',
|
|
14024
14037
|
title: '市场价',
|
|
14025
|
-
|
|
14026
|
-
|
|
14027
|
-
|
|
14028
|
-
width: '70px'
|
|
14029
|
-
}
|
|
14030
|
-
}, val);
|
|
14031
|
-
}
|
|
14038
|
+
width: 70,
|
|
14039
|
+
ellipsis: true,
|
|
14040
|
+
render: renderTextEllipsis
|
|
14032
14041
|
}];
|
|
14033
14042
|
var GoodsModal$1 = function GoodsModal(props, ref) {
|
|
14034
14043
|
useImperativeHandle(ref, function () {
|
|
@@ -14297,27 +14306,27 @@ var GoodsModal$1 = function GoodsModal(props, ref) {
|
|
|
14297
14306
|
}, {
|
|
14298
14307
|
dataIndex: 'skuName',
|
|
14299
14308
|
title: '商品sku名称',
|
|
14300
|
-
|
|
14309
|
+
width: 300,
|
|
14301
14310
|
ellipsis: true
|
|
14302
14311
|
}, {
|
|
14303
14312
|
dataIndex: 'skuCode',
|
|
14304
14313
|
title: '商品sku编码',
|
|
14305
|
-
|
|
14314
|
+
width: 200,
|
|
14306
14315
|
ellipsis: true
|
|
14307
14316
|
}, {
|
|
14308
14317
|
dataIndex: 'name',
|
|
14309
14318
|
title: '商品名称',
|
|
14310
|
-
|
|
14319
|
+
width: 200,
|
|
14311
14320
|
ellipsis: true
|
|
14312
14321
|
}, {
|
|
14313
14322
|
dataIndex: 'goodsId',
|
|
14314
14323
|
title: '商品id',
|
|
14315
|
-
|
|
14324
|
+
width: 200,
|
|
14316
14325
|
ellipsis: true
|
|
14317
14326
|
}, {
|
|
14318
14327
|
dataIndex: 'code',
|
|
14319
14328
|
title: '商品编码',
|
|
14320
|
-
|
|
14329
|
+
width: 200,
|
|
14321
14330
|
render: function render(val) {
|
|
14322
14331
|
return /*#__PURE__*/React.createElement("div", {
|
|
14323
14332
|
style: {
|
|
@@ -14346,9 +14355,10 @@ var GoodsModal$1 = function GoodsModal(props, ref) {
|
|
|
14346
14355
|
rowKey: 'skuCode',
|
|
14347
14356
|
dataSource: selectList,
|
|
14348
14357
|
scroll: {
|
|
14349
|
-
x:
|
|
14358
|
+
x: '100%',
|
|
14350
14359
|
y: 250
|
|
14351
14360
|
},
|
|
14361
|
+
size: "small",
|
|
14352
14362
|
pagination: {
|
|
14353
14363
|
size: 'small',
|
|
14354
14364
|
total: selectIds.length,
|
|
@@ -14372,6 +14382,7 @@ var GoodsModal$1 = function GoodsModal(props, ref) {
|
|
|
14372
14382
|
top: 20
|
|
14373
14383
|
}
|
|
14374
14384
|
}, /*#__PURE__*/React.createElement(Form, {
|
|
14385
|
+
className: "search-form",
|
|
14375
14386
|
layout: "inline",
|
|
14376
14387
|
form: form,
|
|
14377
14388
|
onFinish: onFinish,
|
|
@@ -14420,7 +14431,12 @@ var GoodsModal$1 = function GoodsModal(props, ref) {
|
|
|
14420
14431
|
style: {
|
|
14421
14432
|
width: 150
|
|
14422
14433
|
}
|
|
14423
|
-
})), /*#__PURE__*/React.createElement(Form.Item,
|
|
14434
|
+
})), /*#__PURE__*/React.createElement(Form.Item, {
|
|
14435
|
+
className: "search-form-actions"
|
|
14436
|
+
}, /*#__PURE__*/React.createElement(Button, {
|
|
14437
|
+
style: {
|
|
14438
|
+
marginRight: '8px'
|
|
14439
|
+
},
|
|
14424
14440
|
type: "primary",
|
|
14425
14441
|
htmlType: "submit"
|
|
14426
14442
|
}, "\u67E5\u8BE2"), /*#__PURE__*/React.createElement(Button, {
|
|
@@ -14428,14 +14444,17 @@ var GoodsModal$1 = function GoodsModal(props, ref) {
|
|
|
14428
14444
|
}, "\u91CD\u7F6E"))), /*#__PURE__*/React.createElement(Spin, {
|
|
14429
14445
|
spinning: loading
|
|
14430
14446
|
}, /*#__PURE__*/React.createElement(Table, {
|
|
14447
|
+
className: "GoodModalColumns",
|
|
14431
14448
|
rowSelection: rowSelection,
|
|
14432
14449
|
columns: columns,
|
|
14433
14450
|
rowKey: 'skuCode',
|
|
14434
14451
|
dataSource: goodList,
|
|
14452
|
+
tableLayout: "fixed",
|
|
14435
14453
|
scroll: {
|
|
14436
|
-
x:
|
|
14454
|
+
x: 'max-content',
|
|
14437
14455
|
y: 250
|
|
14438
14456
|
},
|
|
14457
|
+
size: "small",
|
|
14439
14458
|
pagination: {
|
|
14440
14459
|
size: 'small',
|
|
14441
14460
|
total: total,
|
|
@@ -14462,27 +14481,32 @@ var gyColumns = [{
|
|
|
14462
14481
|
dataIndex: 'specName',
|
|
14463
14482
|
title: 'SKU名称',
|
|
14464
14483
|
width: 250,
|
|
14465
|
-
ellipsis: true
|
|
14484
|
+
ellipsis: true,
|
|
14485
|
+
render: renderTextEllipsis
|
|
14466
14486
|
}, {
|
|
14467
14487
|
dataIndex: 'specNo',
|
|
14468
14488
|
title: 'SKU编码',
|
|
14469
14489
|
width: 150,
|
|
14470
|
-
ellipsis: true
|
|
14490
|
+
ellipsis: true,
|
|
14491
|
+
render: renderTextEllipsis
|
|
14471
14492
|
}, {
|
|
14472
14493
|
dataIndex: 'goodName',
|
|
14473
14494
|
title: '商品名称',
|
|
14474
14495
|
width: 250,
|
|
14475
|
-
ellipsis: true
|
|
14496
|
+
ellipsis: true,
|
|
14497
|
+
render: renderTextEllipsis
|
|
14476
14498
|
}, {
|
|
14477
14499
|
dataIndex: 'goodShortName',
|
|
14478
14500
|
title: "\u5546\u54C1\u7B80\u79F0",
|
|
14479
14501
|
ellipsis: true,
|
|
14480
|
-
width: 150
|
|
14502
|
+
width: 150,
|
|
14503
|
+
render: renderTextEllipsis
|
|
14481
14504
|
}, {
|
|
14482
14505
|
dataIndex: 'goodNo',
|
|
14483
14506
|
title: '商品编码',
|
|
14484
14507
|
width: 150,
|
|
14485
|
-
ellipsis: true
|
|
14508
|
+
ellipsis: true,
|
|
14509
|
+
render: renderTextEllipsis
|
|
14486
14510
|
}, {
|
|
14487
14511
|
dataIndex: 'goodPicUrl',
|
|
14488
14512
|
title: '商品图片',
|
|
@@ -14490,8 +14514,8 @@ var gyColumns = [{
|
|
|
14490
14514
|
render: function render(picUrl) {
|
|
14491
14515
|
return /*#__PURE__*/React.createElement("img", {
|
|
14492
14516
|
style: {
|
|
14493
|
-
width: '
|
|
14494
|
-
height: '
|
|
14517
|
+
width: '30px',
|
|
14518
|
+
height: '30px',
|
|
14495
14519
|
objectFit: 'contain'
|
|
14496
14520
|
},
|
|
14497
14521
|
src: picUrl
|
|
@@ -14501,39 +14525,46 @@ var gyColumns = [{
|
|
|
14501
14525
|
dataIndex: 'brandName',
|
|
14502
14526
|
title: '品牌名称',
|
|
14503
14527
|
width: 200,
|
|
14504
|
-
ellipsis: true
|
|
14528
|
+
ellipsis: true,
|
|
14529
|
+
render: renderTextEllipsis
|
|
14505
14530
|
}, {
|
|
14506
14531
|
dataIndex: 'retailPrice',
|
|
14507
14532
|
title: "\u6807\u51C6\u552E\u4EF7",
|
|
14508
14533
|
ellipsis: true,
|
|
14509
|
-
width: 100
|
|
14534
|
+
width: 100,
|
|
14535
|
+
render: renderTextEllipsis
|
|
14510
14536
|
}, {
|
|
14511
14537
|
dataIndex: 'costPrice',
|
|
14512
14538
|
title: "\u6210\u672C\u4EF7",
|
|
14513
14539
|
ellipsis: true,
|
|
14514
|
-
width: 100
|
|
14540
|
+
width: 100,
|
|
14541
|
+
render: renderTextEllipsis
|
|
14515
14542
|
}];
|
|
14516
14543
|
|
|
14517
14544
|
var jstColumns = [{
|
|
14518
14545
|
dataIndex: 'goodName',
|
|
14519
14546
|
title: '商品名称',
|
|
14520
14547
|
width: 250,
|
|
14521
|
-
ellipsis: true
|
|
14548
|
+
ellipsis: true,
|
|
14549
|
+
render: renderTextEllipsis
|
|
14522
14550
|
}, {
|
|
14523
14551
|
dataIndex: 'goodNo',
|
|
14524
14552
|
title: '商品编码',
|
|
14525
14553
|
width: 200,
|
|
14526
|
-
ellipsis: true
|
|
14554
|
+
ellipsis: true,
|
|
14555
|
+
render: renderTextEllipsis
|
|
14527
14556
|
}, {
|
|
14528
14557
|
dataIndex: 'styleCode',
|
|
14529
14558
|
title: '款式编码',
|
|
14530
14559
|
width: 200,
|
|
14531
|
-
ellipsis: true
|
|
14560
|
+
ellipsis: true,
|
|
14561
|
+
render: renderTextEllipsis
|
|
14532
14562
|
}, {
|
|
14533
14563
|
dataIndex: 'propertiesValue',
|
|
14534
14564
|
title: '规格值',
|
|
14535
14565
|
width: 200,
|
|
14536
|
-
ellipsis: true
|
|
14566
|
+
ellipsis: true,
|
|
14567
|
+
render: renderTextEllipsis
|
|
14537
14568
|
}, {
|
|
14538
14569
|
dataIndex: 'goodPicUrl',
|
|
14539
14570
|
title: '商品图片',
|
|
@@ -14541,8 +14572,8 @@ var jstColumns = [{
|
|
|
14541
14572
|
render: function render(picUrl) {
|
|
14542
14573
|
return /*#__PURE__*/React.createElement("img", {
|
|
14543
14574
|
style: {
|
|
14544
|
-
width: '
|
|
14545
|
-
height: '
|
|
14575
|
+
width: '30px',
|
|
14576
|
+
height: '30px',
|
|
14546
14577
|
objectFit: 'contain'
|
|
14547
14578
|
},
|
|
14548
14579
|
src: picUrl
|
|
@@ -14552,19 +14583,21 @@ var jstColumns = [{
|
|
|
14552
14583
|
dataIndex: 'goodShortName',
|
|
14553
14584
|
title: "\u5546\u54C1\u7B80\u79F0",
|
|
14554
14585
|
ellipsis: true,
|
|
14555
|
-
width: 250
|
|
14586
|
+
width: 250,
|
|
14587
|
+
render: renderTextEllipsis
|
|
14556
14588
|
}, {
|
|
14557
14589
|
dataIndex: 'brandName',
|
|
14558
14590
|
title: '品牌名称',
|
|
14559
14591
|
width: 200,
|
|
14560
|
-
ellipsis: true
|
|
14592
|
+
ellipsis: true,
|
|
14593
|
+
render: renderTextEllipsis
|
|
14561
14594
|
}, {
|
|
14562
14595
|
dataIndex: 'retailPrice',
|
|
14563
14596
|
title: "\u9500\u552E\u4EF7\u683C",
|
|
14564
14597
|
ellipsis: true,
|
|
14565
14598
|
width: 100,
|
|
14566
14599
|
render: function render(price) {
|
|
14567
|
-
return price || price === 0 ? Number(price).toFixed(2) : '';
|
|
14600
|
+
return renderTextEllipsis(price || price === 0 ? Number(price).toFixed(2) : '');
|
|
14568
14601
|
}
|
|
14569
14602
|
}, {
|
|
14570
14603
|
dataIndex: 'marketPrice',
|
|
@@ -14572,7 +14605,7 @@ var jstColumns = [{
|
|
|
14572
14605
|
ellipsis: true,
|
|
14573
14606
|
width: 100,
|
|
14574
14607
|
render: function render(price) {
|
|
14575
|
-
return price || price === 0 ? Number(price).toFixed(2) : '';
|
|
14608
|
+
return renderTextEllipsis(price || price === 0 ? Number(price).toFixed(2) : '');
|
|
14576
14609
|
}
|
|
14577
14610
|
}, {
|
|
14578
14611
|
dataIndex: 'costPrice',
|
|
@@ -14580,7 +14613,7 @@ var jstColumns = [{
|
|
|
14580
14613
|
ellipsis: true,
|
|
14581
14614
|
width: 100,
|
|
14582
14615
|
render: function render(price) {
|
|
14583
|
-
return price || price === 0 ? Number(price).toFixed(2) : '';
|
|
14616
|
+
return renderTextEllipsis(price || price === 0 ? Number(price).toFixed(2) : '');
|
|
14584
14617
|
}
|
|
14585
14618
|
}, {
|
|
14586
14619
|
dataIndex: 'skuType',
|
|
@@ -14589,10 +14622,10 @@ var jstColumns = [{
|
|
|
14589
14622
|
width: 100,
|
|
14590
14623
|
render: function render() {
|
|
14591
14624
|
var type = arguments.length > 0 && arguments[0] !== undefined ? arguments[0] : 'normal';
|
|
14592
|
-
return {
|
|
14625
|
+
return renderTextEllipsis({
|
|
14593
14626
|
combine: '组合装商品',
|
|
14594
14627
|
normal: '普通商品'
|
|
14595
|
-
}[type] || type;
|
|
14628
|
+
}[type] || type);
|
|
14596
14629
|
}
|
|
14597
14630
|
}];
|
|
14598
14631
|
|
|
@@ -14600,17 +14633,20 @@ var wdtColumns = [{
|
|
|
14600
14633
|
dataIndex: 'specName',
|
|
14601
14634
|
title: 'SKU名称',
|
|
14602
14635
|
width: 250,
|
|
14603
|
-
ellipsis: true
|
|
14636
|
+
ellipsis: true,
|
|
14637
|
+
render: renderTextEllipsis
|
|
14604
14638
|
}, {
|
|
14605
14639
|
dataIndex: 'specNo',
|
|
14606
14640
|
title: 'SKU编码',
|
|
14607
14641
|
width: 200,
|
|
14608
|
-
ellipsis: true
|
|
14642
|
+
ellipsis: true,
|
|
14643
|
+
render: renderTextEllipsis
|
|
14609
14644
|
}, {
|
|
14610
14645
|
dataIndex: 'specId',
|
|
14611
14646
|
title: 'SKUID',
|
|
14612
14647
|
width: 200,
|
|
14613
|
-
ellipsis: true
|
|
14648
|
+
ellipsis: true,
|
|
14649
|
+
render: renderTextEllipsis
|
|
14614
14650
|
}, {
|
|
14615
14651
|
dataIndex: 'specImgUrl',
|
|
14616
14652
|
title: '商品图片',
|
|
@@ -14618,8 +14654,8 @@ var wdtColumns = [{
|
|
|
14618
14654
|
render: function render(picUrl) {
|
|
14619
14655
|
return /*#__PURE__*/React.createElement("img", {
|
|
14620
14656
|
style: {
|
|
14621
|
-
width: '
|
|
14622
|
-
height: '
|
|
14657
|
+
width: '30px',
|
|
14658
|
+
height: '30px',
|
|
14623
14659
|
objectFit: 'contain'
|
|
14624
14660
|
},
|
|
14625
14661
|
src: picUrl
|
|
@@ -14629,22 +14665,26 @@ var wdtColumns = [{
|
|
|
14629
14665
|
dataIndex: 'goodName',
|
|
14630
14666
|
title: '商品名称',
|
|
14631
14667
|
width: 250,
|
|
14632
|
-
ellipsis: true
|
|
14668
|
+
ellipsis: true,
|
|
14669
|
+
render: renderTextEllipsis
|
|
14633
14670
|
}, {
|
|
14634
14671
|
dataIndex: 'goodNo',
|
|
14635
14672
|
title: '商品编码',
|
|
14636
14673
|
width: 200,
|
|
14637
|
-
ellipsis: true
|
|
14674
|
+
ellipsis: true,
|
|
14675
|
+
render: renderTextEllipsis
|
|
14638
14676
|
}, {
|
|
14639
14677
|
dataIndex: 'goodId',
|
|
14640
14678
|
title: '商品ID',
|
|
14641
14679
|
width: 200,
|
|
14642
|
-
ellipsis: true
|
|
14680
|
+
ellipsis: true,
|
|
14681
|
+
render: renderTextEllipsis
|
|
14643
14682
|
}, {
|
|
14644
14683
|
dataIndex: 'brandName',
|
|
14645
14684
|
title: '品牌名称',
|
|
14646
14685
|
width: 200,
|
|
14647
|
-
ellipsis: true
|
|
14686
|
+
ellipsis: true,
|
|
14687
|
+
render: renderTextEllipsis
|
|
14648
14688
|
}, {
|
|
14649
14689
|
dataIndex: 'marketPrice',
|
|
14650
14690
|
title: '市场价',
|
|
@@ -14672,22 +14712,26 @@ var bse3Columns = [{
|
|
|
14672
14712
|
dataIndex: 'specNo',
|
|
14673
14713
|
title: "SKU",
|
|
14674
14714
|
ellipsis: true,
|
|
14675
|
-
width: 200
|
|
14715
|
+
width: 200,
|
|
14716
|
+
render: renderTextEllipsis
|
|
14676
14717
|
}, {
|
|
14677
14718
|
dataIndex: 'specId',
|
|
14678
14719
|
title: "SKU ID",
|
|
14679
14720
|
ellipsis: true,
|
|
14680
|
-
width: 80
|
|
14721
|
+
width: 80,
|
|
14722
|
+
render: renderTextEllipsis
|
|
14681
14723
|
}, {
|
|
14682
14724
|
dataIndex: 'goodName',
|
|
14683
14725
|
title: "\u5546\u54C1\u540D\u79F0",
|
|
14684
14726
|
ellipsis: true,
|
|
14685
|
-
width: 250
|
|
14727
|
+
width: 250,
|
|
14728
|
+
render: renderTextEllipsis
|
|
14686
14729
|
}, {
|
|
14687
14730
|
dataIndex: 'goodShortName',
|
|
14688
14731
|
title: "\u5546\u54C1\u7B80\u79F0",
|
|
14689
14732
|
ellipsis: true,
|
|
14690
|
-
width: 250
|
|
14733
|
+
width: 250,
|
|
14734
|
+
render: renderTextEllipsis
|
|
14691
14735
|
},
|
|
14692
14736
|
// {
|
|
14693
14737
|
// dataIndex: 'goodPicUrl',
|
|
@@ -14711,47 +14755,56 @@ var bse3Columns = [{
|
|
|
14711
14755
|
dataIndex: 'goodNo',
|
|
14712
14756
|
title: "\u8D27\u53F7",
|
|
14713
14757
|
ellipsis: true,
|
|
14714
|
-
width: 150
|
|
14758
|
+
width: 150,
|
|
14759
|
+
render: renderTextEllipsis
|
|
14715
14760
|
}, {
|
|
14716
14761
|
dataIndex: 'goodId',
|
|
14717
14762
|
title: "\u8D27\u53F7ID",
|
|
14718
14763
|
ellipsis: true,
|
|
14719
|
-
width: 100
|
|
14764
|
+
width: 100,
|
|
14765
|
+
render: renderTextEllipsis
|
|
14720
14766
|
}, {
|
|
14721
14767
|
dataIndex: 'colorName',
|
|
14722
14768
|
title: "\u989C\u8272\u540D\u79F0",
|
|
14723
14769
|
ellipsis: true,
|
|
14724
|
-
width: 100
|
|
14770
|
+
width: 100,
|
|
14771
|
+
render: renderTextEllipsis
|
|
14725
14772
|
}, {
|
|
14726
14773
|
dataIndex: 'colorCode',
|
|
14727
14774
|
title: "\u989C\u8272\u4EE3\u7801",
|
|
14728
14775
|
ellipsis: true,
|
|
14729
|
-
width: 100
|
|
14776
|
+
width: 100,
|
|
14777
|
+
render: renderTextEllipsis
|
|
14730
14778
|
}, {
|
|
14731
14779
|
dataIndex: 'sizeName',
|
|
14732
14780
|
title: "\u5C3A\u7801\u540D\u79F0",
|
|
14733
14781
|
ellipsis: true,
|
|
14734
|
-
width: 100
|
|
14782
|
+
width: 100,
|
|
14783
|
+
render: renderTextEllipsis
|
|
14735
14784
|
}, {
|
|
14736
14785
|
dataIndex: 'sizeCode',
|
|
14737
14786
|
title: "\u5C3A\u7801\u4EE3\u7801",
|
|
14738
14787
|
ellipsis: true,
|
|
14739
|
-
width: 100
|
|
14788
|
+
width: 100,
|
|
14789
|
+
render: renderTextEllipsis
|
|
14740
14790
|
}, {
|
|
14741
14791
|
dataIndex: 'brandName',
|
|
14742
14792
|
title: "\u54C1\u724C\u540D\u79F0",
|
|
14743
14793
|
ellipsis: true,
|
|
14744
|
-
width: 100
|
|
14794
|
+
width: 100,
|
|
14795
|
+
render: renderTextEllipsis
|
|
14745
14796
|
}, {
|
|
14746
14797
|
dataIndex: 'marketPrice',
|
|
14747
14798
|
title: "\u5E02\u573A\u4EF7",
|
|
14748
14799
|
ellipsis: true,
|
|
14749
|
-
width: 100
|
|
14800
|
+
width: 100,
|
|
14801
|
+
render: renderTextEllipsis
|
|
14750
14802
|
}, {
|
|
14751
14803
|
dataIndex: 'retailPrice',
|
|
14752
14804
|
title: "\u552E\u4EF7",
|
|
14753
14805
|
ellipsis: true,
|
|
14754
|
-
width: 100
|
|
14806
|
+
width: 100,
|
|
14807
|
+
render: renderTextEllipsis
|
|
14755
14808
|
}];
|
|
14756
14809
|
|
|
14757
14810
|
var getYesOrNo = function getYesOrNo(val) {
|
|
@@ -14762,24 +14815,27 @@ var kmColumns = [{
|
|
|
14762
14815
|
dataIndex: 'goodName',
|
|
14763
14816
|
title: '商品名称',
|
|
14764
14817
|
width: 250,
|
|
14765
|
-
ellipsis: true
|
|
14818
|
+
ellipsis: true,
|
|
14819
|
+
render: renderTextEllipsis
|
|
14766
14820
|
}, {
|
|
14767
14821
|
dataIndex: 'goodNo',
|
|
14768
14822
|
title: '商品编码',
|
|
14769
14823
|
width: 150,
|
|
14770
|
-
ellipsis: true
|
|
14824
|
+
ellipsis: true,
|
|
14825
|
+
render: renderTextEllipsis
|
|
14771
14826
|
}, {
|
|
14772
14827
|
dataIndex: 'goodId',
|
|
14773
14828
|
title: '商品ID',
|
|
14774
14829
|
width: 200,
|
|
14775
|
-
ellipsis: true
|
|
14830
|
+
ellipsis: true,
|
|
14831
|
+
render: renderTextEllipsis
|
|
14776
14832
|
}, {
|
|
14777
14833
|
dataIndex: 'goodPicUrl',
|
|
14778
14834
|
title: "\u5546\u54C1\u56FE\u7247",
|
|
14779
14835
|
width: 150,
|
|
14780
14836
|
render: function render(val) {
|
|
14781
14837
|
return /*#__PURE__*/React.createElement(Image, {
|
|
14782
|
-
width:
|
|
14838
|
+
width: 30,
|
|
14783
14839
|
src: val
|
|
14784
14840
|
});
|
|
14785
14841
|
}
|
|
@@ -14787,52 +14843,62 @@ var kmColumns = [{
|
|
|
14787
14843
|
dataIndex: 'goodShortName',
|
|
14788
14844
|
title: '商品简称',
|
|
14789
14845
|
width: 200,
|
|
14790
|
-
ellipsis: true
|
|
14846
|
+
ellipsis: true,
|
|
14847
|
+
render: renderTextEllipsis
|
|
14791
14848
|
}, {
|
|
14792
14849
|
dataIndex: 'goodBarcode',
|
|
14793
14850
|
title: '商品条码',
|
|
14794
14851
|
width: 200,
|
|
14795
|
-
ellipsis: true
|
|
14852
|
+
ellipsis: true,
|
|
14853
|
+
render: renderTextEllipsis
|
|
14796
14854
|
}, {
|
|
14797
14855
|
dataIndex: 'brandName',
|
|
14798
14856
|
title: "\u54C1\u724C\u540D\u79F0",
|
|
14799
14857
|
ellipsis: true,
|
|
14800
|
-
width: 150
|
|
14858
|
+
width: 150,
|
|
14859
|
+
render: renderTextEllipsis
|
|
14801
14860
|
}, {
|
|
14802
14861
|
dataIndex: 'skuType',
|
|
14803
14862
|
title: "\u5546\u54C1\u7C7B\u578B",
|
|
14804
14863
|
ellipsis: true,
|
|
14805
|
-
width: 150
|
|
14864
|
+
width: 150,
|
|
14865
|
+
render: renderTextEllipsis
|
|
14806
14866
|
}, {
|
|
14807
14867
|
dataIndex: 'specName',
|
|
14808
14868
|
title: "SKU\u540D\u79F0",
|
|
14809
14869
|
ellipsis: true,
|
|
14810
|
-
width: 150
|
|
14870
|
+
width: 150,
|
|
14871
|
+
render: renderTextEllipsis
|
|
14811
14872
|
}, {
|
|
14812
14873
|
dataIndex: 'specNo',
|
|
14813
14874
|
title: "SKU\u7F16\u7801",
|
|
14814
14875
|
ellipsis: true,
|
|
14815
|
-
width: 150
|
|
14876
|
+
width: 150,
|
|
14877
|
+
render: renderTextEllipsis
|
|
14816
14878
|
}, {
|
|
14817
14879
|
dataIndex: 'specId',
|
|
14818
14880
|
title: "SKU ID",
|
|
14819
14881
|
ellipsis: true,
|
|
14820
|
-
width: 150
|
|
14882
|
+
width: 150,
|
|
14883
|
+
render: renderTextEllipsis
|
|
14821
14884
|
}, {
|
|
14822
14885
|
dataIndex: 'propertiesValue',
|
|
14823
14886
|
title: "\u89C4\u683C\u503C",
|
|
14824
14887
|
ellipsis: true,
|
|
14825
|
-
width: 150
|
|
14888
|
+
width: 150,
|
|
14889
|
+
render: renderTextEllipsis
|
|
14826
14890
|
}, {
|
|
14827
14891
|
dataIndex: 'skuShortTitle',
|
|
14828
14892
|
title: "\u89C4\u683C\u7B80\u79F0",
|
|
14829
14893
|
ellipsis: true,
|
|
14830
|
-
width: 150
|
|
14894
|
+
width: 150,
|
|
14895
|
+
render: renderTextEllipsis
|
|
14831
14896
|
}, {
|
|
14832
14897
|
dataIndex: 'specBarcode',
|
|
14833
14898
|
title: "\u89C4\u683C\u6761\u7801",
|
|
14834
14899
|
ellipsis: true,
|
|
14835
|
-
width: 150
|
|
14900
|
+
width: 150,
|
|
14901
|
+
render: renderTextEllipsis
|
|
14836
14902
|
}, {
|
|
14837
14903
|
dataIndex: 'specImgUrl',
|
|
14838
14904
|
title: "SKU \u56FE\u7247",
|
|
@@ -14840,7 +14906,7 @@ var kmColumns = [{
|
|
|
14840
14906
|
width: 150,
|
|
14841
14907
|
render: function render(val) {
|
|
14842
14908
|
return /*#__PURE__*/React.createElement(Image, {
|
|
14843
|
-
width:
|
|
14909
|
+
width: 30,
|
|
14844
14910
|
src: val
|
|
14845
14911
|
});
|
|
14846
14912
|
}
|
|
@@ -14850,7 +14916,7 @@ var kmColumns = [{
|
|
|
14850
14916
|
ellipsis: true,
|
|
14851
14917
|
width: 150,
|
|
14852
14918
|
render: function render(val) {
|
|
14853
|
-
return
|
|
14919
|
+
return renderTextEllipsis(getYesOrNo(val));
|
|
14854
14920
|
}
|
|
14855
14921
|
}, {
|
|
14856
14922
|
dataIndex: 'isVirtual',
|
|
@@ -14858,7 +14924,7 @@ var kmColumns = [{
|
|
|
14858
14924
|
ellipsis: true,
|
|
14859
14925
|
width: 150,
|
|
14860
14926
|
render: function render(val) {
|
|
14861
|
-
return
|
|
14927
|
+
return renderTextEllipsis(getYesOrNo(val));
|
|
14862
14928
|
}
|
|
14863
14929
|
}, {
|
|
14864
14930
|
dataIndex: 'isSkuItem',
|
|
@@ -14866,23 +14932,26 @@ var kmColumns = [{
|
|
|
14866
14932
|
ellipsis: true,
|
|
14867
14933
|
width: 150,
|
|
14868
14934
|
render: function render(val) {
|
|
14869
|
-
return
|
|
14935
|
+
return renderTextEllipsis(getYesOrNo(val));
|
|
14870
14936
|
}
|
|
14871
14937
|
}, {
|
|
14872
14938
|
dataIndex: 'marketPrice',
|
|
14873
14939
|
title: "\u5E02\u573A\u4EF7",
|
|
14874
14940
|
ellipsis: true,
|
|
14875
|
-
width: 150
|
|
14941
|
+
width: 150,
|
|
14942
|
+
render: renderTextEllipsis
|
|
14876
14943
|
}, {
|
|
14877
14944
|
dataIndex: 'retailPrice',
|
|
14878
14945
|
title: "\u96F6\u552E\u4EF7",
|
|
14879
14946
|
ellipsis: true,
|
|
14880
|
-
width: 150
|
|
14947
|
+
width: 150,
|
|
14948
|
+
render: renderTextEllipsis
|
|
14881
14949
|
}, {
|
|
14882
14950
|
dataIndex: 'costPrice',
|
|
14883
14951
|
title: "\u6210\u672C\u4EF7",
|
|
14884
14952
|
ellipsis: true,
|
|
14885
|
-
width: 150
|
|
14953
|
+
width: 150,
|
|
14954
|
+
render: renderTextEllipsis
|
|
14886
14955
|
}];
|
|
14887
14956
|
|
|
14888
14957
|
var getYesOrNo$1 = function getYesOrNo(val) {
|
|
@@ -14893,17 +14962,20 @@ var jyColumns = [{
|
|
|
14893
14962
|
dataIndex: 'goodName',
|
|
14894
14963
|
title: '商品名称',
|
|
14895
14964
|
width: 250,
|
|
14896
|
-
ellipsis: true
|
|
14965
|
+
ellipsis: true,
|
|
14966
|
+
render: renderTextEllipsis
|
|
14897
14967
|
}, {
|
|
14898
14968
|
dataIndex: 'goodNo',
|
|
14899
14969
|
title: '商品编码',
|
|
14900
14970
|
width: 150,
|
|
14901
|
-
ellipsis: true
|
|
14971
|
+
ellipsis: true,
|
|
14972
|
+
render: renderTextEllipsis
|
|
14902
14973
|
}, {
|
|
14903
14974
|
dataIndex: 'goodId',
|
|
14904
14975
|
title: '商品ID',
|
|
14905
14976
|
width: 150,
|
|
14906
|
-
ellipsis: true
|
|
14977
|
+
ellipsis: true,
|
|
14978
|
+
render: renderTextEllipsis
|
|
14907
14979
|
}, {
|
|
14908
14980
|
dataIndex: 'imageUrl',
|
|
14909
14981
|
title: '商品图片',
|
|
@@ -14911,8 +14983,8 @@ var jyColumns = [{
|
|
|
14911
14983
|
render: function render(picUrl) {
|
|
14912
14984
|
return picUrl ? /*#__PURE__*/React.createElement("img", {
|
|
14913
14985
|
style: {
|
|
14914
|
-
width: '
|
|
14915
|
-
height: '
|
|
14986
|
+
width: '30px',
|
|
14987
|
+
height: '30px',
|
|
14916
14988
|
objectFit: 'contain'
|
|
14917
14989
|
},
|
|
14918
14990
|
src: picUrl
|
|
@@ -14922,37 +14994,44 @@ var jyColumns = [{
|
|
|
14922
14994
|
dataIndex: 'goodShortName',
|
|
14923
14995
|
title: "\u5546\u54C1\u7B80\u79F0",
|
|
14924
14996
|
ellipsis: true,
|
|
14925
|
-
width: 150
|
|
14997
|
+
width: 150,
|
|
14998
|
+
render: renderTextEllipsis
|
|
14926
14999
|
}, {
|
|
14927
15000
|
dataIndex: 'categoryName',
|
|
14928
15001
|
title: "\u5546\u54C1\u7EC4",
|
|
14929
15002
|
ellipsis: true,
|
|
14930
|
-
width: 150
|
|
15003
|
+
width: 150,
|
|
15004
|
+
render: renderTextEllipsis
|
|
14931
15005
|
}, {
|
|
14932
15006
|
dataIndex: 'brandName',
|
|
14933
15007
|
title: '品牌名称',
|
|
14934
15008
|
width: 200,
|
|
14935
|
-
ellipsis: true
|
|
15009
|
+
ellipsis: true,
|
|
15010
|
+
render: renderTextEllipsis
|
|
14936
15011
|
}, {
|
|
14937
15012
|
dataIndex: 'specName',
|
|
14938
15013
|
title: '规格名称',
|
|
14939
15014
|
width: 250,
|
|
14940
|
-
ellipsis: true
|
|
15015
|
+
ellipsis: true,
|
|
15016
|
+
render: renderTextEllipsis
|
|
14941
15017
|
}, {
|
|
14942
15018
|
dataIndex: 'specNo',
|
|
14943
15019
|
title: '规格编码',
|
|
14944
15020
|
width: 150,
|
|
14945
|
-
ellipsis: true
|
|
15021
|
+
ellipsis: true,
|
|
15022
|
+
render: renderTextEllipsis
|
|
14946
15023
|
}, {
|
|
14947
15024
|
dataIndex: 'specId',
|
|
14948
15025
|
title: '规格ID',
|
|
14949
15026
|
width: 250,
|
|
14950
|
-
ellipsis: true
|
|
15027
|
+
ellipsis: true,
|
|
15028
|
+
render: renderTextEllipsis
|
|
14951
15029
|
}, {
|
|
14952
15030
|
dataIndex: 'specBarcode',
|
|
14953
15031
|
title: '规格条码',
|
|
14954
15032
|
width: 150,
|
|
14955
|
-
ellipsis: true
|
|
15033
|
+
ellipsis: true,
|
|
15034
|
+
render: renderTextEllipsis
|
|
14956
15035
|
}, {
|
|
14957
15036
|
dataIndex: 'specImgUrl',
|
|
14958
15037
|
title: '规格图片',
|
|
@@ -14960,8 +15039,8 @@ var jyColumns = [{
|
|
|
14960
15039
|
render: function render(picUrl) {
|
|
14961
15040
|
return picUrl ? /*#__PURE__*/React.createElement("img", {
|
|
14962
15041
|
style: {
|
|
14963
|
-
width: '
|
|
14964
|
-
height: '
|
|
15042
|
+
width: '30px',
|
|
15043
|
+
height: '30px',
|
|
14965
15044
|
objectFit: 'contain'
|
|
14966
15045
|
},
|
|
14967
15046
|
src: picUrl
|
|
@@ -14971,34 +15050,39 @@ var jyColumns = [{
|
|
|
14971
15050
|
dataIndex: 'colorName',
|
|
14972
15051
|
title: "\u989C\u8272",
|
|
14973
15052
|
ellipsis: true,
|
|
14974
|
-
width: 100
|
|
15053
|
+
width: 100,
|
|
15054
|
+
render: renderTextEllipsis
|
|
14975
15055
|
}, {
|
|
14976
15056
|
dataIndex: 'sizeName',
|
|
14977
15057
|
title: "\u5C3A\u7801",
|
|
14978
15058
|
ellipsis: true,
|
|
14979
|
-
width: 100
|
|
15059
|
+
width: 100,
|
|
15060
|
+
render: renderTextEllipsis
|
|
14980
15061
|
}, {
|
|
14981
15062
|
dataIndex: 'marketPrice',
|
|
14982
15063
|
title: "\u5E02\u573A\u4EF7",
|
|
14983
15064
|
ellipsis: true,
|
|
14984
|
-
width: 100
|
|
15065
|
+
width: 100,
|
|
15066
|
+
render: renderTextEllipsis
|
|
14985
15067
|
}, {
|
|
14986
15068
|
dataIndex: 'retailPrice',
|
|
14987
15069
|
title: "\u96F6\u552E\u4EF7",
|
|
14988
15070
|
ellipsis: true,
|
|
14989
|
-
width: 100
|
|
15071
|
+
width: 100,
|
|
15072
|
+
render: renderTextEllipsis
|
|
14990
15073
|
}, {
|
|
14991
15074
|
dataIndex: 'costPrice',
|
|
14992
15075
|
title: "\u6210\u672C\u4EF7",
|
|
14993
15076
|
ellipsis: true,
|
|
14994
|
-
width: 100
|
|
15077
|
+
width: 100,
|
|
15078
|
+
render: renderTextEllipsis
|
|
14995
15079
|
}, {
|
|
14996
15080
|
dataIndex: 'isGift',
|
|
14997
15081
|
title: "\u662F\u5426\u8D60\u54C1",
|
|
14998
15082
|
ellipsis: true,
|
|
14999
15083
|
width: 150,
|
|
15000
15084
|
render: function render(val) {
|
|
15001
|
-
return
|
|
15085
|
+
return renderTextEllipsis(getYesOrNo$1(val));
|
|
15002
15086
|
}
|
|
15003
15087
|
}, {
|
|
15004
15088
|
dataIndex: 'skuType',
|
|
@@ -15006,7 +15090,7 @@ var jyColumns = [{
|
|
|
15006
15090
|
ellipsis: true,
|
|
15007
15091
|
width: 150,
|
|
15008
15092
|
render: function render(val) {
|
|
15009
|
-
return
|
|
15093
|
+
return renderTextEllipsis(getYesOrNo$1(val === 'combine'));
|
|
15010
15094
|
}
|
|
15011
15095
|
}];
|
|
15012
15096
|
|
|
@@ -15151,7 +15235,8 @@ function SearchForm(_ref) {
|
|
|
15151
15235
|
}();
|
|
15152
15236
|
return /*#__PURE__*/React.createElement(Form, {
|
|
15153
15237
|
layout: "inline",
|
|
15154
|
-
form: form
|
|
15238
|
+
form: form,
|
|
15239
|
+
className: "search-form"
|
|
15155
15240
|
}, searchFormData.map(function (item) {
|
|
15156
15241
|
var label = item.label,
|
|
15157
15242
|
name = item.name,
|
|
@@ -15191,7 +15276,8 @@ function SearchForm(_ref) {
|
|
|
15191
15276
|
}), /*#__PURE__*/React.createElement(Form.Item, {
|
|
15192
15277
|
style: {
|
|
15193
15278
|
marginBottom: '12px'
|
|
15194
|
-
}
|
|
15279
|
+
},
|
|
15280
|
+
className: "search-form-actions"
|
|
15195
15281
|
}, /*#__PURE__*/React.createElement(Button, {
|
|
15196
15282
|
type: "primary",
|
|
15197
15283
|
style: {
|
|
@@ -15435,7 +15521,8 @@ var GoodList = function GoodList(props, ref) {
|
|
|
15435
15521
|
style: {
|
|
15436
15522
|
marginTop: '4px'
|
|
15437
15523
|
}
|
|
15438
|
-
}, /*#__PURE__*/React.createElement(Table, _objectSpread2({
|
|
15524
|
+
}, /*#__PURE__*/React.createElement(Table, _objectSpread2(_objectSpread2({
|
|
15525
|
+
className: "GoodModalColumns",
|
|
15439
15526
|
rowSelection: rowSelection,
|
|
15440
15527
|
rowKey: "specNo",
|
|
15441
15528
|
columns: columns,
|
|
@@ -15443,7 +15530,9 @@ var GoodList = function GoodList(props, ref) {
|
|
|
15443
15530
|
x: '100%',
|
|
15444
15531
|
y: 250
|
|
15445
15532
|
}
|
|
15446
|
-
}, tableProps)
|
|
15533
|
+
}, tableProps), {}, {
|
|
15534
|
+
size: "small"
|
|
15535
|
+
}))), /*#__PURE__*/React.createElement(Popover, {
|
|
15447
15536
|
getPopupContainer: function getPopupContainer(triggerNode) {
|
|
15448
15537
|
return triggerNode.parentElement;
|
|
15449
15538
|
},
|
|
@@ -15687,13 +15776,15 @@ var GoodList$1 = function GoodList(props, ref) {
|
|
|
15687
15776
|
marginTop: '4px'
|
|
15688
15777
|
}
|
|
15689
15778
|
}, /*#__PURE__*/React.createElement(Table, _objectSpread2({
|
|
15779
|
+
className: "GoodModalColumns",
|
|
15690
15780
|
rowSelection: rowSelection,
|
|
15691
15781
|
rowKey: "goodNo",
|
|
15692
15782
|
columns: columns,
|
|
15693
15783
|
scroll: {
|
|
15694
15784
|
x: '100%',
|
|
15695
15785
|
y: 250
|
|
15696
|
-
}
|
|
15786
|
+
},
|
|
15787
|
+
size: "small"
|
|
15697
15788
|
}, tableProps))), /*#__PURE__*/React.createElement(Popover, {
|
|
15698
15789
|
getPopupContainer: function getPopupContainer(triggerNode) {
|
|
15699
15790
|
return triggerNode.parentElement;
|
|
@@ -15928,13 +16019,15 @@ var GoodList$2 = function GoodList(props, ref) {
|
|
|
15928
16019
|
marginTop: '4px'
|
|
15929
16020
|
}
|
|
15930
16021
|
}, /*#__PURE__*/React.createElement(Table, _objectSpread2({
|
|
16022
|
+
className: "GoodModalColumns",
|
|
15931
16023
|
rowSelection: rowSelection,
|
|
15932
16024
|
rowKey: "specNo",
|
|
15933
16025
|
columns: columns,
|
|
15934
16026
|
scroll: {
|
|
15935
16027
|
x: '100%',
|
|
15936
16028
|
y: 250
|
|
15937
|
-
}
|
|
16029
|
+
},
|
|
16030
|
+
size: "small"
|
|
15938
16031
|
}, tableProps))), /*#__PURE__*/React.createElement(Popover, {
|
|
15939
16032
|
getPopupContainer: function getPopupContainer(triggerNode) {
|
|
15940
16033
|
return triggerNode.parentElement;
|
|
@@ -16172,13 +16265,15 @@ var GoodList$3 = function GoodList(props, ref) {
|
|
|
16172
16265
|
marginTop: '4px'
|
|
16173
16266
|
}
|
|
16174
16267
|
}, /*#__PURE__*/React.createElement(Table, _objectSpread2({
|
|
16268
|
+
className: "GoodModalColumns",
|
|
16175
16269
|
rowSelection: rowSelection,
|
|
16176
16270
|
rowKey: rowCheckKey,
|
|
16177
16271
|
columns: columns,
|
|
16178
16272
|
scroll: {
|
|
16179
16273
|
x: '100%',
|
|
16180
16274
|
y: 250
|
|
16181
|
-
}
|
|
16275
|
+
},
|
|
16276
|
+
size: "small"
|
|
16182
16277
|
}, tableProps))), /*#__PURE__*/React.createElement(Popover, {
|
|
16183
16278
|
getPopupContainer: function getPopupContainer(triggerNode) {
|
|
16184
16279
|
return triggerNode.parentElement;
|
|
@@ -16413,7 +16508,8 @@ var GoodList$4 = function GoodList(props, ref) {
|
|
|
16413
16508
|
style: {
|
|
16414
16509
|
marginTop: '4px'
|
|
16415
16510
|
}
|
|
16416
|
-
}, /*#__PURE__*/React.createElement(Table, _objectSpread2({
|
|
16511
|
+
}, /*#__PURE__*/React.createElement(Table, _objectSpread2(_objectSpread2({
|
|
16512
|
+
className: "GoodModalColumns",
|
|
16417
16513
|
rowSelection: rowSelection,
|
|
16418
16514
|
rowKey: "id",
|
|
16419
16515
|
columns: columns,
|
|
@@ -16421,7 +16517,9 @@ var GoodList$4 = function GoodList(props, ref) {
|
|
|
16421
16517
|
x: '100%',
|
|
16422
16518
|
y: 250
|
|
16423
16519
|
}
|
|
16424
|
-
}, tableProps)
|
|
16520
|
+
}, tableProps), {}, {
|
|
16521
|
+
size: "small"
|
|
16522
|
+
}))), /*#__PURE__*/React.createElement(Popover, {
|
|
16425
16523
|
getPopupContainer: function getPopupContainer(triggerNode) {
|
|
16426
16524
|
return triggerNode.parentElement;
|
|
16427
16525
|
},
|
|
@@ -16633,8 +16731,8 @@ function multiSelect() {
|
|
|
16633
16731
|
};
|
|
16634
16732
|
}
|
|
16635
16733
|
|
|
16636
|
-
var css_248z$
|
|
16637
|
-
styleInject(css_248z$
|
|
16734
|
+
var css_248z$d = ".high-performance-table .lock-left {\n background: #FFF !important;\n}\n.high-performance-table .art-empty-wrapper {\n margin-top: 24px;\n}\n.high-performance-table .cell-content {\n height: 48px;\n display: flex;\n align-items: center;\n overflow: hidden;\n text-overflow: ellipsis;\n white-space: nowrap;\n padding: 8px 12px;\n}\n";
|
|
16735
|
+
styleInject(css_248z$d);
|
|
16638
16736
|
|
|
16639
16737
|
var _excluded$e = ["children"];
|
|
16640
16738
|
var Cell = function Cell(_ref) {
|
|
@@ -16735,8 +16833,8 @@ var HighPerformanceTable = function HighPerformanceTable(_ref2) {
|
|
|
16735
16833
|
})));
|
|
16736
16834
|
};
|
|
16737
16835
|
|
|
16738
|
-
var css_248z$
|
|
16739
|
-
styleInject(css_248z$
|
|
16836
|
+
var css_248z$e = ".search-header-wrap .is-open {\n height: auto;\n}\n.search-header-wrap .not-open {\n max-height: 71px;\n overflow-y: auto;\n}\n#table-resizable .header {\n display: flex;\n align-items: center;\n padding: 8px 16px;\n background-color: #fff;\n}\n#table-resizable .header .operate {\n height: 32px;\n padding: 8px 0;\n cursor: pointer;\n}\n#table-resizable .header .operate .anticon {\n font-size: 16px;\n}\n#table-resizable .header .operate .anticon:hover {\n color: #1b5bf3;\n transition: all 0.3s cubic-bezier(0.645, 0.045, 0.355, 1);\n}\n#table-resizable .header .title {\n font-weight: bold;\n}\n#table-resizable .actions-layout {\n display: flex;\n justify-content: space-between;\n}\n#table-resizable .react-resizable {\n position: relative;\n background-clip: padding-box;\n}\n#table-resizable th[colspan] {\n padding: 0px !important;\n overflow: hidden;\n color: #86909c;\n font-weight: normal;\n font-size: 14px;\n font-family: PingFangSC-Regular;\n line-height: 20px;\n white-space: nowrap;\n text-overflow: ellipsis;\n background: #e5e6eb;\n}\n#table-resizable .react-resizable-handle {\n position: absolute;\n right: -5px;\n bottom: 0;\n z-index: 1;\n width: 10px;\n height: 100%;\n cursor: col-resize;\n}\n#table-resizable .fz-12 {\n padding-right: 8px;\n font-size: 12px;\n}\n#table-resizable .tableFooter {\n display: flex;\n align-items: center;\n justify-content: space-between;\n height: 64px;\n padding: 0 36px 0 24px;\n background-color: #fff;\n}\n#table-resizable .tableFooter .total {\n /* 文字色/86909C */\n color: #86909c;\n font-weight: normal;\n font-size: 14px;\n font-family: PingFangSC-Regular;\n line-height: 22px;\n letter-spacing: 0px;\n}\n#table-resizable .ant-table-tbody > tr > td {\n padding: 4px 8px;\n overflow: hidden;\n white-space: nowrap;\n text-overflow: ellipsis;\n}\n#table-resizable .ant-form-item {\n margin-bottom: 4px;\n margin-right: 0;\n}\n#table-resizable .ant-table-ping-left .ant-table-cell-fix-left-first::after,\n#table-resizable .ant-table-ping-left .ant-table-cell-fix-left-last::after,\n#table-resizable .ant-table-thead > tr > th,\n#table-resizable .ant-table-cell-fix-left-first::after,\n#table-resizable .ant-table .ant-table-container::before,\n#table-resizable .ant-table .ant-table-container::after,\n#table-resizable .ant-table-ping-right:not(.ant-table-has-fix-right) .ant-table-container::after,\n#table-resizable .ant-table-thead > tr > th:not(:last-child):not(.ant-table-selection-column):not(\n .ant-table-row-expand-icon-cell\n ):not([colspan])::before,\n#table-resizable .ant-table-cell-fix-left-last::after {\n box-shadow: none;\n transform: none;\n transition: none;\n}\n#table-resizable .ant-checkbox-checked .ant-checkbox-inner::after {\n transition: none;\n}\n#table-resizable .ant-checkbox-checked::after {\n animation: none;\n}\n#table-resizable .rowSelectClass {\n background-color: #eee;\n}\n#table-resizable .rowSelectClass .ant-table-cell-fix-left {\n background-color: #eee;\n}\n";
|
|
16837
|
+
styleInject(css_248z$e);
|
|
16740
16838
|
|
|
16741
16839
|
var TrimInput = function TrimInput(props) {
|
|
16742
16840
|
var handleBlur = function handleBlur(e) {
|
|
@@ -18075,13 +18173,15 @@ var GoodList$5 = function GoodList(props, ref) {
|
|
|
18075
18173
|
marginTop: '4px'
|
|
18076
18174
|
}
|
|
18077
18175
|
}, /*#__PURE__*/React.createElement(Table, _objectSpread2({
|
|
18176
|
+
className: "GoodModalColumns",
|
|
18078
18177
|
rowSelection: rowSelection,
|
|
18079
18178
|
rowKey: "id",
|
|
18080
18179
|
columns: columns,
|
|
18081
18180
|
scroll: {
|
|
18082
18181
|
x: '100%',
|
|
18083
18182
|
y: 250
|
|
18084
|
-
}
|
|
18183
|
+
},
|
|
18184
|
+
size: "small"
|
|
18085
18185
|
}, tableProps))), /*#__PURE__*/React.createElement(Popover, {
|
|
18086
18186
|
getPopupContainer: function getPopupContainer(triggerNode) {
|
|
18087
18187
|
return triggerNode.parentElement;
|
|
@@ -18152,57 +18252,68 @@ var getColumns = function getColumns(_ref) {
|
|
|
18152
18252
|
BS_E3_REISSUE_GOODS: [{
|
|
18153
18253
|
dataIndex: 'sku',
|
|
18154
18254
|
title: "SKU",
|
|
18155
|
-
width: 150
|
|
18255
|
+
width: 150,
|
|
18256
|
+
render: renderTextEllipsis
|
|
18156
18257
|
}, {
|
|
18157
18258
|
dataIndex: 'skuId',
|
|
18158
18259
|
title: "SKU ID",
|
|
18159
|
-
width: 150
|
|
18260
|
+
width: 150,
|
|
18261
|
+
render: renderTextEllipsis
|
|
18160
18262
|
}, {
|
|
18161
18263
|
dataIndex: 'goodsName',
|
|
18162
18264
|
title: "\u5546\u54C1\u540D\u79F0",
|
|
18163
|
-
width: 150
|
|
18265
|
+
width: 150,
|
|
18266
|
+
render: renderTextEllipsis
|
|
18164
18267
|
}, {
|
|
18165
18268
|
dataIndex: 'goodsShortName',
|
|
18166
18269
|
title: "\u5546\u54C1\u7B80\u79F0",
|
|
18167
|
-
width: 150
|
|
18270
|
+
width: 150,
|
|
18271
|
+
render: renderTextEllipsis
|
|
18168
18272
|
}, {
|
|
18169
18273
|
dataIndex: 'picPath',
|
|
18170
18274
|
title: "\u5546\u54C1\u56FE\u7247",
|
|
18171
18275
|
width: 150,
|
|
18172
18276
|
render: function render(val) {
|
|
18173
18277
|
return /*#__PURE__*/React.createElement(Image, {
|
|
18174
|
-
width:
|
|
18278
|
+
width: 30,
|
|
18175
18279
|
src: val
|
|
18176
18280
|
});
|
|
18177
18281
|
}
|
|
18178
18282
|
}, {
|
|
18179
18283
|
dataIndex: 'goodsSn',
|
|
18180
18284
|
title: "\u8D27\u53F7",
|
|
18181
|
-
width: 150
|
|
18285
|
+
width: 150,
|
|
18286
|
+
render: renderTextEllipsis
|
|
18182
18287
|
}, {
|
|
18183
18288
|
dataIndex: 'goodsId',
|
|
18184
18289
|
title: "\u8D27\u53F7ID",
|
|
18185
|
-
width: 150
|
|
18290
|
+
width: 150,
|
|
18291
|
+
render: renderTextEllipsis
|
|
18186
18292
|
}, {
|
|
18187
18293
|
dataIndex: 'colorName',
|
|
18188
18294
|
title: "\u989C\u8272\u540D\u79F0",
|
|
18189
|
-
width: 150
|
|
18295
|
+
width: 150,
|
|
18296
|
+
render: renderTextEllipsis
|
|
18190
18297
|
}, {
|
|
18191
18298
|
dataIndex: 'colorCode',
|
|
18192
18299
|
title: "\u989C\u8272\u4EE3\u7801",
|
|
18193
|
-
width: 150
|
|
18300
|
+
width: 150,
|
|
18301
|
+
render: renderTextEllipsis
|
|
18194
18302
|
}, {
|
|
18195
18303
|
dataIndex: 'sizeName',
|
|
18196
18304
|
title: "\u5C3A\u7801\u540D\u79F0",
|
|
18197
|
-
width: 150
|
|
18305
|
+
width: 150,
|
|
18306
|
+
render: renderTextEllipsis
|
|
18198
18307
|
}, {
|
|
18199
18308
|
dataIndex: 'sizeCode',
|
|
18200
18309
|
title: "\u5C3A\u7801\u4EE3\u7801",
|
|
18201
|
-
width: 150
|
|
18310
|
+
width: 150,
|
|
18311
|
+
render: renderTextEllipsis
|
|
18202
18312
|
}, {
|
|
18203
18313
|
dataIndex: 'brandName',
|
|
18204
18314
|
title: "\u54C1\u724C\u540D\u79F0",
|
|
18205
|
-
width: 150
|
|
18315
|
+
width: 150,
|
|
18316
|
+
render: renderTextEllipsis
|
|
18206
18317
|
}, {
|
|
18207
18318
|
dataIndex: 'goodsNumber',
|
|
18208
18319
|
title: "\u5546\u54C1\u6570\u91CF",
|
|
@@ -18229,25 +18340,29 @@ var getColumns = function getColumns(_ref) {
|
|
|
18229
18340
|
title: "SKU",
|
|
18230
18341
|
align: 'center',
|
|
18231
18342
|
ellipsis: true,
|
|
18232
|
-
width: 150
|
|
18343
|
+
width: 150,
|
|
18344
|
+
render: renderTextEllipsis
|
|
18233
18345
|
}, {
|
|
18234
18346
|
dataIndex: 'skuId',
|
|
18235
18347
|
title: "SKU ID",
|
|
18236
18348
|
align: 'center',
|
|
18237
18349
|
ellipsis: true,
|
|
18238
|
-
width: 150
|
|
18350
|
+
width: 150,
|
|
18351
|
+
render: renderTextEllipsis
|
|
18239
18352
|
}, {
|
|
18240
18353
|
dataIndex: 'goodsName',
|
|
18241
18354
|
title: "\u5546\u54C1\u540D\u79F0",
|
|
18242
18355
|
align: 'center',
|
|
18243
18356
|
ellipsis: true,
|
|
18244
|
-
width: 150
|
|
18357
|
+
width: 150,
|
|
18358
|
+
render: renderTextEllipsis
|
|
18245
18359
|
}, {
|
|
18246
18360
|
dataIndex: 'goodsShortName',
|
|
18247
18361
|
title: "\u5546\u54C1\u7B80\u79F0",
|
|
18248
18362
|
align: 'center',
|
|
18249
18363
|
ellipsis: true,
|
|
18250
|
-
width: 100
|
|
18364
|
+
width: 100,
|
|
18365
|
+
render: renderTextEllipsis
|
|
18251
18366
|
}, {
|
|
18252
18367
|
dataIndex: 'picPath',
|
|
18253
18368
|
title: "\u5546\u54C1\u56FE\u7247",
|
|
@@ -18256,7 +18371,7 @@ var getColumns = function getColumns(_ref) {
|
|
|
18256
18371
|
width: 100,
|
|
18257
18372
|
render: function render(val) {
|
|
18258
18373
|
return /*#__PURE__*/React.createElement(Image, {
|
|
18259
|
-
width:
|
|
18374
|
+
width: 30,
|
|
18260
18375
|
src: val
|
|
18261
18376
|
});
|
|
18262
18377
|
}
|
|
@@ -18265,43 +18380,50 @@ var getColumns = function getColumns(_ref) {
|
|
|
18265
18380
|
title: "\u8D27\u53F7",
|
|
18266
18381
|
align: 'center',
|
|
18267
18382
|
ellipsis: true,
|
|
18268
|
-
width: 150
|
|
18383
|
+
width: 150,
|
|
18384
|
+
render: renderTextEllipsis
|
|
18269
18385
|
}, {
|
|
18270
18386
|
dataIndex: 'goodsId',
|
|
18271
18387
|
title: "\u8D27\u53F7ID",
|
|
18272
18388
|
align: 'center',
|
|
18273
18389
|
ellipsis: true,
|
|
18274
|
-
width: 150
|
|
18390
|
+
width: 150,
|
|
18391
|
+
render: renderTextEllipsis
|
|
18275
18392
|
}, {
|
|
18276
18393
|
dataIndex: 'colorName',
|
|
18277
18394
|
title: "\u989C\u8272\u540D\u79F0",
|
|
18278
18395
|
align: 'center',
|
|
18279
18396
|
ellipsis: true,
|
|
18280
|
-
width: 100
|
|
18397
|
+
width: 100,
|
|
18398
|
+
render: renderTextEllipsis
|
|
18281
18399
|
}, {
|
|
18282
18400
|
dataIndex: 'colorCode',
|
|
18283
18401
|
title: "\u989C\u8272\u4EE3\u7801",
|
|
18284
18402
|
align: 'center',
|
|
18285
18403
|
ellipsis: true,
|
|
18286
|
-
width: 150
|
|
18404
|
+
width: 150,
|
|
18405
|
+
render: renderTextEllipsis
|
|
18287
18406
|
}, {
|
|
18288
18407
|
dataIndex: 'sizeName',
|
|
18289
18408
|
title: "\u5C3A\u7801\u540D\u79F0",
|
|
18290
18409
|
align: 'center',
|
|
18291
18410
|
ellipsis: true,
|
|
18292
|
-
width: 100
|
|
18411
|
+
width: 100,
|
|
18412
|
+
render: renderTextEllipsis
|
|
18293
18413
|
}, {
|
|
18294
18414
|
dataIndex: 'sizeCode',
|
|
18295
18415
|
title: "\u5C3A\u7801\u4EE3\u7801",
|
|
18296
18416
|
align: 'center',
|
|
18297
18417
|
ellipsis: true,
|
|
18298
|
-
width: 100
|
|
18418
|
+
width: 100,
|
|
18419
|
+
render: renderTextEllipsis
|
|
18299
18420
|
}, {
|
|
18300
18421
|
dataIndex: 'brandName',
|
|
18301
18422
|
title: "\u54C1\u724C\u540D\u79F0",
|
|
18302
18423
|
align: 'center',
|
|
18303
18424
|
ellipsis: true,
|
|
18304
|
-
width: 150
|
|
18425
|
+
width: 150,
|
|
18426
|
+
render: renderTextEllipsis
|
|
18305
18427
|
}, {
|
|
18306
18428
|
dataIndex: 'goodsNumber',
|
|
18307
18429
|
title: "\u5546\u54C1\u6570\u91CF",
|
|
@@ -18382,7 +18504,8 @@ var getColumns = function getColumns(_ref) {
|
|
|
18382
18504
|
title: "\u5957\u9910SKU",
|
|
18383
18505
|
align: 'center',
|
|
18384
18506
|
ellipsis: true,
|
|
18385
|
-
width: 150
|
|
18507
|
+
width: 150,
|
|
18508
|
+
render: renderTextEllipsis
|
|
18386
18509
|
}, {
|
|
18387
18510
|
dataIndex: 'tcGoodsNumber',
|
|
18388
18511
|
title: "\u5957\u9910\u5957\u6570",
|
|
@@ -18442,19 +18565,22 @@ var getColumns$1 = function getColumns(_ref) {
|
|
|
18442
18565
|
title: "".concat(text, "sku\u540D\u79F0"),
|
|
18443
18566
|
align: 'center',
|
|
18444
18567
|
ellipsis: true,
|
|
18445
|
-
width: 250
|
|
18568
|
+
width: 250,
|
|
18569
|
+
render: renderTextEllipsis
|
|
18446
18570
|
}, {
|
|
18447
18571
|
dataIndex: 'sku',
|
|
18448
18572
|
title: "".concat(text, "sku\u7F16\u7801"),
|
|
18449
18573
|
align: 'center',
|
|
18450
18574
|
ellipsis: true,
|
|
18451
|
-
width: 100
|
|
18575
|
+
width: 100,
|
|
18576
|
+
render: renderTextEllipsis
|
|
18452
18577
|
}, {
|
|
18453
18578
|
dataIndex: 'name',
|
|
18454
18579
|
title: "".concat(text, "\u540D\u79F0"),
|
|
18455
18580
|
align: 'center',
|
|
18456
18581
|
ellipsis: true,
|
|
18457
|
-
width: 250
|
|
18582
|
+
width: 250,
|
|
18583
|
+
render: renderTextEllipsis
|
|
18458
18584
|
}, {
|
|
18459
18585
|
dataIndex: 'pic',
|
|
18460
18586
|
title: "\u56FE\u7247",
|
|
@@ -18463,7 +18589,7 @@ var getColumns$1 = function getColumns(_ref) {
|
|
|
18463
18589
|
width: 100,
|
|
18464
18590
|
render: function render(val) {
|
|
18465
18591
|
return /*#__PURE__*/React.createElement(Image, {
|
|
18466
|
-
width:
|
|
18592
|
+
width: 30,
|
|
18467
18593
|
src: val
|
|
18468
18594
|
});
|
|
18469
18595
|
}
|
|
@@ -18472,7 +18598,8 @@ var getColumns$1 = function getColumns(_ref) {
|
|
|
18472
18598
|
title: "".concat(text, "\u7F16\u7801"),
|
|
18473
18599
|
align: 'center',
|
|
18474
18600
|
ellipsis: true,
|
|
18475
|
-
width: 100
|
|
18601
|
+
width: 100,
|
|
18602
|
+
render: renderTextEllipsis
|
|
18476
18603
|
}, {
|
|
18477
18604
|
dataIndex: 'money',
|
|
18478
18605
|
title: "\u5B9E\u4ED8\u91D1\u989D",
|
|
@@ -18515,13 +18642,15 @@ var getColumns$1 = function getColumns(_ref) {
|
|
|
18515
18642
|
title: "\u6279\u6B21\u53F7",
|
|
18516
18643
|
align: 'center',
|
|
18517
18644
|
ellipsis: true,
|
|
18518
|
-
width: 100
|
|
18645
|
+
width: 100,
|
|
18646
|
+
render: renderTextEllipsis
|
|
18519
18647
|
}, {
|
|
18520
18648
|
dataIndex: 'expireDate',
|
|
18521
18649
|
title: "\u6709\u6548\u671F",
|
|
18522
18650
|
align: 'center',
|
|
18523
18651
|
ellipsis: true,
|
|
18524
|
-
width: 100
|
|
18652
|
+
width: 100,
|
|
18653
|
+
render: renderTextEllipsis
|
|
18525
18654
|
}]
|
|
18526
18655
|
};
|
|
18527
18656
|
};
|
|
@@ -18536,7 +18665,7 @@ var renderGiftType = function renderGiftType(val) {
|
|
|
18536
18665
|
6: '天猫优仓赠品',
|
|
18537
18666
|
7: '淘宝CRM会员送赠'
|
|
18538
18667
|
};
|
|
18539
|
-
return
|
|
18668
|
+
return renderTextEllipsis(giftTypeMap[val]);
|
|
18540
18669
|
};
|
|
18541
18670
|
var isNumberOrNumberString = function isNumberOrNumberString(value) {
|
|
18542
18671
|
if (typeof value === 'number') return true;
|
|
@@ -18630,13 +18759,15 @@ var getColumns$2 = function getColumns(_ref) {
|
|
|
18630
18759
|
title: "\u5546\u54C1ID",
|
|
18631
18760
|
width: 250,
|
|
18632
18761
|
align: 'center',
|
|
18633
|
-
ellipsis: true
|
|
18762
|
+
ellipsis: true,
|
|
18763
|
+
render: renderTextEllipsis
|
|
18634
18764
|
}, {
|
|
18635
18765
|
dataIndex: 'goodNo',
|
|
18636
18766
|
title: "\u5546\u54C1\u7F16\u7801",
|
|
18637
18767
|
align: 'center',
|
|
18638
18768
|
ellipsis: true,
|
|
18639
|
-
width: 180
|
|
18769
|
+
width: 180,
|
|
18770
|
+
render: renderTextEllipsis
|
|
18640
18771
|
}, {
|
|
18641
18772
|
dataIndex: 'goodName',
|
|
18642
18773
|
title: "\u5546\u54C1\u540D\u79F0",
|
|
@@ -18652,25 +18783,29 @@ var getColumns$2 = function getColumns(_ref) {
|
|
|
18652
18783
|
title: "\u5E73\u53F0\u5546\u54C1\u540D\u79F0",
|
|
18653
18784
|
width: 200,
|
|
18654
18785
|
align: 'center',
|
|
18655
|
-
ellipsis: true
|
|
18786
|
+
ellipsis: true,
|
|
18787
|
+
render: renderTextEllipsis
|
|
18656
18788
|
}, {
|
|
18657
18789
|
dataIndex: 'platformGoodsId',
|
|
18658
18790
|
title: "\u5E73\u53F0\u5546\u54C1ID",
|
|
18659
18791
|
width: 180,
|
|
18660
18792
|
align: 'center',
|
|
18661
|
-
ellipsis: true
|
|
18793
|
+
ellipsis: true,
|
|
18794
|
+
render: renderTextEllipsis
|
|
18662
18795
|
}, {
|
|
18663
18796
|
dataIndex: 'specId',
|
|
18664
18797
|
title: "SKUID",
|
|
18665
18798
|
align: 'center',
|
|
18666
18799
|
ellipsis: true,
|
|
18667
|
-
width: 150
|
|
18800
|
+
width: 150,
|
|
18801
|
+
render: renderTextEllipsis
|
|
18668
18802
|
}, {
|
|
18669
18803
|
dataIndex: 'specNo',
|
|
18670
18804
|
title: "\u5546\u54C1SKU\u7F16\u7801",
|
|
18671
18805
|
align: 'center',
|
|
18672
18806
|
ellipsis: true,
|
|
18673
|
-
width: 180
|
|
18807
|
+
width: 180,
|
|
18808
|
+
render: renderTextEllipsis
|
|
18674
18809
|
}, {
|
|
18675
18810
|
dataIndex: 'specName',
|
|
18676
18811
|
title: "\u5546\u54C1SKU\u540D\u79F0",
|
|
@@ -18686,19 +18821,22 @@ var getColumns$2 = function getColumns(_ref) {
|
|
|
18686
18821
|
title: "\u5E73\u53F0\u89C4\u683C\u540D\u79F0",
|
|
18687
18822
|
width: 200,
|
|
18688
18823
|
align: 'center',
|
|
18689
|
-
ellipsis: true
|
|
18824
|
+
ellipsis: true,
|
|
18825
|
+
render: renderTextEllipsis
|
|
18690
18826
|
}, {
|
|
18691
18827
|
dataIndex: 'platformSpecId',
|
|
18692
18828
|
title: "\u5E73\u53F0\u89C4\u683CID",
|
|
18693
18829
|
width: 180,
|
|
18694
18830
|
align: 'center',
|
|
18695
|
-
ellipsis: true
|
|
18831
|
+
ellipsis: true,
|
|
18832
|
+
render: renderTextEllipsis
|
|
18696
18833
|
}, {
|
|
18697
18834
|
dataIndex: 'brandName',
|
|
18698
18835
|
title: "\u54C1\u724C\u540D\u79F0",
|
|
18699
18836
|
width: 180,
|
|
18700
18837
|
align: 'center',
|
|
18701
|
-
ellipsis: true
|
|
18838
|
+
ellipsis: true,
|
|
18839
|
+
render: renderTextEllipsis
|
|
18702
18840
|
}, {
|
|
18703
18841
|
dataIndex: 'orderPrice',
|
|
18704
18842
|
title: "\u8865\u53D1\u91D1\u989D",
|
|
@@ -18742,13 +18880,15 @@ var getColumns$2 = function getColumns(_ref) {
|
|
|
18742
18880
|
title: "\u5546\u54C1ID",
|
|
18743
18881
|
align: 'center',
|
|
18744
18882
|
ellipsis: true,
|
|
18745
|
-
width: 250
|
|
18883
|
+
width: 250,
|
|
18884
|
+
render: renderTextEllipsis
|
|
18746
18885
|
}, {
|
|
18747
18886
|
dataIndex: 'goodNo',
|
|
18748
18887
|
title: "\u5546\u54C1\u7F16\u7801",
|
|
18749
18888
|
align: 'center',
|
|
18750
18889
|
ellipsis: true,
|
|
18751
|
-
width: 180
|
|
18890
|
+
width: 180,
|
|
18891
|
+
render: renderTextEllipsis
|
|
18752
18892
|
}, {
|
|
18753
18893
|
dataIndex: 'goodName',
|
|
18754
18894
|
title: "".concat(text, "\u5546\u54C1\u540D\u79F0"),
|
|
@@ -18764,25 +18904,29 @@ var getColumns$2 = function getColumns(_ref) {
|
|
|
18764
18904
|
title: "\u5E73\u53F0\u5546\u54C1\u540D\u79F0",
|
|
18765
18905
|
width: 200,
|
|
18766
18906
|
align: 'center',
|
|
18767
|
-
ellipsis: true
|
|
18907
|
+
ellipsis: true,
|
|
18908
|
+
render: renderTextEllipsis
|
|
18768
18909
|
}, {
|
|
18769
18910
|
dataIndex: 'platformGoodsId',
|
|
18770
18911
|
title: "\u5E73\u53F0\u5546\u54C1ID",
|
|
18771
18912
|
width: 180,
|
|
18772
18913
|
align: 'center',
|
|
18773
|
-
ellipsis: true
|
|
18914
|
+
ellipsis: true,
|
|
18915
|
+
render: renderTextEllipsis
|
|
18774
18916
|
}, {
|
|
18775
18917
|
dataIndex: 'specId',
|
|
18776
18918
|
title: "".concat(text, "SKUID"),
|
|
18777
18919
|
align: 'center',
|
|
18778
18920
|
ellipsis: true,
|
|
18779
|
-
width:
|
|
18921
|
+
width: 150,
|
|
18922
|
+
render: renderTextEllipsis
|
|
18780
18923
|
}, {
|
|
18781
18924
|
dataIndex: 'specNo',
|
|
18782
18925
|
title: "".concat(text, "\u5546\u54C1SKU\u7F16\u7801"),
|
|
18783
18926
|
align: 'center',
|
|
18784
18927
|
ellipsis: true,
|
|
18785
|
-
width: 180
|
|
18928
|
+
width: 180,
|
|
18929
|
+
render: renderTextEllipsis
|
|
18786
18930
|
}, {
|
|
18787
18931
|
dataIndex: 'specName',
|
|
18788
18932
|
title: "".concat(text, "\u5546\u54C1SKU\u540D\u79F0"),
|
|
@@ -18798,19 +18942,22 @@ var getColumns$2 = function getColumns(_ref) {
|
|
|
18798
18942
|
title: "\u5E73\u53F0\u89C4\u683C\u540D\u79F0",
|
|
18799
18943
|
width: 200,
|
|
18800
18944
|
align: 'center',
|
|
18801
|
-
ellipsis: true
|
|
18945
|
+
ellipsis: true,
|
|
18946
|
+
render: renderTextEllipsis
|
|
18802
18947
|
}, {
|
|
18803
18948
|
dataIndex: 'platformSpecId',
|
|
18804
18949
|
title: "\u5E73\u53F0\u89C4\u683CID",
|
|
18805
18950
|
width: 180,
|
|
18806
18951
|
align: 'center',
|
|
18807
|
-
ellipsis: true
|
|
18952
|
+
ellipsis: true,
|
|
18953
|
+
render: renderTextEllipsis
|
|
18808
18954
|
}, {
|
|
18809
18955
|
dataIndex: 'brandName',
|
|
18810
18956
|
title: "\u54C1\u724C\u540D\u79F0",
|
|
18811
18957
|
width: 180,
|
|
18812
18958
|
align: 'center',
|
|
18813
|
-
ellipsis: true
|
|
18959
|
+
ellipsis: true,
|
|
18960
|
+
render: renderTextEllipsis
|
|
18814
18961
|
}, {
|
|
18815
18962
|
dataIndex: 'orderPrice',
|
|
18816
18963
|
title: "\u6210\u4EA4\u603B\u91D1\u989D",
|
|
@@ -18850,8 +18997,7 @@ var getColumns$2 = function getColumns(_ref) {
|
|
|
18850
18997
|
title: "\u8D60\u54C1\u65B9\u5F0F",
|
|
18851
18998
|
align: 'center',
|
|
18852
18999
|
ellipsis: true,
|
|
18853
|
-
width: 100
|
|
18854
|
-
render: renderGiftType
|
|
19000
|
+
width: 100
|
|
18855
19001
|
}],
|
|
18856
19002
|
//旺店通退货商品信息
|
|
18857
19003
|
WDT_RETURN_GOODS: [{
|
|
@@ -18859,13 +19005,15 @@ var getColumns$2 = function getColumns(_ref) {
|
|
|
18859
19005
|
title: "\u5546\u54C1ID",
|
|
18860
19006
|
align: 'center',
|
|
18861
19007
|
ellipsis: true,
|
|
18862
|
-
width: 250
|
|
19008
|
+
width: 250,
|
|
19009
|
+
render: renderTextEllipsis
|
|
18863
19010
|
}, {
|
|
18864
19011
|
dataIndex: 'goodNo',
|
|
18865
19012
|
title: "\u5546\u54C1\u7F16\u7801",
|
|
18866
19013
|
align: 'center',
|
|
18867
19014
|
ellipsis: true,
|
|
18868
|
-
width: 180
|
|
19015
|
+
width: 180,
|
|
19016
|
+
render: renderTextEllipsis
|
|
18869
19017
|
}, {
|
|
18870
19018
|
dataIndex: 'goodName',
|
|
18871
19019
|
title: "".concat(text, "\u5546\u54C1\u540D\u79F0"),
|
|
@@ -18881,25 +19029,29 @@ var getColumns$2 = function getColumns(_ref) {
|
|
|
18881
19029
|
title: "\u5E73\u53F0\u5546\u54C1\u540D\u79F0",
|
|
18882
19030
|
width: 200,
|
|
18883
19031
|
align: 'center',
|
|
18884
|
-
ellipsis: true
|
|
19032
|
+
ellipsis: true,
|
|
19033
|
+
render: renderTextEllipsis
|
|
18885
19034
|
}, {
|
|
18886
19035
|
dataIndex: 'platformGoodsId',
|
|
18887
19036
|
title: "\u5E73\u53F0\u5546\u54C1ID",
|
|
18888
19037
|
width: 180,
|
|
18889
19038
|
align: 'center',
|
|
18890
|
-
ellipsis: true
|
|
19039
|
+
ellipsis: true,
|
|
19040
|
+
render: renderTextEllipsis
|
|
18891
19041
|
}, {
|
|
18892
19042
|
dataIndex: 'specId',
|
|
18893
19043
|
title: "".concat(text, "SKUID"),
|
|
18894
19044
|
align: 'center',
|
|
18895
19045
|
ellipsis: true,
|
|
18896
|
-
width: 100
|
|
19046
|
+
width: 100,
|
|
19047
|
+
render: renderTextEllipsis
|
|
18897
19048
|
}, {
|
|
18898
19049
|
dataIndex: 'specNo',
|
|
18899
19050
|
title: "".concat(text, "\u5546\u54C1SKU\u7F16\u7801"),
|
|
18900
19051
|
align: 'center',
|
|
18901
19052
|
ellipsis: true,
|
|
18902
|
-
width: 180
|
|
19053
|
+
width: 180,
|
|
19054
|
+
render: renderTextEllipsis
|
|
18903
19055
|
}, {
|
|
18904
19056
|
dataIndex: 'specName',
|
|
18905
19057
|
title: "".concat(text, "\u5546\u54C1SKU\u540D\u79F0"),
|
|
@@ -18915,19 +19067,22 @@ var getColumns$2 = function getColumns(_ref) {
|
|
|
18915
19067
|
title: "\u5E73\u53F0\u89C4\u683C\u540D\u79F0",
|
|
18916
19068
|
width: 200,
|
|
18917
19069
|
align: 'center',
|
|
18918
|
-
ellipsis: true
|
|
19070
|
+
ellipsis: true,
|
|
19071
|
+
render: renderTextEllipsis
|
|
18919
19072
|
}, {
|
|
18920
19073
|
dataIndex: 'platformSpecId',
|
|
18921
19074
|
title: "\u5E73\u53F0\u89C4\u683CID",
|
|
18922
19075
|
width: 180,
|
|
18923
19076
|
align: 'center',
|
|
18924
|
-
ellipsis: true
|
|
19077
|
+
ellipsis: true,
|
|
19078
|
+
render: renderTextEllipsis
|
|
18925
19079
|
}, {
|
|
18926
19080
|
dataIndex: 'brandName',
|
|
18927
19081
|
title: "\u54C1\u724C\u540D\u79F0",
|
|
18928
19082
|
width: 180,
|
|
18929
19083
|
align: 'center',
|
|
18930
|
-
ellipsis: true
|
|
19084
|
+
ellipsis: true,
|
|
19085
|
+
render: renderTextEllipsis
|
|
18931
19086
|
}, {
|
|
18932
19087
|
dataIndex: 'num',
|
|
18933
19088
|
title: "".concat(text, "\u9000\u8D27\u6570\u91CF"),
|
|
@@ -19014,13 +19169,15 @@ var getColumns$2 = function getColumns(_ref) {
|
|
|
19014
19169
|
title: "\u5546\u54C1ID",
|
|
19015
19170
|
align: 'center',
|
|
19016
19171
|
ellipsis: true,
|
|
19017
|
-
width: 250
|
|
19172
|
+
width: 250,
|
|
19173
|
+
render: renderTextEllipsis
|
|
19018
19174
|
}, {
|
|
19019
19175
|
dataIndex: 'goodNo',
|
|
19020
19176
|
title: "\u5546\u54C1\u7F16\u7801",
|
|
19021
19177
|
align: 'center',
|
|
19022
19178
|
ellipsis: true,
|
|
19023
|
-
width: 180
|
|
19179
|
+
width: 180,
|
|
19180
|
+
render: renderTextEllipsis
|
|
19024
19181
|
}, {
|
|
19025
19182
|
dataIndex: 'goodName',
|
|
19026
19183
|
title: "".concat(text, "\u5546\u54C1\u540D\u79F0"),
|
|
@@ -19036,25 +19193,29 @@ var getColumns$2 = function getColumns(_ref) {
|
|
|
19036
19193
|
title: "\u5E73\u53F0\u5546\u54C1\u540D\u79F0",
|
|
19037
19194
|
width: 200,
|
|
19038
19195
|
align: 'center',
|
|
19039
|
-
ellipsis: true
|
|
19196
|
+
ellipsis: true,
|
|
19197
|
+
render: renderTextEllipsis
|
|
19040
19198
|
}, {
|
|
19041
19199
|
dataIndex: 'platformGoodsId',
|
|
19042
19200
|
title: "\u5E73\u53F0\u5546\u54C1ID",
|
|
19043
19201
|
width: 180,
|
|
19044
19202
|
align: 'center',
|
|
19045
|
-
ellipsis: true
|
|
19203
|
+
ellipsis: true,
|
|
19204
|
+
render: renderTextEllipsis
|
|
19046
19205
|
}, {
|
|
19047
19206
|
dataIndex: 'specId',
|
|
19048
19207
|
title: "".concat(text, "SKUID"),
|
|
19049
19208
|
align: 'center',
|
|
19050
19209
|
ellipsis: true,
|
|
19051
|
-
width: 100
|
|
19210
|
+
width: 100,
|
|
19211
|
+
render: renderTextEllipsis
|
|
19052
19212
|
}, {
|
|
19053
19213
|
dataIndex: 'specNo',
|
|
19054
19214
|
title: "".concat(text, "\u5546\u54C1SKU\u7F16\u7801"),
|
|
19055
19215
|
align: 'center',
|
|
19056
19216
|
ellipsis: true,
|
|
19057
|
-
width: 180
|
|
19217
|
+
width: 180,
|
|
19218
|
+
render: renderTextEllipsis
|
|
19058
19219
|
}, {
|
|
19059
19220
|
dataIndex: 'specName',
|
|
19060
19221
|
title: "".concat(text, "\u5546\u54C1SKU\u540D\u79F0"),
|
|
@@ -19070,19 +19231,22 @@ var getColumns$2 = function getColumns(_ref) {
|
|
|
19070
19231
|
title: "\u5E73\u53F0\u89C4\u683C\u540D\u79F0",
|
|
19071
19232
|
width: 200,
|
|
19072
19233
|
align: 'center',
|
|
19073
|
-
ellipsis: true
|
|
19234
|
+
ellipsis: true,
|
|
19235
|
+
render: renderTextEllipsis
|
|
19074
19236
|
}, {
|
|
19075
19237
|
dataIndex: 'platformSpecId',
|
|
19076
19238
|
title: "\u5E73\u53F0\u89C4\u683CID",
|
|
19077
19239
|
width: 180,
|
|
19078
19240
|
align: 'center',
|
|
19079
|
-
ellipsis: true
|
|
19241
|
+
ellipsis: true,
|
|
19242
|
+
render: renderTextEllipsis
|
|
19080
19243
|
}, {
|
|
19081
19244
|
dataIndex: 'brandName',
|
|
19082
19245
|
title: "\u54C1\u724C\u540D\u79F0",
|
|
19083
19246
|
width: 180,
|
|
19084
19247
|
align: 'center',
|
|
19085
|
-
ellipsis: true
|
|
19248
|
+
ellipsis: true,
|
|
19249
|
+
render: renderTextEllipsis
|
|
19086
19250
|
}, {
|
|
19087
19251
|
dataIndex: 'num',
|
|
19088
19252
|
title: "".concat(text, "\u6362\u51FA\u6570\u91CF"),
|
|
@@ -19182,43 +19346,50 @@ var getColumns$3 = function getColumns(_ref) {
|
|
|
19182
19346
|
title: "\u5546\u54C1\u540D\u79F0",
|
|
19183
19347
|
align: 'center',
|
|
19184
19348
|
ellipsis: true,
|
|
19185
|
-
width: 250
|
|
19349
|
+
width: 250,
|
|
19350
|
+
render: renderTextEllipsis
|
|
19186
19351
|
}, {
|
|
19187
19352
|
dataIndex: 'goodsCode',
|
|
19188
19353
|
title: "\u5546\u54C1\u7F16\u7801",
|
|
19189
19354
|
align: 'center',
|
|
19190
19355
|
ellipsis: true,
|
|
19191
|
-
width: 250
|
|
19356
|
+
width: 250,
|
|
19357
|
+
render: renderTextEllipsis
|
|
19192
19358
|
}, {
|
|
19193
19359
|
dataIndex: 'skuCode',
|
|
19194
19360
|
title: "sku\u7F16\u7801",
|
|
19195
19361
|
align: 'center',
|
|
19196
19362
|
ellipsis: true,
|
|
19197
|
-
width: 250
|
|
19363
|
+
width: 250,
|
|
19364
|
+
render: renderTextEllipsis
|
|
19198
19365
|
}, {
|
|
19199
19366
|
dataIndex: 'skuName',
|
|
19200
19367
|
title: "\u7EBF\u4E0Asku\u540D\u79F0",
|
|
19201
19368
|
align: 'center',
|
|
19202
19369
|
ellipsis: true,
|
|
19203
|
-
width: 250
|
|
19370
|
+
width: 250,
|
|
19371
|
+
render: renderTextEllipsis
|
|
19204
19372
|
}, {
|
|
19205
19373
|
dataIndex: 'olnSkuCode',
|
|
19206
19374
|
title: "\u7EBF\u4E0Asku\u7F16\u7801",
|
|
19207
19375
|
align: 'center',
|
|
19208
19376
|
ellipsis: true,
|
|
19209
|
-
width: 150
|
|
19377
|
+
width: 150,
|
|
19378
|
+
render: renderTextEllipsis
|
|
19210
19379
|
}, {
|
|
19211
19380
|
dataIndex: 'sku',
|
|
19212
19381
|
title: "\u7EBF\u4E0Asku id",
|
|
19213
19382
|
align: 'center',
|
|
19214
19383
|
ellipsis: true,
|
|
19215
|
-
width: 150
|
|
19384
|
+
width: 150,
|
|
19385
|
+
render: renderTextEllipsis
|
|
19216
19386
|
}, {
|
|
19217
19387
|
dataIndex: 'name',
|
|
19218
19388
|
title: "\u7EBF\u4E0A\u5546\u54C1\u540D\u79F0",
|
|
19219
19389
|
align: 'center',
|
|
19220
19390
|
ellipsis: true,
|
|
19221
|
-
width: 250
|
|
19391
|
+
width: 250,
|
|
19392
|
+
render: renderTextEllipsis
|
|
19222
19393
|
}, {
|
|
19223
19394
|
dataIndex: 'pic',
|
|
19224
19395
|
title: "\u7EBF\u4E0A\u56FE\u7247",
|
|
@@ -19227,7 +19398,7 @@ var getColumns$3 = function getColumns(_ref) {
|
|
|
19227
19398
|
width: 100,
|
|
19228
19399
|
render: function render(val) {
|
|
19229
19400
|
return /*#__PURE__*/React.createElement(Image, {
|
|
19230
|
-
width:
|
|
19401
|
+
width: 30,
|
|
19231
19402
|
src: val
|
|
19232
19403
|
});
|
|
19233
19404
|
}
|
|
@@ -19236,25 +19407,29 @@ var getColumns$3 = function getColumns(_ref) {
|
|
|
19236
19407
|
title: "\u7EBF\u4E0A\u5546\u54C1\u7F16\u7801",
|
|
19237
19408
|
align: 'center',
|
|
19238
19409
|
ellipsis: true,
|
|
19239
|
-
width: 150
|
|
19410
|
+
width: 150,
|
|
19411
|
+
render: renderTextEllipsis
|
|
19240
19412
|
}, {
|
|
19241
19413
|
dataIndex: 'code',
|
|
19242
19414
|
title: "\u7EBF\u4E0A\u5546\u54C1id",
|
|
19243
19415
|
align: 'center',
|
|
19244
19416
|
ellipsis: true,
|
|
19245
|
-
width: 150
|
|
19417
|
+
width: 150,
|
|
19418
|
+
render: renderTextEllipsis
|
|
19246
19419
|
}, {
|
|
19247
19420
|
dataIndex: 'barCode',
|
|
19248
19421
|
title: "\u5546\u54C1\u6761\u7801",
|
|
19249
19422
|
align: 'center',
|
|
19250
19423
|
ellipsis: true,
|
|
19251
|
-
width: 150
|
|
19424
|
+
width: 150,
|
|
19425
|
+
render: renderTextEllipsis
|
|
19252
19426
|
}, {
|
|
19253
19427
|
dataIndex: 'money',
|
|
19254
19428
|
title: "\u5B9E\u4ED8\u91D1\u989D",
|
|
19255
19429
|
align: 'center',
|
|
19256
19430
|
ellipsis: true,
|
|
19257
|
-
width: 100
|
|
19431
|
+
width: 100,
|
|
19432
|
+
render: renderTextEllipsis
|
|
19258
19433
|
}, {
|
|
19259
19434
|
dataIndex: 'number',
|
|
19260
19435
|
title: "".concat(text, "\u6570\u91CF"),
|
|
@@ -19279,13 +19454,15 @@ var getColumns$3 = function getColumns(_ref) {
|
|
|
19279
19454
|
title: "\u5E94\u6536\u6B3E",
|
|
19280
19455
|
align: 'center',
|
|
19281
19456
|
ellipsis: true,
|
|
19282
|
-
width: 70
|
|
19457
|
+
width: 70,
|
|
19458
|
+
render: renderTextEllipsis
|
|
19283
19459
|
}, {
|
|
19284
19460
|
dataIndex: 'type',
|
|
19285
19461
|
title: "\u8D60\u54C1\u7C7B\u578B",
|
|
19286
19462
|
align: 'center',
|
|
19287
19463
|
ellipsis: true,
|
|
19288
|
-
width: 100
|
|
19464
|
+
width: 100,
|
|
19465
|
+
render: renderTextEllipsis
|
|
19289
19466
|
}, {
|
|
19290
19467
|
dataIndex: 'isPackage',
|
|
19291
19468
|
title: "\u662F\u5426\u7EC4\u5408\u5546\u54C1",
|
|
@@ -19339,27 +19516,32 @@ var getColumns$4 = function getColumns(_ref) {
|
|
|
19339
19516
|
GY_GOODS: [{
|
|
19340
19517
|
dataIndex: 'goodName',
|
|
19341
19518
|
title: "\u5546\u54C1\u540D\u79F0",
|
|
19342
|
-
width: 150
|
|
19519
|
+
width: 150,
|
|
19520
|
+
render: renderTextEllipsis
|
|
19343
19521
|
}, {
|
|
19344
19522
|
dataIndex: 'goodShortName',
|
|
19345
19523
|
title: "\u5546\u54C1\u7B80\u79F0",
|
|
19346
|
-
width: 150
|
|
19524
|
+
width: 150,
|
|
19525
|
+
render: renderTextEllipsis
|
|
19347
19526
|
}, {
|
|
19348
19527
|
dataIndex: 'goodNo',
|
|
19349
19528
|
title: "\u5546\u54C1\u7F16\u7801",
|
|
19350
|
-
width: 200
|
|
19529
|
+
width: 200,
|
|
19530
|
+
render: renderTextEllipsis
|
|
19351
19531
|
}, {
|
|
19352
19532
|
dataIndex: 'specName',
|
|
19353
19533
|
title: "SKU\u540D\u79F0",
|
|
19354
19534
|
align: 'center',
|
|
19355
19535
|
ellipsis: true,
|
|
19356
|
-
width: 250
|
|
19536
|
+
width: 250,
|
|
19537
|
+
render: renderTextEllipsis
|
|
19357
19538
|
}, {
|
|
19358
19539
|
dataIndex: 'specNo',
|
|
19359
19540
|
title: "SKU\u7F16\u7801",
|
|
19360
19541
|
align: 'center',
|
|
19361
19542
|
ellipsis: true,
|
|
19362
|
-
width: 150
|
|
19543
|
+
width: 150,
|
|
19544
|
+
render: renderTextEllipsis
|
|
19363
19545
|
}, {
|
|
19364
19546
|
dataIndex: 'qty',
|
|
19365
19547
|
title: "\u6570\u91CF",
|
|
@@ -19450,7 +19632,8 @@ var getColumns$4 = function getColumns(_ref) {
|
|
|
19450
19632
|
}, {
|
|
19451
19633
|
dataIndex: 'skuNote',
|
|
19452
19634
|
title: "\u5546\u54C1\u5907\u6CE8",
|
|
19453
|
-
width: 150
|
|
19635
|
+
width: 150,
|
|
19636
|
+
render: renderTextEllipsis
|
|
19454
19637
|
}].map(function (item) {
|
|
19455
19638
|
return _objectSpread2(_objectSpread2({}, item), {}, {
|
|
19456
19639
|
align: 'center',
|
|
@@ -19461,27 +19644,32 @@ var getColumns$4 = function getColumns(_ref) {
|
|
|
19461
19644
|
GY_REISSUE_GOODS: [{
|
|
19462
19645
|
dataIndex: 'goodName',
|
|
19463
19646
|
title: "\u5546\u54C1\u540D\u79F0",
|
|
19464
|
-
width: 150
|
|
19647
|
+
width: 150,
|
|
19648
|
+
render: renderTextEllipsis
|
|
19465
19649
|
}, {
|
|
19466
19650
|
dataIndex: 'goodShortName',
|
|
19467
19651
|
title: "\u5546\u54C1\u7B80\u79F0",
|
|
19468
|
-
width: 150
|
|
19652
|
+
width: 150,
|
|
19653
|
+
render: renderTextEllipsis
|
|
19469
19654
|
}, {
|
|
19470
19655
|
dataIndex: 'goodNo',
|
|
19471
19656
|
title: "\u5546\u54C1\u7F16\u7801",
|
|
19472
|
-
width: 200
|
|
19657
|
+
width: 200,
|
|
19658
|
+
render: renderTextEllipsis
|
|
19473
19659
|
}, {
|
|
19474
19660
|
dataIndex: 'specName',
|
|
19475
19661
|
title: "SKU\u540D\u79F0",
|
|
19476
19662
|
align: 'center',
|
|
19477
19663
|
ellipsis: true,
|
|
19478
|
-
width: 250
|
|
19664
|
+
width: 250,
|
|
19665
|
+
render: renderTextEllipsis
|
|
19479
19666
|
}, {
|
|
19480
19667
|
dataIndex: 'specNo',
|
|
19481
19668
|
title: "SKU\u7F16\u7801",
|
|
19482
19669
|
align: 'center',
|
|
19483
19670
|
ellipsis: true,
|
|
19484
|
-
width: 150
|
|
19671
|
+
width: 150,
|
|
19672
|
+
render: renderTextEllipsis
|
|
19485
19673
|
}, {
|
|
19486
19674
|
dataIndex: 'qty',
|
|
19487
19675
|
title: "\u6570\u91CF",
|
|
@@ -19577,27 +19765,32 @@ var getColumns$4 = function getColumns(_ref) {
|
|
|
19577
19765
|
GY_RETURN_GOODS: [{
|
|
19578
19766
|
dataIndex: 'goodName',
|
|
19579
19767
|
title: "\u5546\u54C1\u540D\u79F0",
|
|
19580
|
-
width: 150
|
|
19768
|
+
width: 150,
|
|
19769
|
+
render: renderTextEllipsis
|
|
19581
19770
|
}, {
|
|
19582
19771
|
dataIndex: 'goodShortName',
|
|
19583
19772
|
title: "\u5546\u54C1\u7B80\u79F0",
|
|
19584
|
-
width: 150
|
|
19773
|
+
width: 150,
|
|
19774
|
+
render: renderTextEllipsis
|
|
19585
19775
|
}, {
|
|
19586
19776
|
dataIndex: 'goodNo',
|
|
19587
19777
|
title: "\u5546\u54C1\u7F16\u7801",
|
|
19588
|
-
width: 200
|
|
19778
|
+
width: 200,
|
|
19779
|
+
render: renderTextEllipsis
|
|
19589
19780
|
}, {
|
|
19590
19781
|
dataIndex: 'specName',
|
|
19591
19782
|
title: "SKU\u540D\u79F0",
|
|
19592
19783
|
align: 'center',
|
|
19593
19784
|
ellipsis: true,
|
|
19594
|
-
width: 250
|
|
19785
|
+
width: 250,
|
|
19786
|
+
render: renderTextEllipsis
|
|
19595
19787
|
}, {
|
|
19596
19788
|
dataIndex: 'specNo',
|
|
19597
19789
|
title: "SKU\u7F16\u7801",
|
|
19598
19790
|
align: 'center',
|
|
19599
19791
|
ellipsis: true,
|
|
19600
|
-
width: 150
|
|
19792
|
+
width: 150,
|
|
19793
|
+
render: renderTextEllipsis
|
|
19601
19794
|
}, {
|
|
19602
19795
|
dataIndex: 'qty',
|
|
19603
19796
|
title: "\u6570\u91CF",
|
|
@@ -19726,19 +19919,22 @@ var getColumns$5 = function getColumns() {
|
|
|
19726
19919
|
title: '商品名称',
|
|
19727
19920
|
width: 150,
|
|
19728
19921
|
ellipsis: true,
|
|
19729
|
-
align: 'center'
|
|
19922
|
+
align: 'center',
|
|
19923
|
+
render: renderTextEllipsis
|
|
19730
19924
|
}, {
|
|
19731
19925
|
dataIndex: 'skuId',
|
|
19732
19926
|
title: '商品编码',
|
|
19733
19927
|
width: 150,
|
|
19734
19928
|
ellipsis: true,
|
|
19735
|
-
align: 'center'
|
|
19929
|
+
align: 'center',
|
|
19930
|
+
render: renderTextEllipsis
|
|
19736
19931
|
}, {
|
|
19737
19932
|
dataIndex: 'iId',
|
|
19738
19933
|
title: '款式编码',
|
|
19739
19934
|
width: 150,
|
|
19740
19935
|
ellipsis: true,
|
|
19741
|
-
align: 'center'
|
|
19936
|
+
align: 'center',
|
|
19937
|
+
render: renderTextEllipsis
|
|
19742
19938
|
}, {
|
|
19743
19939
|
dataIndex: 'pic',
|
|
19744
19940
|
title: '商品图片',
|
|
@@ -19747,7 +19943,7 @@ var getColumns$5 = function getColumns() {
|
|
|
19747
19943
|
width: 100,
|
|
19748
19944
|
render: function render(val) {
|
|
19749
19945
|
return /*#__PURE__*/React.createElement(Image, {
|
|
19750
|
-
width:
|
|
19946
|
+
width: 30,
|
|
19751
19947
|
src: val
|
|
19752
19948
|
});
|
|
19753
19949
|
}
|
|
@@ -19756,7 +19952,8 @@ var getColumns$5 = function getColumns() {
|
|
|
19756
19952
|
title: '规格值',
|
|
19757
19953
|
width: 150,
|
|
19758
19954
|
ellipsis: true,
|
|
19759
|
-
align: 'center'
|
|
19955
|
+
align: 'center',
|
|
19956
|
+
render: renderTextEllipsis
|
|
19760
19957
|
}, {
|
|
19761
19958
|
dataIndex: 'saleBasePrice',
|
|
19762
19959
|
title: '原价',
|
|
@@ -19818,7 +20015,8 @@ var getColumns$5 = function getColumns() {
|
|
|
19818
20015
|
title: '批次号',
|
|
19819
20016
|
width: 150,
|
|
19820
20017
|
ellipsis: true,
|
|
19821
|
-
align: 'center'
|
|
20018
|
+
align: 'center',
|
|
20019
|
+
render: renderTextEllipsis
|
|
19822
20020
|
}, {
|
|
19823
20021
|
dataIndex: 'isGift',
|
|
19824
20022
|
title: '是否赠品',
|
|
@@ -19845,26 +20043,30 @@ var getColumns$5 = function getColumns() {
|
|
|
19845
20043
|
title: '子订单号',
|
|
19846
20044
|
width: 240,
|
|
19847
20045
|
ellipsis: true,
|
|
19848
|
-
align: 'center'
|
|
20046
|
+
align: 'center',
|
|
20047
|
+
render: renderTextEllipsis
|
|
19849
20048
|
}],
|
|
19850
20049
|
JST_REISSUE_GOODS: [{
|
|
19851
20050
|
dataIndex: 'name',
|
|
19852
20051
|
title: '商品名称',
|
|
19853
20052
|
width: 150,
|
|
19854
20053
|
ellipsis: true,
|
|
19855
|
-
align: 'center'
|
|
20054
|
+
align: 'center',
|
|
20055
|
+
render: renderTextEllipsis
|
|
19856
20056
|
}, {
|
|
19857
20057
|
dataIndex: 'skuId',
|
|
19858
20058
|
title: '商品编码',
|
|
19859
20059
|
width: 150,
|
|
19860
20060
|
ellipsis: true,
|
|
19861
|
-
align: 'center'
|
|
20061
|
+
align: 'center',
|
|
20062
|
+
render: renderTextEllipsis
|
|
19862
20063
|
}, {
|
|
19863
20064
|
dataIndex: 'iId',
|
|
19864
20065
|
title: '款式编码',
|
|
19865
20066
|
width: 150,
|
|
19866
20067
|
ellipsis: true,
|
|
19867
|
-
align: 'center'
|
|
20068
|
+
align: 'center',
|
|
20069
|
+
render: renderTextEllipsis
|
|
19868
20070
|
}, {
|
|
19869
20071
|
dataIndex: 'pic',
|
|
19870
20072
|
title: '商品图片',
|
|
@@ -19873,7 +20075,7 @@ var getColumns$5 = function getColumns() {
|
|
|
19873
20075
|
width: 100,
|
|
19874
20076
|
render: function render(val) {
|
|
19875
20077
|
return /*#__PURE__*/React.createElement(Image, {
|
|
19876
|
-
width:
|
|
20078
|
+
width: 30,
|
|
19877
20079
|
src: val
|
|
19878
20080
|
});
|
|
19879
20081
|
}
|
|
@@ -19882,7 +20084,8 @@ var getColumns$5 = function getColumns() {
|
|
|
19882
20084
|
title: '规格值',
|
|
19883
20085
|
width: 150,
|
|
19884
20086
|
ellipsis: true,
|
|
19885
|
-
align: 'center'
|
|
20087
|
+
align: 'center',
|
|
20088
|
+
render: renderTextEllipsis
|
|
19886
20089
|
}, {
|
|
19887
20090
|
dataIndex: 'saleBasePrice',
|
|
19888
20091
|
title: '原价',
|
|
@@ -19994,31 +20197,35 @@ var getColumns$5 = function getColumns() {
|
|
|
19994
20197
|
onChange: function onChange(e) {
|
|
19995
20198
|
return updateHandle === null || updateHandle === void 0 ? void 0 : updateHandle(e.target.value, index, 'remark');
|
|
19996
20199
|
}
|
|
19997
|
-
}) :
|
|
20200
|
+
}) : renderTextEllipsis(val);
|
|
19998
20201
|
}
|
|
19999
20202
|
}],
|
|
20000
20203
|
JST_RETURN_GOODS: [{
|
|
20001
20204
|
dataIndex: 'name',
|
|
20002
|
-
title: '商品名称'
|
|
20205
|
+
title: '商品名称',
|
|
20206
|
+
render: renderTextEllipsis
|
|
20003
20207
|
}, {
|
|
20004
20208
|
dataIndex: 'skuId',
|
|
20005
|
-
title: '商品编码'
|
|
20209
|
+
title: '商品编码',
|
|
20210
|
+
render: renderTextEllipsis
|
|
20006
20211
|
}, {
|
|
20007
20212
|
dataIndex: 'iId',
|
|
20008
|
-
title: '款式编码'
|
|
20213
|
+
title: '款式编码',
|
|
20214
|
+
render: renderTextEllipsis
|
|
20009
20215
|
}, {
|
|
20010
20216
|
dataIndex: 'pic',
|
|
20011
20217
|
title: '商品图片',
|
|
20012
20218
|
width: 100,
|
|
20013
20219
|
render: function render(val) {
|
|
20014
20220
|
return /*#__PURE__*/React.createElement(Image, {
|
|
20015
|
-
width:
|
|
20221
|
+
width: 30,
|
|
20016
20222
|
src: val
|
|
20017
20223
|
});
|
|
20018
20224
|
}
|
|
20019
20225
|
}, {
|
|
20020
20226
|
dataIndex: 'propertiesValue',
|
|
20021
|
-
title: '规格值'
|
|
20227
|
+
title: '规格值',
|
|
20228
|
+
render: renderTextEllipsis
|
|
20022
20229
|
}, {
|
|
20023
20230
|
dataIndex: 'saleBasePrice',
|
|
20024
20231
|
title: '原价',
|
|
@@ -20093,7 +20300,8 @@ var getColumns$5 = function getColumns() {
|
|
|
20093
20300
|
}
|
|
20094
20301
|
}, {
|
|
20095
20302
|
dataIndex: 'batchId',
|
|
20096
|
-
title: '批次号'
|
|
20303
|
+
title: '批次号',
|
|
20304
|
+
render: renderTextEllipsis
|
|
20097
20305
|
}, {
|
|
20098
20306
|
dataIndex: 'isGift',
|
|
20099
20307
|
title: '是否赠品',
|
|
@@ -20125,35 +20333,40 @@ var getColumns$5 = function getColumns() {
|
|
|
20125
20333
|
onChange: function onChange(e) {
|
|
20126
20334
|
return updateHandle === null || updateHandle === void 0 ? void 0 : updateHandle(e.target.value, index, 'remark');
|
|
20127
20335
|
}
|
|
20128
|
-
}) :
|
|
20336
|
+
}) : renderTextEllipsis(val);
|
|
20129
20337
|
}
|
|
20130
20338
|
}, {
|
|
20131
20339
|
dataIndex: 'outerOiId',
|
|
20132
20340
|
title: '子订单号',
|
|
20133
|
-
width: 240
|
|
20341
|
+
width: 240,
|
|
20342
|
+
render: renderTextEllipsis
|
|
20134
20343
|
}].map(fillAttrs),
|
|
20135
20344
|
JST_EXCHANGE_GOODS: [{
|
|
20136
20345
|
dataIndex: 'name',
|
|
20137
|
-
title: '商品名称'
|
|
20346
|
+
title: '商品名称',
|
|
20347
|
+
render: renderTextEllipsis
|
|
20138
20348
|
}, {
|
|
20139
20349
|
dataIndex: 'skuId',
|
|
20140
|
-
title: '商品编码'
|
|
20350
|
+
title: '商品编码',
|
|
20351
|
+
render: renderTextEllipsis
|
|
20141
20352
|
}, {
|
|
20142
20353
|
dataIndex: 'iId',
|
|
20143
|
-
title: '款式编码'
|
|
20354
|
+
title: '款式编码',
|
|
20355
|
+
render: renderTextEllipsis
|
|
20144
20356
|
}, {
|
|
20145
20357
|
dataIndex: 'pic',
|
|
20146
20358
|
title: '商品图片',
|
|
20147
20359
|
width: 100,
|
|
20148
20360
|
render: function render(val) {
|
|
20149
20361
|
return /*#__PURE__*/React.createElement(Image, {
|
|
20150
|
-
width:
|
|
20362
|
+
width: 30,
|
|
20151
20363
|
src: val
|
|
20152
20364
|
});
|
|
20153
20365
|
}
|
|
20154
20366
|
}, {
|
|
20155
20367
|
dataIndex: 'propertiesValue',
|
|
20156
|
-
title: '规格值'
|
|
20368
|
+
title: '规格值',
|
|
20369
|
+
render: renderTextEllipsis
|
|
20157
20370
|
}, {
|
|
20158
20371
|
dataIndex: 'saleBasePrice',
|
|
20159
20372
|
title: '原价',
|
|
@@ -20231,7 +20444,7 @@ var getColumns$5 = function getColumns() {
|
|
|
20231
20444
|
onChange: function onChange(e) {
|
|
20232
20445
|
return updateHandle === null || updateHandle === void 0 ? void 0 : updateHandle(e.target.value, index, 'remark');
|
|
20233
20446
|
}
|
|
20234
|
-
}) :
|
|
20447
|
+
}) : renderTextEllipsis(val);
|
|
20235
20448
|
}
|
|
20236
20449
|
}].map(fillAttrs)
|
|
20237
20450
|
};
|
|
@@ -20254,42 +20467,50 @@ var getColumns$6 = function getColumns(_ref) {
|
|
|
20254
20467
|
KM_GOODS: [{
|
|
20255
20468
|
dataIndex: 'skuPropertiesName',
|
|
20256
20469
|
title: "\u89C4\u683C\u540D\u79F0",
|
|
20257
|
-
width: 250
|
|
20470
|
+
width: 250,
|
|
20471
|
+
render: renderTextEllipsis
|
|
20258
20472
|
}, {
|
|
20259
20473
|
dataIndex: 'sysTitle',
|
|
20260
20474
|
title: "\u7CFB\u7EDF\u5546\u54C1\u540D\u79F0",
|
|
20261
|
-
width: 150
|
|
20475
|
+
width: 150,
|
|
20476
|
+
render: renderTextEllipsis
|
|
20262
20477
|
}, {
|
|
20263
20478
|
dataIndex: 'title',
|
|
20264
20479
|
title: "\u5E73\u53F0\u5546\u54C1\u540D\u79F0",
|
|
20265
|
-
width: 150
|
|
20480
|
+
width: 150,
|
|
20481
|
+
render: renderTextEllipsis
|
|
20266
20482
|
}, {
|
|
20267
20483
|
dataIndex: 'shortTitle',
|
|
20268
20484
|
title: "\u5546\u54C1\u7B80\u79F0",
|
|
20269
|
-
width: 150
|
|
20485
|
+
width: 150,
|
|
20486
|
+
render: renderTextEllipsis
|
|
20270
20487
|
}, {
|
|
20271
20488
|
dataIndex: 'sysOuterId',
|
|
20272
20489
|
title: "\u7CFB\u7EDF\u5546\u5BB6\u7F16\u7801",
|
|
20273
|
-
width: 150
|
|
20490
|
+
width: 150,
|
|
20491
|
+
render: renderTextEllipsis
|
|
20274
20492
|
}, {
|
|
20275
20493
|
dataIndex: 'skuSysId',
|
|
20276
20494
|
title: "\u7CFB\u7EDF\u89C4\u683CID",
|
|
20277
|
-
width: 150
|
|
20495
|
+
width: 150,
|
|
20496
|
+
render: renderTextEllipsis
|
|
20278
20497
|
}, {
|
|
20279
20498
|
dataIndex: 'skuId',
|
|
20280
20499
|
title: "\u5E73\u53F0\u89C4\u683C\u7F16\u53F7",
|
|
20281
|
-
width: 170
|
|
20500
|
+
width: 170,
|
|
20501
|
+
render: renderTextEllipsis
|
|
20282
20502
|
}, {
|
|
20283
20503
|
dataIndex: 'itemSysId',
|
|
20284
20504
|
title: "\u7CFB\u7EDF\u5546\u54C1ID",
|
|
20285
|
-
width: 150
|
|
20505
|
+
width: 150,
|
|
20506
|
+
render: renderTextEllipsis
|
|
20286
20507
|
}, {
|
|
20287
20508
|
dataIndex: 'sysPicPath',
|
|
20288
20509
|
title: "\u5546\u54C1\u56FE\u7247",
|
|
20289
20510
|
width: 100,
|
|
20290
20511
|
render: function render(val) {
|
|
20291
20512
|
return /*#__PURE__*/React.createElement(Image, {
|
|
20292
|
-
width:
|
|
20513
|
+
width: 30,
|
|
20293
20514
|
src: val
|
|
20294
20515
|
});
|
|
20295
20516
|
}
|
|
@@ -20337,7 +20558,8 @@ var getColumns$6 = function getColumns(_ref) {
|
|
|
20337
20558
|
}, {
|
|
20338
20559
|
dataIndex: 'type',
|
|
20339
20560
|
title: "\u5546\u54C1\u7C7B\u578B",
|
|
20340
|
-
width: 150
|
|
20561
|
+
width: 150,
|
|
20562
|
+
render: renderTextEllipsis
|
|
20341
20563
|
}].map(function (item) {
|
|
20342
20564
|
return _objectSpread2(_objectSpread2({}, item), {}, {
|
|
20343
20565
|
align: 'center',
|
|
@@ -20347,35 +20569,43 @@ var getColumns$6 = function getColumns(_ref) {
|
|
|
20347
20569
|
KM_REISSUE_GOODS: [{
|
|
20348
20570
|
dataIndex: 'skuPropertiesName',
|
|
20349
20571
|
title: "\u89C4\u683C\u540D\u79F0",
|
|
20350
|
-
width: 250
|
|
20572
|
+
width: 250,
|
|
20573
|
+
render: renderTextEllipsis
|
|
20351
20574
|
}, {
|
|
20352
20575
|
dataIndex: 'sysTitle',
|
|
20353
20576
|
title: "\u7CFB\u7EDF\u5546\u54C1\u540D\u79F0",
|
|
20354
|
-
width: 150
|
|
20577
|
+
width: 150,
|
|
20578
|
+
render: renderTextEllipsis
|
|
20355
20579
|
}, {
|
|
20356
20580
|
dataIndex: 'shortTitle',
|
|
20357
20581
|
title: "\u5546\u54C1\u7B80\u79F0",
|
|
20358
|
-
width: 150
|
|
20582
|
+
width: 150,
|
|
20583
|
+
render: renderTextEllipsis
|
|
20359
20584
|
}, {
|
|
20360
20585
|
dataIndex: 'title',
|
|
20361
20586
|
title: "\u5E73\u53F0\u5546\u54C1\u540D\u79F0",
|
|
20362
|
-
width: 150
|
|
20587
|
+
width: 150,
|
|
20588
|
+
render: renderTextEllipsis
|
|
20363
20589
|
}, {
|
|
20364
20590
|
dataIndex: 'sysOuterId',
|
|
20365
20591
|
title: "\u7CFB\u7EDF\u5546\u5BB6\u7F16\u7801",
|
|
20366
|
-
width: 150
|
|
20592
|
+
width: 150,
|
|
20593
|
+
render: renderTextEllipsis
|
|
20367
20594
|
}, {
|
|
20368
20595
|
dataIndex: 'itemSysId',
|
|
20369
20596
|
title: "\u7CFB\u7EDF\u5546\u54C1ID",
|
|
20370
|
-
width: 150
|
|
20597
|
+
width: 150,
|
|
20598
|
+
render: renderTextEllipsis
|
|
20371
20599
|
}, {
|
|
20372
20600
|
dataIndex: 'skuSysId',
|
|
20373
20601
|
title: "\u7CFB\u7EDF\u89C4\u683CID",
|
|
20374
|
-
width: 150
|
|
20602
|
+
width: 150,
|
|
20603
|
+
render: renderTextEllipsis
|
|
20375
20604
|
}, {
|
|
20376
20605
|
dataIndex: 'skuId',
|
|
20377
20606
|
title: "\u5E73\u53F0\u89C4\u683C\u7F16\u53F7",
|
|
20378
|
-
width: 170
|
|
20607
|
+
width: 170,
|
|
20608
|
+
render: renderTextEllipsis
|
|
20379
20609
|
}, {
|
|
20380
20610
|
dataIndex: 'realNum',
|
|
20381
20611
|
title: "\u5B9E\u9645\u8865\u53D1\u6570\u91CF",
|
|
@@ -20450,14 +20680,15 @@ var getColumns$6 = function getColumns(_ref) {
|
|
|
20450
20680
|
}, {
|
|
20451
20681
|
dataIndex: 'type',
|
|
20452
20682
|
title: "\u5546\u54C1\u7C7B\u578B",
|
|
20453
|
-
width: 150
|
|
20683
|
+
width: 150,
|
|
20684
|
+
render: renderTextEllipsis
|
|
20454
20685
|
}, {
|
|
20455
20686
|
dataIndex: 'sysPicPath',
|
|
20456
20687
|
title: "\u5546\u54C1\u56FE\u7247",
|
|
20457
20688
|
width: 100,
|
|
20458
20689
|
render: function render(val) {
|
|
20459
20690
|
return /*#__PURE__*/React.createElement(Image, {
|
|
20460
|
-
width:
|
|
20691
|
+
width: 30,
|
|
20461
20692
|
src: val
|
|
20462
20693
|
});
|
|
20463
20694
|
}
|
|
@@ -20496,37 +20727,43 @@ var getColumns$7 = function getColumns(_ref) {
|
|
|
20496
20727
|
title: "\u7CFB\u7EDF\u5546\u54C1\u540D\u79F0",
|
|
20497
20728
|
align: 'center',
|
|
20498
20729
|
ellipsis: true,
|
|
20499
|
-
width: 150
|
|
20730
|
+
width: 150,
|
|
20731
|
+
render: renderTextEllipsis
|
|
20500
20732
|
}, {
|
|
20501
20733
|
dataIndex: 'productCode',
|
|
20502
20734
|
title: "\u7CFB\u7EDF\u5546\u54C1\u7F16\u7801",
|
|
20503
20735
|
align: 'center',
|
|
20504
20736
|
ellipsis: true,
|
|
20505
|
-
width: 150
|
|
20737
|
+
width: 150,
|
|
20738
|
+
render: renderTextEllipsis
|
|
20506
20739
|
}, {
|
|
20507
20740
|
dataIndex: 'productId',
|
|
20508
20741
|
title: "\u7CFB\u7EDF\u5546\u54C1ID",
|
|
20509
20742
|
align: 'center',
|
|
20510
20743
|
ellipsis: true,
|
|
20511
|
-
width: 150
|
|
20744
|
+
width: 150,
|
|
20745
|
+
render: renderTextEllipsis
|
|
20512
20746
|
}, {
|
|
20513
20747
|
dataIndex: 'skuName',
|
|
20514
20748
|
title: "\u7CFB\u7EDF\u89C4\u683C\u540D\u79F0",
|
|
20515
20749
|
align: 'center',
|
|
20516
20750
|
ellipsis: true,
|
|
20517
|
-
width: 150
|
|
20751
|
+
width: 150,
|
|
20752
|
+
render: renderTextEllipsis
|
|
20518
20753
|
}, {
|
|
20519
20754
|
dataIndex: 'skuCode',
|
|
20520
20755
|
title: "\u7CFB\u7EDF\u89C4\u683C\u7F16\u7801",
|
|
20521
20756
|
align: 'center',
|
|
20522
20757
|
ellipsis: true,
|
|
20523
|
-
width: 150
|
|
20758
|
+
width: 150,
|
|
20759
|
+
render: renderTextEllipsis
|
|
20524
20760
|
}, {
|
|
20525
20761
|
dataIndex: 'specId',
|
|
20526
20762
|
title: "\u89C4\u683CID",
|
|
20527
20763
|
align: 'center',
|
|
20528
20764
|
ellipsis: true,
|
|
20529
|
-
width: 150
|
|
20765
|
+
width: 150,
|
|
20766
|
+
render: renderTextEllipsis
|
|
20530
20767
|
},
|
|
20531
20768
|
// {
|
|
20532
20769
|
// dataIndex: 'goodsName',
|
|
@@ -20546,11 +20783,13 @@ var getColumns$7 = function getColumns(_ref) {
|
|
|
20546
20783
|
{
|
|
20547
20784
|
dataIndex: 'goodsClass',
|
|
20548
20785
|
title: "\u8D27\u54C1\u7C7B\u522B",
|
|
20549
|
-
width: 150
|
|
20786
|
+
width: 150,
|
|
20787
|
+
render: renderTextEllipsis
|
|
20550
20788
|
}, {
|
|
20551
20789
|
dataIndex: 'code',
|
|
20552
20790
|
title: "\u6761\u7801",
|
|
20553
|
-
width: 150
|
|
20791
|
+
width: 150,
|
|
20792
|
+
render: renderTextEllipsis
|
|
20554
20793
|
},
|
|
20555
20794
|
// {
|
|
20556
20795
|
// dataIndex: 'specName',
|
|
@@ -20571,31 +20810,36 @@ var getColumns$7 = function getColumns(_ref) {
|
|
|
20571
20810
|
title: "\u5E73\u53F0\u5546\u54C1\u540D\u79F0",
|
|
20572
20811
|
align: 'center',
|
|
20573
20812
|
ellipsis: true,
|
|
20574
|
-
width: 250
|
|
20813
|
+
width: 250,
|
|
20814
|
+
render: renderTextEllipsis
|
|
20575
20815
|
}, {
|
|
20576
20816
|
dataIndex: 'mallProductOutCode',
|
|
20577
20817
|
title: "\u5E73\u53F0\u5546\u54C1\u7F16\u7801",
|
|
20578
20818
|
align: 'center',
|
|
20579
20819
|
ellipsis: true,
|
|
20580
|
-
width: 150
|
|
20820
|
+
width: 150,
|
|
20821
|
+
render: renderTextEllipsis
|
|
20581
20822
|
}, {
|
|
20582
20823
|
dataIndex: 'mallProductId',
|
|
20583
20824
|
title: "\u5E73\u53F0\u5546\u54C1ID",
|
|
20584
20825
|
align: 'center',
|
|
20585
20826
|
ellipsis: true,
|
|
20586
|
-
width: 250
|
|
20827
|
+
width: 250,
|
|
20828
|
+
render: renderTextEllipsis
|
|
20587
20829
|
}, {
|
|
20588
20830
|
dataIndex: 'mallSkuName',
|
|
20589
20831
|
title: "\u5E73\u53F0\u89C4\u683C\u540D\u79F0",
|
|
20590
20832
|
align: 'center',
|
|
20591
20833
|
ellipsis: true,
|
|
20592
|
-
width: 250
|
|
20834
|
+
width: 250,
|
|
20835
|
+
render: renderTextEllipsis
|
|
20593
20836
|
}, {
|
|
20594
20837
|
dataIndex: 'mallSkuId',
|
|
20595
20838
|
title: "\u5E73\u53F0\u89C4\u683CID",
|
|
20596
20839
|
align: 'center',
|
|
20597
20840
|
ellipsis: true,
|
|
20598
|
-
width: 250
|
|
20841
|
+
width: 250,
|
|
20842
|
+
render: renderTextEllipsis
|
|
20599
20843
|
}, {
|
|
20600
20844
|
dataIndex: 'sellCount',
|
|
20601
20845
|
title: "\u6570\u91CF",
|
|
@@ -20680,11 +20924,13 @@ var getColumns$7 = function getColumns(_ref) {
|
|
|
20680
20924
|
}, {
|
|
20681
20925
|
dataIndex: 'combinationName',
|
|
20682
20926
|
title: "\u7EC4\u5408\u5546\u54C1\u540D\u79F0",
|
|
20683
|
-
width: 150
|
|
20927
|
+
width: 150,
|
|
20928
|
+
render: renderTextEllipsis
|
|
20684
20929
|
}, {
|
|
20685
20930
|
dataIndex: 'combinationCode',
|
|
20686
20931
|
title: "\u7EC4\u5408\u5546\u54C1\u7F16\u7801",
|
|
20687
|
-
width: 150
|
|
20932
|
+
width: 150,
|
|
20933
|
+
render: renderTextEllipsis
|
|
20688
20934
|
}, {
|
|
20689
20935
|
dataIndex: 'gift',
|
|
20690
20936
|
title: "\u662F\u5426\u8D60\u54C1",
|
|
@@ -20722,75 +20968,88 @@ var getColumns$7 = function getColumns(_ref) {
|
|
|
20722
20968
|
title: "\u7CFB\u7EDF\u5546\u54C1\u540D\u79F0",
|
|
20723
20969
|
align: 'center',
|
|
20724
20970
|
ellipsis: true,
|
|
20725
|
-
width: 150
|
|
20971
|
+
width: 150,
|
|
20972
|
+
render: renderTextEllipsis
|
|
20726
20973
|
}, {
|
|
20727
20974
|
dataIndex: 'productCode',
|
|
20728
20975
|
title: "\u7CFB\u7EDF\u5546\u54C1\u7F16\u7801",
|
|
20729
20976
|
align: 'center',
|
|
20730
20977
|
ellipsis: true,
|
|
20731
|
-
width: 150
|
|
20978
|
+
width: 150,
|
|
20979
|
+
render: renderTextEllipsis
|
|
20732
20980
|
}, {
|
|
20733
20981
|
dataIndex: 'productId',
|
|
20734
20982
|
title: "\u7CFB\u7EDF\u5546\u54C1ID",
|
|
20735
20983
|
align: 'center',
|
|
20736
20984
|
ellipsis: true,
|
|
20737
|
-
width: 150
|
|
20985
|
+
width: 150,
|
|
20986
|
+
render: renderTextEllipsis
|
|
20738
20987
|
}, {
|
|
20739
20988
|
dataIndex: 'skuName',
|
|
20740
20989
|
title: "\u7CFB\u7EDF\u89C4\u683C\u540D\u79F0",
|
|
20741
20990
|
align: 'center',
|
|
20742
20991
|
ellipsis: true,
|
|
20743
|
-
width: 150
|
|
20992
|
+
width: 150,
|
|
20993
|
+
render: renderTextEllipsis
|
|
20744
20994
|
}, {
|
|
20745
20995
|
dataIndex: 'skuCode',
|
|
20746
20996
|
title: "\u7CFB\u7EDF\u89C4\u683C\u7F16\u7801",
|
|
20747
20997
|
align: 'center',
|
|
20748
20998
|
ellipsis: true,
|
|
20749
|
-
width: 150
|
|
20999
|
+
width: 150,
|
|
21000
|
+
render: renderTextEllipsis
|
|
20750
21001
|
}, {
|
|
20751
21002
|
dataIndex: 'specId',
|
|
20752
21003
|
title: "\u89C4\u683CID",
|
|
20753
21004
|
align: 'center',
|
|
20754
21005
|
ellipsis: true,
|
|
20755
|
-
width: 150
|
|
21006
|
+
width: 150,
|
|
21007
|
+
render: renderTextEllipsis
|
|
20756
21008
|
}, {
|
|
20757
21009
|
dataIndex: 'goodsClass',
|
|
20758
21010
|
title: "\u8D27\u54C1\u7C7B\u522B",
|
|
20759
|
-
width: 150
|
|
21011
|
+
width: 150,
|
|
21012
|
+
render: renderTextEllipsis
|
|
20760
21013
|
}, {
|
|
20761
21014
|
dataIndex: 'code',
|
|
20762
21015
|
title: "\u6761\u7801",
|
|
20763
|
-
width: 150
|
|
21016
|
+
width: 150,
|
|
21017
|
+
render: renderTextEllipsis
|
|
20764
21018
|
}, {
|
|
20765
21019
|
dataIndex: 'mallProductName',
|
|
20766
21020
|
title: "\u5E73\u53F0\u5546\u54C1\u540D\u79F0",
|
|
20767
21021
|
align: 'center',
|
|
20768
21022
|
ellipsis: true,
|
|
20769
|
-
width: 150
|
|
21023
|
+
width: 150,
|
|
21024
|
+
render: renderTextEllipsis
|
|
20770
21025
|
}, {
|
|
20771
21026
|
dataIndex: 'mallProductOutCode',
|
|
20772
21027
|
title: "\u5E73\u53F0\u5546\u54C1\u7F16\u7801",
|
|
20773
21028
|
align: 'center',
|
|
20774
21029
|
ellipsis: true,
|
|
20775
|
-
width: 150
|
|
21030
|
+
width: 150,
|
|
21031
|
+
render: renderTextEllipsis
|
|
20776
21032
|
}, {
|
|
20777
21033
|
dataIndex: 'mallProductId',
|
|
20778
21034
|
title: "\u5E73\u53F0\u5546\u54C1ID",
|
|
20779
21035
|
align: 'center',
|
|
20780
21036
|
ellipsis: true,
|
|
20781
|
-
width: 150
|
|
21037
|
+
width: 150,
|
|
21038
|
+
render: renderTextEllipsis
|
|
20782
21039
|
}, {
|
|
20783
21040
|
dataIndex: 'mallSkuName',
|
|
20784
21041
|
title: "\u5E73\u53F0\u89C4\u683C\u540D\u79F0",
|
|
20785
21042
|
align: 'center',
|
|
20786
21043
|
ellipsis: true,
|
|
20787
|
-
width: 150
|
|
21044
|
+
width: 150,
|
|
21045
|
+
render: renderTextEllipsis
|
|
20788
21046
|
}, {
|
|
20789
21047
|
dataIndex: 'mallSkuId',
|
|
20790
21048
|
title: "\u5E73\u53F0\u89C4\u683CID",
|
|
20791
21049
|
align: 'center',
|
|
20792
21050
|
ellipsis: true,
|
|
20793
|
-
width: 150
|
|
21051
|
+
width: 150,
|
|
21052
|
+
render: renderTextEllipsis
|
|
20794
21053
|
}, {
|
|
20795
21054
|
dataIndex: 'sellCount',
|
|
20796
21055
|
title: "\u6570\u91CF",
|
|
@@ -20880,11 +21139,13 @@ var getColumns$7 = function getColumns(_ref) {
|
|
|
20880
21139
|
}, {
|
|
20881
21140
|
dataIndex: 'combinationName',
|
|
20882
21141
|
title: "\u7EC4\u5408\u5546\u54C1\u540D\u79F0",
|
|
20883
|
-
width: 150
|
|
21142
|
+
width: 150,
|
|
21143
|
+
render: renderTextEllipsis
|
|
20884
21144
|
}, {
|
|
20885
21145
|
dataIndex: 'combinationCode',
|
|
20886
21146
|
title: "\u7EC4\u5408\u5546\u54C1\u7F16\u7801",
|
|
20887
|
-
width: 150
|
|
21147
|
+
width: 150,
|
|
21148
|
+
render: renderTextEllipsis
|
|
20888
21149
|
}, {
|
|
20889
21150
|
dataIndex: 'gift',
|
|
20890
21151
|
title: "\u662F\u5426\u8D60\u54C1",
|
|
@@ -20995,19 +21256,22 @@ var getColumns$9 = function getColumns(_ref) {
|
|
|
20995
21256
|
title: "".concat(text, "sku\u540D\u79F0"),
|
|
20996
21257
|
align: 'center',
|
|
20997
21258
|
ellipsis: true,
|
|
20998
|
-
width: 250
|
|
21259
|
+
width: 250,
|
|
21260
|
+
render: renderTextEllipsis
|
|
20999
21261
|
}, {
|
|
21000
21262
|
dataIndex: 'sku',
|
|
21001
21263
|
title: "".concat(text, "sku\u7F16\u7801"),
|
|
21002
21264
|
align: 'center',
|
|
21003
21265
|
ellipsis: true,
|
|
21004
|
-
width: 100
|
|
21266
|
+
width: 100,
|
|
21267
|
+
render: renderTextEllipsis
|
|
21005
21268
|
}, {
|
|
21006
21269
|
dataIndex: 'name',
|
|
21007
21270
|
title: "".concat(text, "\u540D\u79F0"),
|
|
21008
21271
|
align: 'center',
|
|
21009
21272
|
ellipsis: true,
|
|
21010
|
-
width: 250
|
|
21273
|
+
width: 250,
|
|
21274
|
+
render: renderTextEllipsis
|
|
21011
21275
|
}, {
|
|
21012
21276
|
dataIndex: 'pic',
|
|
21013
21277
|
title: "\u56FE\u7247",
|
|
@@ -21016,7 +21280,7 @@ var getColumns$9 = function getColumns(_ref) {
|
|
|
21016
21280
|
width: 100,
|
|
21017
21281
|
render: function render(val) {
|
|
21018
21282
|
return /*#__PURE__*/React.createElement(Image, {
|
|
21019
|
-
width:
|
|
21283
|
+
width: 30,
|
|
21020
21284
|
src: val
|
|
21021
21285
|
});
|
|
21022
21286
|
}
|
|
@@ -21025,7 +21289,8 @@ var getColumns$9 = function getColumns(_ref) {
|
|
|
21025
21289
|
title: "".concat(text, "\u7F16\u7801"),
|
|
21026
21290
|
align: 'center',
|
|
21027
21291
|
ellipsis: true,
|
|
21028
|
-
width: 100
|
|
21292
|
+
width: 100,
|
|
21293
|
+
render: renderTextEllipsis
|
|
21029
21294
|
}, {
|
|
21030
21295
|
dataIndex: 'money',
|
|
21031
21296
|
title: "\u5B9E\u4ED8\u91D1\u989D",
|
|
@@ -21618,8 +21883,6 @@ var SelectTradeGoods = function SelectTradeGoods(_ref) {
|
|
|
21618
21883
|
console.log('filterDataSource', filterDataSource === null || filterDataSource === void 0 ? void 0 : filterDataSource.map(function (item) {
|
|
21619
21884
|
return item === null || item === void 0 ? void 0 : item[uniqueKey];
|
|
21620
21885
|
}));
|
|
21621
|
-
console.log('selectedRowKeys', selectedRowKeys);
|
|
21622
|
-
console.log('currentTradeOriginGoods', currentTradeOriginGoods);
|
|
21623
21886
|
onChangeSelectedKeys(keys.concat(unCurrentTradeOriginGoods));
|
|
21624
21887
|
};
|
|
21625
21888
|
var rowSelection = {
|
|
@@ -21645,7 +21908,7 @@ var SelectTradeGoods = function SelectTradeGoods(_ref) {
|
|
|
21645
21908
|
}
|
|
21646
21909
|
}, isGoods && /*#__PURE__*/React.createElement(Row, {
|
|
21647
21910
|
style: {
|
|
21648
|
-
marginBottom: '
|
|
21911
|
+
marginBottom: '12px'
|
|
21649
21912
|
}
|
|
21650
21913
|
}, /*#__PURE__*/React.createElement(Col, {
|
|
21651
21914
|
span: 12
|
|
@@ -21666,11 +21929,13 @@ var SelectTradeGoods = function SelectTradeGoods(_ref) {
|
|
|
21666
21929
|
};
|
|
21667
21930
|
})
|
|
21668
21931
|
}))), /*#__PURE__*/React.createElement(Table, {
|
|
21932
|
+
className: "GoodModalColumns",
|
|
21669
21933
|
rowKey: uniqueKey,
|
|
21670
21934
|
rowSelection: rowSelection,
|
|
21671
21935
|
columns: columns,
|
|
21672
21936
|
dataSource: filterDataSource,
|
|
21673
21937
|
pagination: false,
|
|
21938
|
+
size: "small",
|
|
21674
21939
|
scroll: {
|
|
21675
21940
|
x: 500,
|
|
21676
21941
|
y: 500
|
|
@@ -23410,9 +23675,9 @@ var index$2 = (function (props) {
|
|
|
23410
23675
|
}));
|
|
23411
23676
|
});
|
|
23412
23677
|
|
|
23413
|
-
var css_248z$
|
|
23678
|
+
var css_248z$f = ".customizeUpload-module_customizeUpload__2tG-4 {\n display: flex;\n flex-wrap: wrap;\n gap: 8px;\n width: 100%;\n}\n.customizeUpload-module_customizeUpload__2tG-4 .customizeUpload-module_addButton__2w8Jj {\n display: flex !important;\n align-items: center;\n justify-content: center;\n width: 24px;\n height: 24px;\n border: 1px solid #d9d9d9;\n border-radius: 6px;\n}\n.customizeUpload-module_customizeUpload__2tG-4 .customizeUpload-module_addButton__2w8Jj:hover:not(:disabled) {\n color: #40a9ff;\n border-color: #40a9ff;\n}\n.customizeUpload-module_customizeUpload__2tG-4 .customizeUpload-module_addButton__2w8Jj:disabled {\n color: #bfbfbf;\n background-color: #f5f5f5;\n border-color: #d9d9d9;\n cursor: not-allowed;\n}\n.customizeUpload-module_customizeUpload__2tG-4 .customizeUpload-module_imageItem__yn6H1 {\n position: relative;\n width: 24px;\n height: 24px;\n overflow: hidden;\n border: 1px solid #d9d9d9;\n border-radius: 6px;\n}\n.customizeUpload-module_customizeUpload__2tG-4 .customizeUpload-module_imageItem__yn6H1 .customizeUpload-module_image__3hOnT {\n width: 100%;\n height: 100%;\n -o-object-fit: cover;\n object-fit: cover;\n}\n.customizeUpload-module_customizeUpload__2tG-4 .customizeUpload-module_imageItem__yn6H1 .customizeUpload-module_deleteBtn__85Jsl {\n position: absolute;\n top: 2px;\n right: 2px;\n display: flex;\n align-items: center;\n justify-content: center;\n width: 16px;\n height: 16px;\n color: white;\n font-size: 10px;\n background-color: rgba(0, 0, 0, 0.6);\n border-radius: 50%;\n cursor: pointer;\n opacity: 0;\n transition: opacity 0.2s;\n}\n.customizeUpload-module_customizeUpload__2tG-4 .customizeUpload-module_imageItem__yn6H1 .customizeUpload-module_deleteBtn__85Jsl:hover {\n background-color: rgba(255, 0, 0, 0.8);\n}\n.customizeUpload-module_customizeUpload__2tG-4 .customizeUpload-module_imageItem__yn6H1:hover .customizeUpload-module_deleteBtn__85Jsl {\n opacity: 1;\n}\n.customizeUpload-module_customizeUpload__2tG-4 .customizeUpload-module_uploadContainer__rUcw7 {\n margin-top: 12px;\n}\n.customizeUpload-module_popoverContent__FrAiq {\n width: 280px;\n}\n.customizeUpload-module_popoverContent__FrAiq .customizeUpload-module_popoverTitle__3Qw2t {\n margin-bottom: 4px;\n color: #262626;\n font-weight: 500;\n font-size: 16px;\n}\n.customizeUpload-module_popoverContent__FrAiq .customizeUpload-module_popoverSubtitle__1NA3m {\n margin-bottom: 16px;\n color: #8c8c8c;\n font-size: 12px;\n}\n.customizeUpload-module_popoverContent__FrAiq .customizeUpload-module_actionButtons__2la0G {\n display: flex;\n gap: 12px;\n}\n.customizeUpload-module_popoverContent__FrAiq .customizeUpload-module_actionButtons__2la0G .customizeUpload-module_actionButton__1Wr1J {\n display: flex;\n flex: 1;\n gap: 6px;\n align-items: center;\n justify-content: center;\n height: 40px;\n background-color: #fafafa;\n border: 1px solid #d9d9d9;\n border-radius: 6px;\n}\n.customizeUpload-module_popoverContent__FrAiq .customizeUpload-module_actionButtons__2la0G .customizeUpload-module_actionButton__1Wr1J:hover:not(:disabled) {\n color: #40a9ff;\n background-color: #f0f8ff;\n border-color: #40a9ff;\n}\n.customizeUpload-module_popoverContent__FrAiq .customizeUpload-module_actionButtons__2la0G .customizeUpload-module_actionButton__1Wr1J:disabled {\n color: #bfbfbf;\n background-color: #f5f5f5;\n border-color: #d9d9d9;\n cursor: not-allowed;\n}\n";
|
|
23414
23679
|
var styles$5 = {"customizeUpload":"customizeUpload-module_customizeUpload__2tG-4","addButton":"customizeUpload-module_addButton__2w8Jj","imageItem":"customizeUpload-module_imageItem__yn6H1","image":"customizeUpload-module_image__3hOnT","deleteBtn":"customizeUpload-module_deleteBtn__85Jsl","uploadContainer":"customizeUpload-module_uploadContainer__rUcw7","popoverContent":"customizeUpload-module_popoverContent__FrAiq","popoverTitle":"customizeUpload-module_popoverTitle__3Qw2t","popoverSubtitle":"customizeUpload-module_popoverSubtitle__1NA3m","actionButtons":"customizeUpload-module_actionButtons__2la0G","actionButton":"customizeUpload-module_actionButton__1Wr1J"};
|
|
23415
|
-
styleInject(css_248z$
|
|
23680
|
+
styleInject(css_248z$f);
|
|
23416
23681
|
|
|
23417
23682
|
var CustomizeUpload = function CustomizeUpload(_ref) {
|
|
23418
23683
|
var _ref$value = _ref.value,
|
|
@@ -25514,7 +25779,7 @@ var PublicReissue = function PublicReissue(props) {
|
|
|
25514
25779
|
(_typeMap$type5 = typeMap$2[type]) === null || _typeMap$type5 === void 0 ? void 0 : _typeMap$type5.getOrderList(orderNo).then(function (data) {
|
|
25515
25780
|
var _valueRef$current3, _typeMap$type6, _typeMap$type7, _typeMap$type11, _ref3, _typeMap$type12;
|
|
25516
25781
|
var orders = data || [];
|
|
25517
|
-
var showOrderInfo = orders.map(function (orderItem) {
|
|
25782
|
+
var showOrderInfo = orders === null || orders === void 0 ? void 0 : orders.map(function (orderItem) {
|
|
25518
25783
|
return _defineProperty({}, typeMap$2[type].oIdKey, orderItem[typeMap$2[type].oIdKey]);
|
|
25519
25784
|
});
|
|
25520
25785
|
var typeObj = {};
|
|
@@ -25750,8 +26015,8 @@ var PublicReissue = function PublicReissue(props) {
|
|
|
25750
26015
|
})));
|
|
25751
26016
|
};
|
|
25752
26017
|
|
|
25753
|
-
var css_248z$
|
|
25754
|
-
styleInject(css_248z$
|
|
26018
|
+
var css_248z$g = ".goodsBox {\n display: flex;\n flex-wrap: wrap;\n}\n.goods-imgBox {\n position: relative;\n width: 80px;\n height: 80px;\n border: 1px solid #F2F3F5;\n margin: 0 10px 10px 0;\n text-align: center;\n}\n.icon-close {\n position: absolute;\n top: -5px;\n right: -5px;\n width: 13px;\n height: 13px;\n display: flex;\n justify-content: center;\n align-items: center;\n border-radius: 50%;\n z-index: 3;\n background-color: #fff;\n cursor: pointer;\n}\n.img {\n width: 100%;\n height: 100%;\n -o-object-fit: contain;\n object-fit: contain;\n}\n.goods-title {\n margin: 0 0 10px 5px;\n color: #4E5969;\n}\n.deg90 {\n transform: rotate(90deg);\n}\n.goodMain {\n display: flex;\n flex-wrap: wrap;\n height: 265px;\n overflow-y: auto;\n margin-bottom: 10px;\n}\n.goodMain .goodItem {\n width: 140px;\n height: 175px;\n padding: 11px 10px 0;\n text-align: center;\n display: inline-block;\n vertical-align: top;\n margin-bottom: 10px;\n margin-right: 30px;\n border: 1px solid #e6e6e6;\n cursor: pointer;\n transition: border 0.3s;\n}\n.goodMain .goodItem .goodImg {\n width: 120px;\n height: 120px;\n}\n.goodMain .goodItem .goodText {\n overflow: hidden;\n text-overflow: ellipsis;\n white-space: nowrap;\n}\n.goodMain .goodItem.active {\n border: 1px solid #3089dc;\n}\n.right-context {\n display: flex;\n flex-direction: column;\n}\n";
|
|
26019
|
+
styleInject(css_248z$g);
|
|
25755
26020
|
|
|
25756
26021
|
var TabPane$1 = Tabs.TabPane;
|
|
25757
26022
|
var Option$2 = Select.Option;
|
|
@@ -26767,9 +27032,9 @@ var bsE3Reissue = function bsE3Reissue(props) {
|
|
|
26767
27032
|
})));
|
|
26768
27033
|
};
|
|
26769
27034
|
|
|
26770
|
-
var css_248z$
|
|
27035
|
+
var css_248z$h = ".index-module_systemNoDisabled__1s7aJ.ant-select-item-option-disabled {\n color: #dadada !important;\n}\n";
|
|
26771
27036
|
var styles$6 = {"systemNoDisabled":"index-module_systemNoDisabled__1s7aJ"};
|
|
26772
|
-
styleInject(css_248z$
|
|
27037
|
+
styleInject(css_248z$h);
|
|
26773
27038
|
|
|
26774
27039
|
var _excluded$r = ["value", "onChange", "reasonList", "disabled", "type", "isSettingConfig"],
|
|
26775
27040
|
_excluded2$1 = ["billNo", "billType", "billTag", "tradeTagName", "deliveryState", "vipCode", "shopCode"];
|
|
@@ -27380,9 +27645,9 @@ var GyReturnGoods = function GyReturnGoods(props) {
|
|
|
27380
27645
|
})));
|
|
27381
27646
|
};
|
|
27382
27647
|
|
|
27383
|
-
var css_248z$
|
|
27648
|
+
var css_248z$i = ".index-module_imageBox__1f2AI {\n display: flex;\n flex-wrap: wrap;\n}\n.index-module_imageBox__1f2AI .ant-upload {\n padding: 0;\n height: 80px;\n width: 80px;\n border: none;\n border-radius: 2px;\n background: #F2F3F5;\n text-align: center;\n color: #86909C;\n font-size: 14px;\n}\n.index-module_imageBox__1f2AI .ant-upload .index-module_addBtn__1DY59 {\n color: #86909C;\n font-size: 14px;\n}\n.index-module_imageBox__1f2AI > span {\n max-width: 100%;\n}\n.index-module_tips__1XQjf {\n color: #4E5969;\n font-size: 12px;\n}\n";
|
|
27384
27649
|
var styles$7 = {"imageBox":"index-module_imageBox__1f2AI","addBtn":"index-module_addBtn__1DY59","tips":"index-module_tips__1XQjf"};
|
|
27385
|
-
styleInject(css_248z$
|
|
27650
|
+
styleInject(css_248z$i);
|
|
27386
27651
|
|
|
27387
27652
|
var _excluded$t = ["maxCount", "maxSize", "onChange", "value", "disabled", "hostUrl", "canDownload", "actionUrl"];
|
|
27388
27653
|
var Dragger$1 = Upload.Dragger;
|