@kmkf-fe-packages/basic-components 1.1.3 → 1.2.0
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/README.md +2 -1
- package/dist/index.esm.js +21 -581
- package/dist/index.js +20 -583
- package/dist/src/index.d.ts +0 -2
- package/package.json +3 -4
- package/dist/src/common/CommonExchangeGoods/index.d.ts +0 -3
- package/dist/src/common/CommonReturnGoods/index.d.ts +0 -3
package/dist/index.esm.js
CHANGED
|
@@ -8,7 +8,6 @@ import zhCN from 'antd/lib/locale/zh_CN';
|
|
|
8
8
|
import { cloneDeep, difference, differenceWith } from 'lodash';
|
|
9
9
|
import { useDebounceEffect } from 'ahooks';
|
|
10
10
|
import pubsub from 'pubsub-js';
|
|
11
|
-
import BigNumber from 'bignumber.js';
|
|
12
11
|
|
|
13
12
|
function _iterableToArrayLimit(r, l) {
|
|
14
13
|
var t = null == r ? null : "undefined" != typeof Symbol && r[Symbol.iterator] || r["@@iterator"];
|
|
@@ -10443,7 +10442,7 @@ var jstGoods = function jstGoods(props) {
|
|
|
10443
10442
|
var wdtSendOptions = WdtSendData.getInstance().wdtSendData || [];
|
|
10444
10443
|
useEffect(function () {
|
|
10445
10444
|
//没有值塞个默认值
|
|
10446
|
-
if (!(value === null || value === void 0 ? void 0 : value.length)
|
|
10445
|
+
if (!(value === null || value === void 0 ? void 0 : value.length)) {
|
|
10447
10446
|
onChange === null || onChange === void 0 ? void 0 : onChange(typeInitValueMap[type]);
|
|
10448
10447
|
}
|
|
10449
10448
|
}, [value, type]);
|
|
@@ -10506,7 +10505,7 @@ var jstGoods = function jstGoods(props) {
|
|
|
10506
10505
|
return setChangeIndex(index);
|
|
10507
10506
|
}
|
|
10508
10507
|
}, "\u5305\u88F9".concat(index + 1)));
|
|
10509
|
-
}))) : null, value.length
|
|
10508
|
+
}))) : null, value.length ? /*#__PURE__*/React.createElement(React.Fragment, null, type === 1 ? /*#__PURE__*/React.createElement(Space, null, !showField || showField === 'logisticsCompany' ? /*#__PURE__*/React.createElement(ApaasLogistics, {
|
|
10510
10509
|
disabled: disabled,
|
|
10511
10510
|
placeholder: "\u7269\u6D41\u516C\u53F8",
|
|
10512
10511
|
onChange: function onChange(val) {
|
|
@@ -11663,34 +11662,9 @@ var GoodItem$1 = function GoodItem(props) {
|
|
|
11663
11662
|
useEffect(function () {
|
|
11664
11663
|
setSelectedRowKeys([]);
|
|
11665
11664
|
}, [tableSelect, selectType]);
|
|
11666
|
-
var updateHandle = function updateHandle(val, index,
|
|
11665
|
+
var updateHandle = function updateHandle(val, index, type) {
|
|
11667
11666
|
if (value === null || value === void 0 ? void 0 : value.length) {
|
|
11668
|
-
value[index][
|
|
11669
|
-
if (type === 'WDT_RETURN_GOODS') {
|
|
11670
|
-
if (['sharePrice', 'num'].includes(columnType)) {
|
|
11671
|
-
var totalMoney = null;
|
|
11672
|
-
if (columnType === 'num') {
|
|
11673
|
-
totalMoney = new BigNumber(value[index][columnType]).multipliedBy(new BigNumber(value[index].sharePrice));
|
|
11674
|
-
} else {
|
|
11675
|
-
totalMoney = new BigNumber(value[index][columnType]).multipliedBy(new BigNumber(value[index].num));
|
|
11676
|
-
}
|
|
11677
|
-
if (totalMoney !== null) {
|
|
11678
|
-
value[index]['returnPrice'] = totalMoney.toString();
|
|
11679
|
-
}
|
|
11680
|
-
}
|
|
11681
|
-
} else if (type === 'WDT_EXCHANGE_GOODS') {
|
|
11682
|
-
if (['price', 'num'].includes(columnType)) {
|
|
11683
|
-
var _totalMoney = null;
|
|
11684
|
-
if (columnType === 'num') {
|
|
11685
|
-
_totalMoney = new BigNumber(value[index][columnType]).multipliedBy(new BigNumber(value[index].price));
|
|
11686
|
-
} else {
|
|
11687
|
-
_totalMoney = new BigNumber(value[index][columnType]).multipliedBy(new BigNumber(value[index].num));
|
|
11688
|
-
}
|
|
11689
|
-
if (_totalMoney !== null) {
|
|
11690
|
-
value[index]['exchangePrice'] = _totalMoney.toString();
|
|
11691
|
-
}
|
|
11692
|
-
}
|
|
11693
|
-
}
|
|
11667
|
+
value[index][type] = val;
|
|
11694
11668
|
onChange === null || onChange === void 0 ? void 0 : onChange(_toConsumableArray(value));
|
|
11695
11669
|
}
|
|
11696
11670
|
};
|
|
@@ -11796,260 +11770,6 @@ var GoodItem$1 = function GoodItem(props) {
|
|
|
11796
11770
|
}
|
|
11797
11771
|
}];
|
|
11798
11772
|
break;
|
|
11799
|
-
case 'WDT_RETURN_GOODS':
|
|
11800
|
-
{
|
|
11801
|
-
columns = [{
|
|
11802
|
-
dataIndex: 'goodId',
|
|
11803
|
-
title: "SPUID",
|
|
11804
|
-
align: 'center',
|
|
11805
|
-
ellipsis: true,
|
|
11806
|
-
width: 70
|
|
11807
|
-
}, {
|
|
11808
|
-
dataIndex: 'goodNo',
|
|
11809
|
-
title: "\u5546\u54C1SPU\u7F16\u7801",
|
|
11810
|
-
align: 'center',
|
|
11811
|
-
ellipsis: true,
|
|
11812
|
-
width: 180
|
|
11813
|
-
}, {
|
|
11814
|
-
dataIndex: 'goodName',
|
|
11815
|
-
title: "".concat(text, "\u5546\u54C1\u540D\u79F0"),
|
|
11816
|
-
align: 'center',
|
|
11817
|
-
ellipsis: true,
|
|
11818
|
-
width: 250
|
|
11819
|
-
}, {
|
|
11820
|
-
dataIndex: 'specId',
|
|
11821
|
-
title: "".concat(text, "SKUID"),
|
|
11822
|
-
align: 'center',
|
|
11823
|
-
ellipsis: true,
|
|
11824
|
-
width: 100
|
|
11825
|
-
}, {
|
|
11826
|
-
dataIndex: 'specNo',
|
|
11827
|
-
title: "".concat(text, "\u5546\u54C1SKU\u7F16\u7801"),
|
|
11828
|
-
align: 'center',
|
|
11829
|
-
ellipsis: true,
|
|
11830
|
-
width: 180
|
|
11831
|
-
}, {
|
|
11832
|
-
dataIndex: 'specName',
|
|
11833
|
-
title: "".concat(text, "\u5546\u54C1SKU\u540D\u79F0"),
|
|
11834
|
-
align: 'center',
|
|
11835
|
-
ellipsis: true,
|
|
11836
|
-
width: 250
|
|
11837
|
-
}, {
|
|
11838
|
-
dataIndex: 'num',
|
|
11839
|
-
title: "".concat(text, "\u9000\u8D27\u6570\u91CF"),
|
|
11840
|
-
align: 'center',
|
|
11841
|
-
ellipsis: true,
|
|
11842
|
-
width: 100,
|
|
11843
|
-
render: function render(val, record, index) {
|
|
11844
|
-
return !disabled ? /*#__PURE__*/React.createElement(InputNumber, {
|
|
11845
|
-
style: {
|
|
11846
|
-
width: 70
|
|
11847
|
-
},
|
|
11848
|
-
value: val,
|
|
11849
|
-
min: 1,
|
|
11850
|
-
precision: 0,
|
|
11851
|
-
onChange: function onChange(num) {
|
|
11852
|
-
return updateHandle(num, index, 'num');
|
|
11853
|
-
}
|
|
11854
|
-
}) : /*#__PURE__*/React.createElement("span", null, val);
|
|
11855
|
-
}
|
|
11856
|
-
}, {
|
|
11857
|
-
dataIndex: 'sharePrice',
|
|
11858
|
-
title: "\u5206\u644A\u4EF7",
|
|
11859
|
-
align: 'center',
|
|
11860
|
-
ellipsis: true,
|
|
11861
|
-
width: 80,
|
|
11862
|
-
render: function render(val, record, index) {
|
|
11863
|
-
return !disabled ? /*#__PURE__*/React.createElement(InputNumber, {
|
|
11864
|
-
style: {
|
|
11865
|
-
width: 70
|
|
11866
|
-
},
|
|
11867
|
-
value: val,
|
|
11868
|
-
min: 0,
|
|
11869
|
-
onChange: function onChange(value) {
|
|
11870
|
-
return updateHandle(value, index, 'sharePrice');
|
|
11871
|
-
}
|
|
11872
|
-
}) : /*#__PURE__*/React.createElement("span", null, val);
|
|
11873
|
-
}
|
|
11874
|
-
}, {
|
|
11875
|
-
dataIndex: 'returnPrice',
|
|
11876
|
-
title: "".concat(text, "\u9000\u8D27\u91D1\u989D"),
|
|
11877
|
-
align: 'center',
|
|
11878
|
-
ellipsis: true,
|
|
11879
|
-
width: 100
|
|
11880
|
-
}, {
|
|
11881
|
-
dataIndex: 'giftType',
|
|
11882
|
-
title: "\u8D60\u54C1\u65B9\u5F0F",
|
|
11883
|
-
align: 'center',
|
|
11884
|
-
ellipsis: true,
|
|
11885
|
-
width: 100,
|
|
11886
|
-
render: function render(val) {
|
|
11887
|
-
var giftTypeMap = {
|
|
11888
|
-
0: '非赠品',
|
|
11889
|
-
1: '自动赠送',
|
|
11890
|
-
2: '手工赠送',
|
|
11891
|
-
3: '回购自动送赠品',
|
|
11892
|
-
4: '前N有礼送赠品',
|
|
11893
|
-
6: '天猫优仓赠品',
|
|
11894
|
-
7: '淘宝CRM会员送赠'
|
|
11895
|
-
};
|
|
11896
|
-
return /*#__PURE__*/React.createElement("span", null, giftTypeMap[val]);
|
|
11897
|
-
}
|
|
11898
|
-
}, {
|
|
11899
|
-
dataIndex: 'type',
|
|
11900
|
-
title: "".concat(text, "\u5546\u54C1\u7C7B\u578B"),
|
|
11901
|
-
align: 'center',
|
|
11902
|
-
ellipsis: true,
|
|
11903
|
-
width: 100,
|
|
11904
|
-
render: function render(val, record, index) {
|
|
11905
|
-
var options = [{
|
|
11906
|
-
label: '单品',
|
|
11907
|
-
value: '1'
|
|
11908
|
-
}, {
|
|
11909
|
-
label: '组合装',
|
|
11910
|
-
value: '2'
|
|
11911
|
-
}];
|
|
11912
|
-
return !disabled ? /*#__PURE__*/React.createElement(Select, {
|
|
11913
|
-
style: {
|
|
11914
|
-
width: 70
|
|
11915
|
-
},
|
|
11916
|
-
options: options,
|
|
11917
|
-
value: val,
|
|
11918
|
-
onChange: function onChange(value) {
|
|
11919
|
-
return updateHandle(value, index, 'type');
|
|
11920
|
-
}
|
|
11921
|
-
}) : /*#__PURE__*/React.createElement("span", null, val);
|
|
11922
|
-
}
|
|
11923
|
-
}];
|
|
11924
|
-
}
|
|
11925
|
-
break;
|
|
11926
|
-
case 'WDT_EXCHANGE_GOODS':
|
|
11927
|
-
{
|
|
11928
|
-
columns = [{
|
|
11929
|
-
dataIndex: 'goodId',
|
|
11930
|
-
title: "SPUID",
|
|
11931
|
-
align: 'center',
|
|
11932
|
-
ellipsis: true,
|
|
11933
|
-
width: 70
|
|
11934
|
-
}, {
|
|
11935
|
-
dataIndex: 'goodNo',
|
|
11936
|
-
title: "\u5546\u54C1SPU\u7F16\u7801",
|
|
11937
|
-
align: 'center',
|
|
11938
|
-
ellipsis: true,
|
|
11939
|
-
width: 180
|
|
11940
|
-
}, {
|
|
11941
|
-
dataIndex: 'goodName',
|
|
11942
|
-
title: "".concat(text, "\u5546\u54C1\u540D\u79F0"),
|
|
11943
|
-
align: 'center',
|
|
11944
|
-
ellipsis: true,
|
|
11945
|
-
width: 250
|
|
11946
|
-
}, {
|
|
11947
|
-
dataIndex: 'specId',
|
|
11948
|
-
title: "".concat(text, "SKUID"),
|
|
11949
|
-
align: 'center',
|
|
11950
|
-
ellipsis: true,
|
|
11951
|
-
width: 100
|
|
11952
|
-
}, {
|
|
11953
|
-
dataIndex: 'specNo',
|
|
11954
|
-
title: "".concat(text, "\u5546\u54C1SKU\u7F16\u7801"),
|
|
11955
|
-
align: 'center',
|
|
11956
|
-
ellipsis: true,
|
|
11957
|
-
width: 180
|
|
11958
|
-
}, {
|
|
11959
|
-
dataIndex: 'specName',
|
|
11960
|
-
title: "".concat(text, "\u5546\u54C1SKU\u540D\u79F0"),
|
|
11961
|
-
align: 'center',
|
|
11962
|
-
ellipsis: true,
|
|
11963
|
-
width: 250
|
|
11964
|
-
}, {
|
|
11965
|
-
dataIndex: 'num',
|
|
11966
|
-
title: "".concat(text, "\u6362\u51FA\u6570\u91CF"),
|
|
11967
|
-
align: 'center',
|
|
11968
|
-
ellipsis: true,
|
|
11969
|
-
width: 100,
|
|
11970
|
-
render: function render(val, record, index) {
|
|
11971
|
-
return !disabled ? /*#__PURE__*/React.createElement(InputNumber, {
|
|
11972
|
-
style: {
|
|
11973
|
-
width: 70
|
|
11974
|
-
},
|
|
11975
|
-
value: val,
|
|
11976
|
-
min: 1,
|
|
11977
|
-
precision: 0,
|
|
11978
|
-
onChange: function onChange(num) {
|
|
11979
|
-
return updateHandle(num, index, 'num');
|
|
11980
|
-
}
|
|
11981
|
-
}) : /*#__PURE__*/React.createElement("span", null, val);
|
|
11982
|
-
}
|
|
11983
|
-
}, {
|
|
11984
|
-
dataIndex: 'price',
|
|
11985
|
-
title: "".concat(text, "\u5546\u54C1\u5355\u4EF7"),
|
|
11986
|
-
align: 'center',
|
|
11987
|
-
ellipsis: true,
|
|
11988
|
-
width: 100,
|
|
11989
|
-
render: function render(val, record, index) {
|
|
11990
|
-
return !disabled ? /*#__PURE__*/React.createElement(InputNumber, {
|
|
11991
|
-
style: {
|
|
11992
|
-
width: 70
|
|
11993
|
-
},
|
|
11994
|
-
value: val,
|
|
11995
|
-
min: 0,
|
|
11996
|
-
onChange: function onChange(value) {
|
|
11997
|
-
return updateHandle(value, index, 'price');
|
|
11998
|
-
}
|
|
11999
|
-
}) : /*#__PURE__*/React.createElement("span", null, val);
|
|
12000
|
-
}
|
|
12001
|
-
}, {
|
|
12002
|
-
dataIndex: 'exchangePrice',
|
|
12003
|
-
title: "".concat(text, "\u6362\u51FA\u91D1\u989D"),
|
|
12004
|
-
align: 'center',
|
|
12005
|
-
ellipsis: true,
|
|
12006
|
-
width: 100
|
|
12007
|
-
}, {
|
|
12008
|
-
dataIndex: 'giftType',
|
|
12009
|
-
title: "\u8D60\u54C1\u65B9\u5F0F",
|
|
12010
|
-
align: 'center',
|
|
12011
|
-
ellipsis: true,
|
|
12012
|
-
width: 100,
|
|
12013
|
-
render: function render(val) {
|
|
12014
|
-
var giftTypeMap = {
|
|
12015
|
-
0: '非赠品',
|
|
12016
|
-
1: '自动赠送',
|
|
12017
|
-
2: '手工赠送',
|
|
12018
|
-
3: '回购自动送赠品',
|
|
12019
|
-
4: '前N有礼送赠品',
|
|
12020
|
-
6: '天猫优仓赠品',
|
|
12021
|
-
7: '淘宝CRM会员送赠'
|
|
12022
|
-
};
|
|
12023
|
-
return /*#__PURE__*/React.createElement("span", null, giftTypeMap[val]);
|
|
12024
|
-
}
|
|
12025
|
-
}, {
|
|
12026
|
-
dataIndex: 'type',
|
|
12027
|
-
title: "".concat(text, "\u5546\u54C1\u7C7B\u578B"),
|
|
12028
|
-
align: 'center',
|
|
12029
|
-
ellipsis: true,
|
|
12030
|
-
width: 100,
|
|
12031
|
-
render: function render(val, record, index) {
|
|
12032
|
-
var options = [{
|
|
12033
|
-
label: '单品',
|
|
12034
|
-
value: '1'
|
|
12035
|
-
}, {
|
|
12036
|
-
label: '组合装',
|
|
12037
|
-
value: '2'
|
|
12038
|
-
}];
|
|
12039
|
-
return !disabled ? /*#__PURE__*/React.createElement(Select, {
|
|
12040
|
-
style: {
|
|
12041
|
-
width: 70
|
|
12042
|
-
},
|
|
12043
|
-
options: options,
|
|
12044
|
-
value: val,
|
|
12045
|
-
onChange: function onChange(value) {
|
|
12046
|
-
return updateHandle(value, index, 'type');
|
|
12047
|
-
}
|
|
12048
|
-
}) : /*#__PURE__*/React.createElement("span", null, val);
|
|
12049
|
-
}
|
|
12050
|
-
}];
|
|
12051
|
-
}
|
|
12052
|
-
break;
|
|
12053
11773
|
default:
|
|
12054
11774
|
columns = [{
|
|
12055
11775
|
dataIndex: 'mark',
|
|
@@ -12191,7 +11911,7 @@ var GoodItem$1 = function GoodItem(props) {
|
|
|
12191
11911
|
}, [showHeader, value, disabled]);
|
|
12192
11912
|
var onSubmit = function onSubmit(list) {
|
|
12193
11913
|
var newList = [];
|
|
12194
|
-
if (['WDT_REISSUE_GOODS', 'WDT_GOODS'
|
|
11914
|
+
if (['WDT_REISSUE_GOODS', 'WDT_GOODS'].includes(type)) {
|
|
12195
11915
|
newList = list.map(function (item) {
|
|
12196
11916
|
item.uuid = uuid();
|
|
12197
11917
|
item.canDelete = true;
|
|
@@ -12199,10 +11919,6 @@ var GoodItem$1 = function GoodItem(props) {
|
|
|
12199
11919
|
item.orderPrice = 0;
|
|
12200
11920
|
item.sharePrice = 0;
|
|
12201
11921
|
item.canUpdateNumber = canUpdateNumber;
|
|
12202
|
-
if (type === 'WDT_EXCHANGE_GOODS') {
|
|
12203
|
-
item.price = item.retailPrice;
|
|
12204
|
-
item.type = '1';
|
|
12205
|
-
}
|
|
12206
11922
|
return item;
|
|
12207
11923
|
});
|
|
12208
11924
|
} else {
|
|
@@ -12273,7 +11989,7 @@ var GoodItem$1 = function GoodItem(props) {
|
|
|
12273
11989
|
locale: {
|
|
12274
11990
|
emptyText: '暂无数据'
|
|
12275
11991
|
}
|
|
12276
|
-
})), ['WDT_REISSUE_GOODS', 'WDT_GOODS'
|
|
11992
|
+
})), ['WDT_REISSUE_GOODS', 'WDT_GOODS'].includes(type) ? /*#__PURE__*/React.createElement(WdtGoodsModal, {
|
|
12277
11993
|
ref: refModal,
|
|
12278
11994
|
onSubmit: onSubmit,
|
|
12279
11995
|
width: width,
|
|
@@ -13030,7 +12746,7 @@ var index$1 = (function (props) {
|
|
|
13030
12746
|
}();
|
|
13031
12747
|
var getWdtOrderList = /*#__PURE__*/function () {
|
|
13032
12748
|
var _ref3 = _asyncToGenerator( /*#__PURE__*/_regeneratorRuntime().mark(function _callee3(orderNo) {
|
|
13033
|
-
var _yield$request3, success, data
|
|
12749
|
+
var _yield$request3, success, data;
|
|
13034
12750
|
return _regeneratorRuntime().wrap(function _callee3$(_context3) {
|
|
13035
12751
|
while (1) switch (_context3.prev = _context3.next) {
|
|
13036
12752
|
case 0:
|
|
@@ -13046,25 +12762,15 @@ var index$1 = (function (props) {
|
|
|
13046
12762
|
success = _yield$request3.success;
|
|
13047
12763
|
data = _yield$request3.data;
|
|
13048
12764
|
if (success) {
|
|
13049
|
-
trades = ((data === null || data === void 0 ? void 0 : data.trades) || []).filter(function (item) {
|
|
13050
|
-
return (item.srcTid || '').split(',').includes(orderNo);
|
|
13051
|
-
}).map(function (item) {
|
|
13052
|
-
if (Array.isArray(item.goodDetails)) {
|
|
13053
|
-
item.goodDetails = item.goodDetails.filter(function (good) {
|
|
13054
|
-
return good.srcTid === orderNo;
|
|
13055
|
-
});
|
|
13056
|
-
}
|
|
13057
|
-
return item;
|
|
13058
|
-
});
|
|
13059
12765
|
_onChange(_objectSpread2(_objectSpread2({}, value), {}, {
|
|
13060
|
-
orders: trades.map(function (item) {
|
|
12766
|
+
orders: ((data === null || data === void 0 ? void 0 : data.trades) || []).map(function (item) {
|
|
13061
12767
|
return _objectSpread2(_objectSpread2({}, item), {}, {
|
|
13062
12768
|
billNo: item.tradeNo,
|
|
13063
12769
|
billType: WDT_ORDER_TYPE_MAP[item.tradeType],
|
|
13064
12770
|
billTag: item.tagName
|
|
13065
12771
|
});
|
|
13066
12772
|
}),
|
|
13067
|
-
showOrderInfo: trades.map(function (item) {
|
|
12773
|
+
showOrderInfo: data === null || data === void 0 ? void 0 : data.trades.map(function (item) {
|
|
13068
12774
|
return {
|
|
13069
12775
|
billNo: item.tradeNo,
|
|
13070
12776
|
billType: WDT_ORDER_TYPE_MAP[item.tradeType],
|
|
@@ -13153,10 +12859,8 @@ var componentMap$1 = {
|
|
|
13153
12859
|
reissueType: 'wdtReissueType',
|
|
13154
12860
|
returnType: 'wdtReturnType',
|
|
13155
12861
|
returnSelectListReturn: 'wdtReturnSelectListReturn',
|
|
13156
|
-
returnSelectList: 'wdtReturnSelectList',
|
|
13157
12862
|
deleteGood: 'wdtDeleteGood',
|
|
13158
|
-
returnDeleteGood: 'wdtReturnDeleteGood'
|
|
13159
|
-
exchangeDeleteGood: 'wdtExchangeDeleteGood'
|
|
12863
|
+
returnDeleteGood: 'wdtReturnDeleteGood'
|
|
13160
12864
|
}
|
|
13161
12865
|
}
|
|
13162
12866
|
};
|
|
@@ -13223,7 +12927,7 @@ var CommonGoods = function CommonGoods(props) {
|
|
|
13223
12927
|
setTableSelect(['2', '4'].includes(data.val));
|
|
13224
12928
|
if (['1', '3'].includes(data.val)) {
|
|
13225
12929
|
var _valueRef$current5, _valueRef$current6;
|
|
13226
|
-
pubsub.publish(componentMap$1[
|
|
12930
|
+
pubsub.publish(componentMap$1[type].eventNameMap.returnSelectListReturn, {
|
|
13227
12931
|
list: cloneDeep((valueRef === null || valueRef === void 0 ? void 0 : (_valueRef$current5 = valueRef.current) === null || _valueRef$current5 === void 0 ? void 0 : _valueRef$current5[componentMap$1[compType].key]) || []),
|
|
13228
12932
|
shopCode: valueRef === null || valueRef === void 0 ? void 0 : (_valueRef$current6 = valueRef.current) === null || _valueRef$current6 === void 0 ? void 0 : _valueRef$current6.shopCode,
|
|
13229
12933
|
goodValue: data === null || data === void 0 ? void 0 : data.goodValue
|
|
@@ -13241,15 +12945,15 @@ var CommonGoods = function CommonGoods(props) {
|
|
|
13241
12945
|
};
|
|
13242
12946
|
}, [disabled]);
|
|
13243
12947
|
var _onSelect = function onSelect(list) {
|
|
13244
|
-
var
|
|
12948
|
+
var _withInfo$current, _withInfo$current2, _valueRef$current7;
|
|
13245
12949
|
if (disabled) return;
|
|
13246
12950
|
var newList = cloneDeep(list);
|
|
13247
|
-
var typeMap = (
|
|
12951
|
+
var typeMap = _defineProperty({
|
|
13248
12952
|
// type: componentMap[compType].eventNameMap.selectList,
|
|
13249
12953
|
// returnType: componentMap[compType].eventNameMap.returnSelectList,
|
|
13250
12954
|
// reissueType: componentMap[compType].eventNameMap.reissueSelectList,
|
|
13251
12955
|
type: componentMap$1[compType].eventNameMap.selectList
|
|
13252
|
-
},
|
|
12956
|
+
}, "".concat(componentMap$1[compType].type, "ReissueType"), componentMap$1[compType].eventNameMap.reissueSelectList);
|
|
13253
12957
|
var type = typeMap[(_withInfo$current = withInfo.current) === null || _withInfo$current === void 0 ? void 0 : _withInfo$current.type];
|
|
13254
12958
|
// console.log('onSelect', type, withInfo.current, newList);
|
|
13255
12959
|
pubsub.publish(type, {
|
|
@@ -13267,7 +12971,6 @@ var CommonGoods = function CommonGoods(props) {
|
|
|
13267
12971
|
pubsub.publish(componentMap$1[compType].eventNameMap.deleteGood, deleteId);
|
|
13268
12972
|
pubsub.publish(componentMap$1[compType].eventNameMap.reissueDeleteGood, deleteId);
|
|
13269
12973
|
pubsub.publish(componentMap$1[compType].eventNameMap.returnDeleteGood, deleteId);
|
|
13270
|
-
pubsub.publish(componentMap$1[compType].eventNameMap.exchangeDeleteGood, deleteId);
|
|
13271
12974
|
};
|
|
13272
12975
|
var changeHandle = function changeHandle(list) {
|
|
13273
12976
|
onChange === null || onChange === void 0 ? void 0 : onChange(_objectSpread2(_objectSpread2({}, value), {}, _defineProperty({}, componentMap$1[compType].key, list)));
|
|
@@ -13292,263 +12995,6 @@ var CommonGoods = function CommonGoods(props) {
|
|
|
13292
12995
|
}));
|
|
13293
12996
|
};
|
|
13294
12997
|
|
|
13295
|
-
var componentMap$2 = {
|
|
13296
|
-
'WDT_RETURN_GOODS': {
|
|
13297
|
-
type: 'wdt',
|
|
13298
|
-
valueKey: 'wdtReturnGoods',
|
|
13299
|
-
returnTypeKey: 'wdtReturnType',
|
|
13300
|
-
name: '旺店通',
|
|
13301
|
-
eventNameMap: {
|
|
13302
|
-
changeShopCode: 'wdtChangeShopCode',
|
|
13303
|
-
returnType: 'wdtReturnType',
|
|
13304
|
-
returnSelectListReturn: 'wdtReturnSelectListReturn',
|
|
13305
|
-
returnDeleteGood: 'wdtReturnDeleteGood',
|
|
13306
|
-
returnSelectList: 'wdtReturnSelectList',
|
|
13307
|
-
exchangeCopyGood: 'wdtExchangeCopyGood',
|
|
13308
|
-
exchangeBackCopyGood: 'wdtExchangeBackCopyGood'
|
|
13309
|
-
}
|
|
13310
|
-
}
|
|
13311
|
-
};
|
|
13312
|
-
var CommonReturnGoods = function CommonReturnGoods(props) {
|
|
13313
|
-
var value = props.value,
|
|
13314
|
-
onChange = props.onChange,
|
|
13315
|
-
_props$reasonList = props.reasonList,
|
|
13316
|
-
reasonList = _props$reasonList === void 0 ? [] : _props$reasonList,
|
|
13317
|
-
disabled = props.disabled,
|
|
13318
|
-
compType = props.type;
|
|
13319
|
-
var valueRef = useRef({});
|
|
13320
|
-
useEffect(function () {
|
|
13321
|
-
var subscription = pubsub.subscribe(componentMap$2[compType].eventNameMap.exchangeCopyGood, function () {
|
|
13322
|
-
var _valueRef$current, _valueRef$current2;
|
|
13323
|
-
pubsub.publish(componentMap$2[compType].eventNameMap.exchangeBackCopyGood, {
|
|
13324
|
-
list: cloneDeep((valueRef === null || valueRef === void 0 ? void 0 : (_valueRef$current = valueRef.current) === null || _valueRef$current === void 0 ? void 0 : _valueRef$current[componentMap$2[compType].valueKey]) || []),
|
|
13325
|
-
shopCode: valueRef === null || valueRef === void 0 ? void 0 : (_valueRef$current2 = valueRef.current) === null || _valueRef$current2 === void 0 ? void 0 : _valueRef$current2.shopCode
|
|
13326
|
-
});
|
|
13327
|
-
});
|
|
13328
|
-
return function () {
|
|
13329
|
-
pubsub.unsubscribe(subscription);
|
|
13330
|
-
};
|
|
13331
|
-
}, []);
|
|
13332
|
-
useEffect(function () {
|
|
13333
|
-
var subscription = pubsub.subscribe(componentMap$2[compType].eventNameMap.returnSelectList, function (_, data) {
|
|
13334
|
-
if (disabled) return;
|
|
13335
|
-
var newValue = _objectSpread2(_objectSpread2({}, data.goodValue), {}, {
|
|
13336
|
-
shopCode: data === null || data === void 0 ? void 0 : data.shopCode
|
|
13337
|
-
});
|
|
13338
|
-
if (compType === 'WDT_RETURN_GOODS') {
|
|
13339
|
-
newValue[componentMap$2[compType].valueKey] = ((data === null || data === void 0 ? void 0 : data.list) || []).map(function (item) {
|
|
13340
|
-
if (typeof item.type === 'undefined') {
|
|
13341
|
-
item.type = '1';
|
|
13342
|
-
}
|
|
13343
|
-
if (typeof item.returnPrice === 'undefined') {
|
|
13344
|
-
item.returnPrice = new BigNumber(item.num).multipliedBy(new BigNumber(item.sharePrice)).toString();
|
|
13345
|
-
}
|
|
13346
|
-
if (item.srcOid) {
|
|
13347
|
-
item.oid = item.srcOid;
|
|
13348
|
-
}
|
|
13349
|
-
return item;
|
|
13350
|
-
});
|
|
13351
|
-
} else {
|
|
13352
|
-
newValue[componentMap$2[compType].valueKey] = (data === null || data === void 0 ? void 0 : data.list) || [];
|
|
13353
|
-
}
|
|
13354
|
-
onChange === null || onChange === void 0 ? void 0 : onChange(newValue);
|
|
13355
|
-
});
|
|
13356
|
-
return function () {
|
|
13357
|
-
pubsub.unsubscribe(subscription);
|
|
13358
|
-
};
|
|
13359
|
-
}, []);
|
|
13360
|
-
useEffect(function () {
|
|
13361
|
-
var subscription = pubsub.subscribe(componentMap$2[compType].eventNameMap.returnSelectListReturn, function (_, data) {
|
|
13362
|
-
if (disabled) return;
|
|
13363
|
-
var newValue = _objectSpread2(_objectSpread2({}, data.goodValue), {}, {
|
|
13364
|
-
shopCode: data === null || data === void 0 ? void 0 : data.shopCode
|
|
13365
|
-
});
|
|
13366
|
-
if (compType === 'WDT_RETURN_GOODS') {
|
|
13367
|
-
newValue[componentMap$2[compType].valueKey] = ((data === null || data === void 0 ? void 0 : data.list) || []).map(function (item) {
|
|
13368
|
-
if (typeof item.type === 'undefined') {
|
|
13369
|
-
item.type = '1';
|
|
13370
|
-
}
|
|
13371
|
-
if (typeof item.returnPrice === 'undefined') {
|
|
13372
|
-
item.returnPrice = new BigNumber(item.num).multipliedBy(new BigNumber(item.sharePrice)).toString();
|
|
13373
|
-
}
|
|
13374
|
-
if (item.srcOid) {
|
|
13375
|
-
item.oid = item.srcOid;
|
|
13376
|
-
}
|
|
13377
|
-
return item;
|
|
13378
|
-
});
|
|
13379
|
-
} else {
|
|
13380
|
-
newValue[componentMap$2[compType].valueKey] = (data === null || data === void 0 ? void 0 : data.list) || [];
|
|
13381
|
-
}
|
|
13382
|
-
onChange === null || onChange === void 0 ? void 0 : onChange(newValue);
|
|
13383
|
-
});
|
|
13384
|
-
return function () {
|
|
13385
|
-
pubsub.unsubscribe(subscription);
|
|
13386
|
-
};
|
|
13387
|
-
}, []);
|
|
13388
|
-
useEffect(function () {
|
|
13389
|
-
valueRef.current = value;
|
|
13390
|
-
pubsub.subscribeOnce(componentMap$2[compType].eventNameMap.returnDeleteGood, function (_, data) {
|
|
13391
|
-
if (disabled) return;
|
|
13392
|
-
if (value) {
|
|
13393
|
-
var newValue = _objectSpread2({}, value);
|
|
13394
|
-
newValue[componentMap$2[compType].valueKey] = newValue[componentMap$2[compType].valueKey].filter(function (item) {
|
|
13395
|
-
return item.sku !== data;
|
|
13396
|
-
});
|
|
13397
|
-
onChange === null || onChange === void 0 ? void 0 : onChange(newValue);
|
|
13398
|
-
}
|
|
13399
|
-
});
|
|
13400
|
-
pubsub.subscribeOnce(componentMap$2[compType].eventNameMap.changeShopCode, function (type, data) {
|
|
13401
|
-
onChange(_objectSpread2(_objectSpread2({}, value), {}, {
|
|
13402
|
-
shopCode: data.shopCode
|
|
13403
|
-
}));
|
|
13404
|
-
});
|
|
13405
|
-
}, [value, disabled]);
|
|
13406
|
-
var changeTypeHandle = function changeTypeHandle(val) {
|
|
13407
|
-
var newValue = _objectSpread2({}, value);
|
|
13408
|
-
newValue[componentMap$2[compType].returnTypeKey] = val;
|
|
13409
|
-
newValue[componentMap$2[compType].valueKey] = [];
|
|
13410
|
-
if (['2'].includes(val[0])) {
|
|
13411
|
-
onChange === null || onChange === void 0 ? void 0 : onChange(newValue);
|
|
13412
|
-
valueRef.current = newValue;
|
|
13413
|
-
}
|
|
13414
|
-
pubsub.publish(componentMap$2[compType].eventNameMap.returnType, {
|
|
13415
|
-
val: val[0],
|
|
13416
|
-
goodValue: newValue
|
|
13417
|
-
});
|
|
13418
|
-
};
|
|
13419
|
-
var changeGoodHandle = function changeGoodHandle(val) {
|
|
13420
|
-
var newValue = _objectSpread2({}, value);
|
|
13421
|
-
newValue[componentMap$2[compType].valueKey] = val;
|
|
13422
|
-
onChange === null || onChange === void 0 ? void 0 : onChange(newValue);
|
|
13423
|
-
};
|
|
13424
|
-
//显示选择商品按钮 原单换不显示选择商品
|
|
13425
|
-
// const showChangeBtn = useMemo(() => {
|
|
13426
|
-
// return ['2'].includes(value?.[componentMap[compType].returnTypeKey]?.[0]);
|
|
13427
|
-
// }, [value?.[componentMap[compType].returnTypeKey]]);
|
|
13428
|
-
return /*#__PURE__*/React.createElement(React.Fragment, null, /*#__PURE__*/React.createElement(Cascader, {
|
|
13429
|
-
style: {
|
|
13430
|
-
marginBottom: '8px'
|
|
13431
|
-
},
|
|
13432
|
-
disabled: disabled,
|
|
13433
|
-
allowClear: false,
|
|
13434
|
-
options: reasonList,
|
|
13435
|
-
value: value === null || value === void 0 ? void 0 : value[componentMap$2[compType].returnTypeKey],
|
|
13436
|
-
onChange: function onChange(val) {
|
|
13437
|
-
return changeTypeHandle(val);
|
|
13438
|
-
}
|
|
13439
|
-
}), /*#__PURE__*/React.createElement(GoodItem$1, _objectSpread2(_objectSpread2({
|
|
13440
|
-
key: componentMap$2[compType].type
|
|
13441
|
-
}, props), {}, {
|
|
13442
|
-
disabled: disabled,
|
|
13443
|
-
canUpdateNumber: true,
|
|
13444
|
-
showChangeBtn: false,
|
|
13445
|
-
shopCode: value === null || value === void 0 ? void 0 : value.shopCode,
|
|
13446
|
-
value: value === null || value === void 0 ? void 0 : value[componentMap$2[compType].valueKey],
|
|
13447
|
-
onChange: function onChange(val) {
|
|
13448
|
-
return changeGoodHandle(val);
|
|
13449
|
-
}
|
|
13450
|
-
})));
|
|
13451
|
-
};
|
|
13452
|
-
|
|
13453
|
-
var componentMap$3 = {
|
|
13454
|
-
'WDT_EXCHANGE_GOODS': {
|
|
13455
|
-
type: 'wdt',
|
|
13456
|
-
valueKey: 'wdtExchangeGoods',
|
|
13457
|
-
returnTypeKey: 'wdtExchangeType',
|
|
13458
|
-
name: '旺店通',
|
|
13459
|
-
eventNameMap: {
|
|
13460
|
-
changeShopCode: 'wdtChangeShopCode',
|
|
13461
|
-
exchangeDeleteGood: 'wdtExchangeDeleteGood',
|
|
13462
|
-
exchangeCopyGood: 'wdtExchangeCopyGood',
|
|
13463
|
-
exchangeBackCopyGood: 'wdtExchangeBackCopyGood'
|
|
13464
|
-
}
|
|
13465
|
-
}
|
|
13466
|
-
};
|
|
13467
|
-
var CommonExchangeGoods = function CommonExchangeGoods(props) {
|
|
13468
|
-
var value = props.value,
|
|
13469
|
-
onChange = props.onChange,
|
|
13470
|
-
disabled = props.disabled,
|
|
13471
|
-
compType = props.type;
|
|
13472
|
-
var valueRef = useRef({});
|
|
13473
|
-
useEffect(function () {
|
|
13474
|
-
var subscription = pubsub.subscribe(componentMap$3[compType].eventNameMap.exchangeBackCopyGood, function (_, data) {
|
|
13475
|
-
if (disabled) return;
|
|
13476
|
-
var newValue = {
|
|
13477
|
-
shopCode: data === null || data === void 0 ? void 0 : data.shopCode
|
|
13478
|
-
};
|
|
13479
|
-
if (compType === 'WDT_EXCHANGE_GOODS') {
|
|
13480
|
-
newValue[componentMap$3[compType].valueKey] = ((data === null || data === void 0 ? void 0 : data.list) || []).map(function (item) {
|
|
13481
|
-
if (typeof item.type === 'undefined') {
|
|
13482
|
-
item.type = '1';
|
|
13483
|
-
}
|
|
13484
|
-
item.price = item.sharePrice;
|
|
13485
|
-
if (typeof item.exchangePrice === 'undefined') {
|
|
13486
|
-
item.exchangePrice = new BigNumber(item.num).multipliedBy(new BigNumber(item.price)).toString();
|
|
13487
|
-
}
|
|
13488
|
-
return item;
|
|
13489
|
-
});
|
|
13490
|
-
} else {
|
|
13491
|
-
newValue[componentMap$3[compType].valueKey] = (data === null || data === void 0 ? void 0 : data.list) || [];
|
|
13492
|
-
}
|
|
13493
|
-
onChange === null || onChange === void 0 ? void 0 : onChange(newValue);
|
|
13494
|
-
});
|
|
13495
|
-
return function () {
|
|
13496
|
-
pubsub.unsubscribe(subscription);
|
|
13497
|
-
};
|
|
13498
|
-
});
|
|
13499
|
-
useEffect(function () {
|
|
13500
|
-
valueRef.current = value;
|
|
13501
|
-
pubsub.subscribeOnce(componentMap$3[compType].eventNameMap.exchangeDeleteGood, function (_, data) {
|
|
13502
|
-
if (disabled) return;
|
|
13503
|
-
if (value) {
|
|
13504
|
-
var newValue = _objectSpread2({}, value);
|
|
13505
|
-
newValue[componentMap$3[compType].valueKey] = newValue[componentMap$3[compType].valueKey].filter(function (item) {
|
|
13506
|
-
return item.sku !== data;
|
|
13507
|
-
});
|
|
13508
|
-
onChange(newValue);
|
|
13509
|
-
}
|
|
13510
|
-
});
|
|
13511
|
-
pubsub.subscribeOnce(componentMap$3[compType].eventNameMap.changeShopCode, function (type, data) {
|
|
13512
|
-
onChange(_objectSpread2(_objectSpread2({}, value), {}, {
|
|
13513
|
-
shopCode: data.shopCode
|
|
13514
|
-
}));
|
|
13515
|
-
});
|
|
13516
|
-
}, [value]);
|
|
13517
|
-
var changeGoodHandle = function changeGoodHandle(val) {
|
|
13518
|
-
var newValue = _objectSpread2({}, value);
|
|
13519
|
-
if (compType === 'WDT_EXCHANGE_GOODS') {
|
|
13520
|
-
val = val.map(function (item) {
|
|
13521
|
-
item.exchangePrice = new BigNumber(item.num).multipliedBy(new BigNumber(item.price)).toString();
|
|
13522
|
-
return item;
|
|
13523
|
-
});
|
|
13524
|
-
}
|
|
13525
|
-
newValue[componentMap$3[compType].valueKey] = val;
|
|
13526
|
-
onChange === null || onChange === void 0 ? void 0 : onChange(newValue);
|
|
13527
|
-
};
|
|
13528
|
-
var copyGoods = function copyGoods() {
|
|
13529
|
-
var copyHandle = function copyHandle() {
|
|
13530
|
-
pubsub.publish(componentMap$3[compType].eventNameMap.exchangeCopyGood, 'WDT_EXCHANGE_GOODS');
|
|
13531
|
-
};
|
|
13532
|
-
return /*#__PURE__*/React.createElement(Button, {
|
|
13533
|
-
type: "link",
|
|
13534
|
-
onClick: copyHandle
|
|
13535
|
-
}, "\u590D\u5236\u9000\u56DE\u5546\u54C1");
|
|
13536
|
-
};
|
|
13537
|
-
return /*#__PURE__*/React.createElement(React.Fragment, null, /*#__PURE__*/React.createElement(GoodItem$1, _objectSpread2(_objectSpread2({
|
|
13538
|
-
key: componentMap$3[compType].type
|
|
13539
|
-
}, props), {}, {
|
|
13540
|
-
disabled: disabled,
|
|
13541
|
-
canUpdateNumber: true,
|
|
13542
|
-
showChangeBtn: true,
|
|
13543
|
-
shopCode: value === null || value === void 0 ? void 0 : value.shopCode,
|
|
13544
|
-
value: value === null || value === void 0 ? void 0 : value[componentMap$3[compType].valueKey],
|
|
13545
|
-
otherOperations: copyGoods(),
|
|
13546
|
-
onChange: function onChange(val) {
|
|
13547
|
-
return changeGoodHandle(val);
|
|
13548
|
-
}
|
|
13549
|
-
})));
|
|
13550
|
-
};
|
|
13551
|
-
|
|
13552
12998
|
var _excluded$g = ["value", "onChange", "reasonList", "disabled", "type"];
|
|
13553
12999
|
var typeMap$1 = {
|
|
13554
13000
|
WDT_REISSUE_GOODS: {
|
|
@@ -14337,7 +13783,7 @@ var CommonSystemOrder = function CommonSystemOrder(props) {
|
|
|
14337
13783
|
changeIndex = _useState2[0],
|
|
14338
13784
|
setChangeIndex = _useState2[1]; //选中的包裹
|
|
14339
13785
|
useEffect(function () {
|
|
14340
|
-
if (!(value === null || value === void 0 ? void 0 : value.length)
|
|
13786
|
+
if (!(value === null || value === void 0 ? void 0 : value.length)) {
|
|
14341
13787
|
onChange === null || onChange === void 0 ? void 0 : onChange(typeInitValueMap$1[type].initValue);
|
|
14342
13788
|
}
|
|
14343
13789
|
}, [value, type]);
|
|
@@ -14376,7 +13822,7 @@ var CommonSystemOrder = function CommonSystemOrder(props) {
|
|
|
14376
13822
|
return setChangeIndex(index);
|
|
14377
13823
|
}
|
|
14378
13824
|
}, "\u7CFB\u7EDF\u8BA2\u5355\u53F7".concat(index + 1)));
|
|
14379
|
-
}))) : null, value.length
|
|
13825
|
+
}))) : null, value.length ? /*#__PURE__*/React.createElement(React.Fragment, null, type === 1 ? /*#__PURE__*/React.createElement(Space, null, /*#__PURE__*/React.createElement(Input, {
|
|
14380
13826
|
disabled: disabled,
|
|
14381
13827
|
placeholder: "\u8BF7\u8F93\u5165\u51FA\u5E93\u5355\u7F16\u53F7",
|
|
14382
13828
|
onChange: function onChange(e) {
|
|
@@ -14391,18 +13837,12 @@ var CommonSystemOrder = function CommonSystemOrder(props) {
|
|
|
14391
13837
|
},
|
|
14392
13838
|
value: (_value$changeIndex2 = value[changeIndex]) === null || _value$changeIndex2 === void 0 ? void 0 : _value$changeIndex2.returnGoodsTradeId
|
|
14393
13839
|
})) : null, type === 3 ? /*#__PURE__*/React.createElement(Space, null, /*#__PURE__*/React.createElement(Input, {
|
|
14394
|
-
disabled:
|
|
13840
|
+
disabled: true,
|
|
14395
13841
|
placeholder: "\u8BF7\u8F93\u5165\u8865\u53D1\u5355id",
|
|
14396
|
-
onChange: function onChange(e) {
|
|
14397
|
-
return changeInputHandle(e.target.value, 'billNo');
|
|
14398
|
-
},
|
|
14399
13842
|
value: (_value$changeIndex3 = value[changeIndex]) === null || _value$changeIndex3 === void 0 ? void 0 : _value$changeIndex3.billNo
|
|
14400
13843
|
})) : null, type === 4 ? /*#__PURE__*/React.createElement(Space, null, /*#__PURE__*/React.createElement(Input, {
|
|
14401
|
-
disabled:
|
|
13844
|
+
disabled: true,
|
|
14402
13845
|
placeholder: "\u8BF7\u8F93\u5165\u6362\u8D27\u5355id",
|
|
14403
|
-
onChange: function onChange(e) {
|
|
14404
|
-
return changeInputHandle(e.target.value, 'billNo');
|
|
14405
|
-
},
|
|
14406
13846
|
value: (_value$changeIndex4 = value[changeIndex]) === null || _value$changeIndex4 === void 0 ? void 0 : _value$changeIndex4.billNo
|
|
14407
13847
|
})) : null) : null);
|
|
14408
13848
|
};
|
|
@@ -14464,7 +13904,7 @@ var CommonSystemOrder$1 = function CommonSystemOrder(props) {
|
|
|
14464
13904
|
return setChangeIndex(index);
|
|
14465
13905
|
}
|
|
14466
13906
|
}, "\u7CFB\u7EDF\u8BA2\u5355\u53F7".concat(index + 1)));
|
|
14467
|
-
}))) : null, /*#__PURE__*/React.createElement(React.Fragment, null, /*#__PURE__*/React.createElement(Space, null, /*#__PURE__*/React.createElement(Select, _objectSpread2(_objectSpread2({}, other), {}, {
|
|
13907
|
+
}))) : null, value.length && type === 1 || type === 2 ? /*#__PURE__*/React.createElement(React.Fragment, null, /*#__PURE__*/React.createElement(Space, null, /*#__PURE__*/React.createElement(Select, _objectSpread2(_objectSpread2({}, other), {}, {
|
|
14468
13908
|
showSearch: true,
|
|
14469
13909
|
value: (_value$changeIndex = value[changeIndex]) === null || _value$changeIndex === void 0 ? void 0 : _value$changeIndex.status,
|
|
14470
13910
|
filterOption: function filterOption(input, option) {
|
|
@@ -14480,7 +13920,7 @@ var CommonSystemOrder$1 = function CommonSystemOrder(props) {
|
|
|
14480
13920
|
}
|
|
14481
13921
|
}))), ((_value$changeIndex2 = value[changeIndex]) === null || _value$changeIndex2 === void 0 ? void 0 : _value$changeIndex2.reason) ? /*#__PURE__*/React.createElement("div", {
|
|
14482
13922
|
className: "c-red"
|
|
14483
|
-
}, "\u5931\u8D25\u539F\u56E0\uFF1A", (_value$changeIndex3 = value[changeIndex]) === null || _value$changeIndex3 === void 0 ? void 0 : _value$changeIndex3.reason) : null));
|
|
13923
|
+
}, "\u5931\u8D25\u539F\u56E0\uFF1A", (_value$changeIndex3 = value[changeIndex]) === null || _value$changeIndex3 === void 0 ? void 0 : _value$changeIndex3.reason) : null) : null);
|
|
14484
13924
|
};
|
|
14485
13925
|
|
|
14486
13926
|
var _excluded$j = ["value", "onChange", "disabled", "failValue", "type"];
|
|
@@ -14568,4 +14008,4 @@ var CalculationInput = function CalculationInput(props) {
|
|
|
14568
14008
|
}, config === null || config === void 0 ? void 0 : config.unit));
|
|
14569
14009
|
};
|
|
14570
14010
|
|
|
14571
|
-
export { ApaasAddress as Address, AliPay, Province as ApaasAddress, ApaasCascader, ApaasCheckbox, ApaasDate, withFormItem as ApaasHoc, ApaasInput, ApaasInputNumber, ApaasLogistics, ApaasMultipleSelect, ApaasPosting, ApaasRadio, ApaasRate, ApaasSelect, ApaasSlider, ApaasTextArea, ApaasUpload, index as ApaasUploadAsync, ApaasUploadFile, BsExchange, BsGoods, BsReissue, BsReturnGoods as BsReturn, index$1 as BsSystemOrder, BuyerNick, CalculationInput, ChooseBaby,
|
|
14011
|
+
export { ApaasAddress as Address, AliPay, Province as ApaasAddress, ApaasCascader, ApaasCheckbox, ApaasDate, withFormItem as ApaasHoc, ApaasInput, ApaasInputNumber, ApaasLogistics, ApaasMultipleSelect, ApaasPosting, ApaasRadio, ApaasRate, ApaasSelect, ApaasSlider, ApaasTextArea, ApaasUpload, index as ApaasUploadAsync, ApaasUploadFile, BsExchange, BsGoods, BsReissue, BsReturnGoods as BsReturn, index$1 as BsSystemOrder, BuyerNick, CalculationInput, ChooseBaby, CommonGoods, CommonSystemOrder$1 as CommonMultiStatus, CommonStatus, CommonSystemOrder, ExpressLogistics, Goods, index$2 as GoodsTable, IdentifyAddress, Invoice, jstGoods as JstGoods, ItemList as JstItemList, LogisticsInterception, LogisticsMoreInterception, LogisticsMoreTrajectory, LogisticsTrajectory, MsgStatus, ParseLogistics, Payment, RemarkInput as Remark, ExpressLogistics as ReturnLogistics, ShopNameSelect as ShopName, Status, Supplier, TBGoodId, TBGoodSerial, TradeId, WdtGoodList, wdtReissue as WdtReissue, WlnGoods };
|