@kmkf-fe-packages/basic-components 2.2.44-beta.37 → 2.2.44-beta.38
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
CHANGED
|
@@ -22596,7 +22596,7 @@ var getColumns$9 = function getColumns(_ref) {
|
|
|
22596
22596
|
label: '否',
|
|
22597
22597
|
value: 0
|
|
22598
22598
|
}]
|
|
22599
|
-
}) : /*#__PURE__*/React.createElement("span", null, val
|
|
22599
|
+
}) : /*#__PURE__*/React.createElement("span", null, val == 1 ? '是' : '否');
|
|
22600
22600
|
}
|
|
22601
22601
|
}, {
|
|
22602
22602
|
dataIndex: 'isFit',
|
|
@@ -22621,7 +22621,7 @@ var getColumns$9 = function getColumns(_ref) {
|
|
|
22621
22621
|
label: '否',
|
|
22622
22622
|
value: 0
|
|
22623
22623
|
}]
|
|
22624
|
-
}) : /*#__PURE__*/React.createElement("span", null, val
|
|
22624
|
+
}) : /*#__PURE__*/React.createElement("span", null, val == 1 ? '是' : '否');
|
|
22625
22625
|
}
|
|
22626
22626
|
}, {
|
|
22627
22627
|
dataIndex: 'isPresell',
|
|
@@ -22646,7 +22646,7 @@ var getColumns$9 = function getColumns(_ref) {
|
|
|
22646
22646
|
label: '否',
|
|
22647
22647
|
value: '0'
|
|
22648
22648
|
}]
|
|
22649
|
-
}) : /*#__PURE__*/React.createElement("span", null, val
|
|
22649
|
+
}) : /*#__PURE__*/React.createElement("span", null, val == '1' ? '是' : '否');
|
|
22650
22650
|
}
|
|
22651
22651
|
}, {
|
|
22652
22652
|
dataIndex: 'brandName',
|
|
@@ -23367,8 +23367,8 @@ var processJkyGoods = function processJkyGoods(_ref3) {
|
|
|
23367
23367
|
skuImgUrl: specImgUrl,
|
|
23368
23368
|
combinationName: goodName,
|
|
23369
23369
|
combinationCode: goodNo,
|
|
23370
|
-
isGift: isGift ?
|
|
23371
|
-
isFit: skuType === 'combine' ?
|
|
23370
|
+
isGift: isGift ? 1 : 0,
|
|
23371
|
+
isFit: skuType === 'combine' ? 1 : 0,
|
|
23372
23372
|
uuid: uuid(),
|
|
23373
23373
|
canDelete: true,
|
|
23374
23374
|
sellCount: 1,
|
package/dist/index.js
CHANGED
|
@@ -22611,7 +22611,7 @@ var getColumns$9 = function getColumns(_ref) {
|
|
|
22611
22611
|
label: '否',
|
|
22612
22612
|
value: 0
|
|
22613
22613
|
}]
|
|
22614
|
-
}) : /*#__PURE__*/React__default['default'].createElement("span", null, val
|
|
22614
|
+
}) : /*#__PURE__*/React__default['default'].createElement("span", null, val == 1 ? '是' : '否');
|
|
22615
22615
|
}
|
|
22616
22616
|
}, {
|
|
22617
22617
|
dataIndex: 'isFit',
|
|
@@ -22636,7 +22636,7 @@ var getColumns$9 = function getColumns(_ref) {
|
|
|
22636
22636
|
label: '否',
|
|
22637
22637
|
value: 0
|
|
22638
22638
|
}]
|
|
22639
|
-
}) : /*#__PURE__*/React__default['default'].createElement("span", null, val
|
|
22639
|
+
}) : /*#__PURE__*/React__default['default'].createElement("span", null, val == 1 ? '是' : '否');
|
|
22640
22640
|
}
|
|
22641
22641
|
}, {
|
|
22642
22642
|
dataIndex: 'isPresell',
|
|
@@ -22661,7 +22661,7 @@ var getColumns$9 = function getColumns(_ref) {
|
|
|
22661
22661
|
label: '否',
|
|
22662
22662
|
value: '0'
|
|
22663
22663
|
}]
|
|
22664
|
-
}) : /*#__PURE__*/React__default['default'].createElement("span", null, val
|
|
22664
|
+
}) : /*#__PURE__*/React__default['default'].createElement("span", null, val == '1' ? '是' : '否');
|
|
22665
22665
|
}
|
|
22666
22666
|
}, {
|
|
22667
22667
|
dataIndex: 'brandName',
|
|
@@ -23382,8 +23382,8 @@ var processJkyGoods = function processJkyGoods(_ref3) {
|
|
|
23382
23382
|
skuImgUrl: specImgUrl,
|
|
23383
23383
|
combinationName: goodName,
|
|
23384
23384
|
combinationCode: goodNo,
|
|
23385
|
-
isGift: isGift ?
|
|
23386
|
-
isFit: skuType === 'combine' ?
|
|
23385
|
+
isGift: isGift ? 1 : 0,
|
|
23386
|
+
isFit: skuType === 'combine' ? 1 : 0,
|
|
23387
23387
|
uuid: kmkfUtils.uuid(),
|
|
23388
23388
|
canDelete: true,
|
|
23389
23389
|
sellCount: 1,
|
|
@@ -69,16 +69,13 @@ declare const SYSTEM_ORDER_COLUMNS_MAP: {
|
|
|
69
69
|
title: string;
|
|
70
70
|
width: number;
|
|
71
71
|
render?: undefined;
|
|
72
|
-
|
|
72
|
+
renderExport?: undefined;
|
|
73
73
|
} | {
|
|
74
74
|
dataIndex: string;
|
|
75
75
|
title: string;
|
|
76
76
|
width: number;
|
|
77
77
|
render: (val: number) => "否" | "是";
|
|
78
|
-
|
|
79
|
-
transformValue: (val: number) => "否" | "是";
|
|
80
|
-
renderExport: (val: number) => "否" | "是";
|
|
81
|
-
};
|
|
78
|
+
renderExport: (val: number) => "否" | "是";
|
|
82
79
|
})[];
|
|
83
80
|
WDT_RETURN_BILL_NO: ({
|
|
84
81
|
title: string;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@kmkf-fe-packages/basic-components",
|
|
3
|
-
"version": "2.2.44-beta.
|
|
3
|
+
"version": "2.2.44-beta.38",
|
|
4
4
|
"description": "> TODO: description",
|
|
5
5
|
"homepage": "",
|
|
6
6
|
"license": "ISC",
|
|
@@ -20,7 +20,7 @@
|
|
|
20
20
|
"watch": "nodemon --ignore dist/ --ignore node_modules/ --watch src/ -C -e ts,tsx,less --debug -x 'yarn async'"
|
|
21
21
|
},
|
|
22
22
|
"dependencies": {
|
|
23
|
-
"@kmkf-fe-packages/kmkf-utils": "2.2.44-beta.
|
|
23
|
+
"@kmkf-fe-packages/kmkf-utils": "2.2.44-beta.38",
|
|
24
24
|
"ahooks": "^3.7.4",
|
|
25
25
|
"ali-react-table": "2.6.1",
|
|
26
26
|
"bignumber.js": "^9.1.2",
|
|
@@ -66,5 +66,5 @@
|
|
|
66
66
|
"publishConfig": {
|
|
67
67
|
"access": "public"
|
|
68
68
|
},
|
|
69
|
-
"gitHead": "
|
|
69
|
+
"gitHead": "2b6a9bd546691338d24d5ce9351ec153cac547f9"
|
|
70
70
|
}
|