@kmkf-fe-packages/basic-components 2.2.44-beta.59 → 2.2.44-beta.61

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
@@ -15011,6 +15011,13 @@ var wdtColumns = [{
15011
15011
  title: '辅助单位',
15012
15012
  width: 150,
15013
15013
  render: renderTextEllipsis
15014
+ }, {
15015
+ dataIndex: 'skuType',
15016
+ title: '是否组合装',
15017
+ width: 150,
15018
+ render: function render(type) {
15019
+ return type === 'suite' ? '组合装' : '非组合装';
15020
+ }
15014
15021
  }];
15015
15022
 
15016
15023
  var bse3Columns = [{
@@ -15999,6 +16006,24 @@ var GoodList = function GoodList(props, ref) {
15999
16006
  };
16000
16007
  })
16001
16008
  }
16009
+ }, {
16010
+ label: '是否组合装',
16011
+ name: 'skuType',
16012
+ dataIndex: 'skuType',
16013
+ type: 'select',
16014
+ formItemProps: {
16015
+ mode: 'multiple',
16016
+ filterOption: function filterOption(input, option) {
16017
+ return option.label.includes(input);
16018
+ },
16019
+ options: [{
16020
+ label: '组合装',
16021
+ value: 'suite'
16022
+ }, {
16023
+ label: '非组合装',
16024
+ value: ''
16025
+ }]
16026
+ }
16002
16027
  }];
16003
16028
  var rowSelection = {
16004
16029
  selectedRowKeys: selectIds,
@@ -21787,6 +21812,11 @@ var getColumns$6 = function getColumns(_ref) {
21787
21812
  title: "\u4F9B\u5E94\u5546\u7F16\u7801",
21788
21813
  width: 150,
21789
21814
  render: renderTextEllipsis
21815
+ }, {
21816
+ dataIndex: 'remark',
21817
+ title: "\u5907\u6CE8",
21818
+ width: 200,
21819
+ render: renderTextEllipsis
21790
21820
  }].map(function (item) {
21791
21821
  return _objectSpread2(_objectSpread2({}, item), {}, {
21792
21822
  align: 'center',
package/dist/index.js CHANGED
@@ -15026,6 +15026,13 @@ var wdtColumns = [{
15026
15026
  title: '辅助单位',
15027
15027
  width: 150,
15028
15028
  render: renderTextEllipsis
15029
+ }, {
15030
+ dataIndex: 'skuType',
15031
+ title: '是否组合装',
15032
+ width: 150,
15033
+ render: function render(type) {
15034
+ return type === 'suite' ? '组合装' : '非组合装';
15035
+ }
15029
15036
  }];
15030
15037
 
15031
15038
  var bse3Columns = [{
@@ -16014,6 +16021,24 @@ var GoodList = function GoodList(props, ref) {
16014
16021
  };
16015
16022
  })
16016
16023
  }
16024
+ }, {
16025
+ label: '是否组合装',
16026
+ name: 'skuType',
16027
+ dataIndex: 'skuType',
16028
+ type: 'select',
16029
+ formItemProps: {
16030
+ mode: 'multiple',
16031
+ filterOption: function filterOption(input, option) {
16032
+ return option.label.includes(input);
16033
+ },
16034
+ options: [{
16035
+ label: '组合装',
16036
+ value: 'suite'
16037
+ }, {
16038
+ label: '非组合装',
16039
+ value: ''
16040
+ }]
16041
+ }
16017
16042
  }];
16018
16043
  var rowSelection = {
16019
16044
  selectedRowKeys: selectIds,
@@ -21802,6 +21827,11 @@ var getColumns$6 = function getColumns(_ref) {
21802
21827
  title: "\u4F9B\u5E94\u5546\u7F16\u7801",
21803
21828
  width: 150,
21804
21829
  render: renderTextEllipsis
21830
+ }, {
21831
+ dataIndex: 'remark',
21832
+ title: "\u5907\u6CE8",
21833
+ width: 200,
21834
+ render: renderTextEllipsis
21805
21835
  }].map(function (item) {
21806
21836
  return _objectSpread2(_objectSpread2({}, item), {}, {
21807
21837
  align: 'center',
@@ -17,5 +17,11 @@ declare const _default: ({
17
17
  width: number;
18
18
  render: (price: string | number) => string;
19
19
  ellipsis?: undefined;
20
+ } | {
21
+ dataIndex: string;
22
+ title: string;
23
+ width: number;
24
+ render: (type: string) => "组合装" | "非组合装";
25
+ ellipsis?: undefined;
20
26
  })[];
21
27
  export default _default;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@kmkf-fe-packages/basic-components",
3
- "version": "2.2.44-beta.59",
3
+ "version": "2.2.44-beta.61",
4
4
  "description": "> TODO: description",
5
5
  "homepage": "",
6
6
  "license": "ISC",
@@ -66,5 +66,5 @@
66
66
  "publishConfig": {
67
67
  "access": "public"
68
68
  },
69
- "gitHead": "a503582be24812a6497f197bf02ea36dca9b1bfb"
69
+ "gitHead": "380c88de933751ea773e4b87116ac7f5428ee8d7"
70
70
  }