@kmkf-fe-packages/services-components 0.7.15-alpha.33 → 0.7.15-alpha.36

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.
@@ -52,11 +52,10 @@ var BuyerNick = /*#__PURE__*/_createClass(function BuyerNick(options) {
52
52
  }, record === null || record === void 0 ? void 0 : record[_this.id]));
53
53
  });
54
54
  _defineProperty(this, "renderClient", function (record, params) {
55
- var _record$_this$id;
56
55
  return !isNull(record === null || record === void 0 ? void 0 : record[_this.id]) ? /*#__PURE__*/React.createElement(ItemView, {
57
56
  id: _this.id,
58
57
  label: _this.name,
59
- value: (params === null || params === void 0 ? void 0 : params.platform) === 'tb' ? _this.renderTaoBaoWangWang(record, params) : record === null || record === void 0 ? void 0 : (_record$_this$id = record[_this.id]) === null || _record$_this$id === void 0 ? void 0 : _record$_this$id.buyerNick
58
+ value: (params === null || params === void 0 ? void 0 : params.platform) === 'tb' ? _this.renderTaoBaoWangWang(record, params) : record === null || record === void 0 ? void 0 : record[_this.id]
60
59
  }) : null;
61
60
  });
62
61
  _defineProperty(this, "editRender", function (p) {
@@ -26,6 +26,7 @@ declare class Logistics implements ComponentInterface {
26
26
  canSort: boolean;
27
27
  children: ComponentInterface[];
28
28
  dataType: ComponentInterface['dataType'];
29
+ effects: ComponentInterface["effects"];
29
30
  constructor(options: PickOption);
30
31
  renderClient: (record: any, params: any) => React.JSX.Element;
31
32
  renderPc: () => null;
@@ -39,6 +39,7 @@ var Logistics = /*#__PURE__*/_createClass(function Logistics(options) {
39
39
  _defineProperty(this, "canSort", void 0);
40
40
  _defineProperty(this, "children", void 0);
41
41
  _defineProperty(this, "dataType", void 0);
42
+ _defineProperty(this, "effects", void 0);
42
43
  _defineProperty(this, "renderClient", function (record, params) {
43
44
  return /*#__PURE__*/React.createElement(React.Fragment, null, _this.alipayNick.renderClient(record), _this.paymentAmount.renderClient(record), _this.alipayNo.renderClient(record), _this.buyerNick.renderClient(record, params), _this.paymentTid.renderClient(record), _this.paymentStatus.renderClient(record), _this.payTime.renderClient(record));
44
45
  });
@@ -63,7 +64,7 @@ var Logistics = /*#__PURE__*/_createClass(function Logistics(options) {
63
64
  return null;
64
65
  });
65
66
  _defineProperty(this, "editRender", function (p) {
66
- var _this$componentConfig, _this$componentConfig2;
67
+ var _this$componentConfig, _this$componentConfig2, _this$effects;
67
68
  return /*#__PURE__*/React.createElement(GetFormItem, {
68
69
  title: _this.name,
69
70
  name: _this.id,
@@ -71,6 +72,7 @@ var Logistics = /*#__PURE__*/_createClass(function Logistics(options) {
71
72
  hidden: p === null || p === void 0 ? void 0 : p.hidden,
72
73
  required: (_this$componentConfig = (_this$componentConfig2 = _this.componentConfig) === null || _this$componentConfig2 === void 0 ? void 0 : _this$componentConfig2.required) !== null && _this$componentConfig !== void 0 ? _this$componentConfig : false,
73
74
  component: /*#__PURE__*/React.createElement(ApaasPayment, _extends({}, _this.componentConfig, {
75
+ disabled: (_this$effects = _this.effects) === null || _this$effects === void 0 ? void 0 : _this$effects.isEditing,
74
76
  onBlur: p === null || p === void 0 ? void 0 : p.onBlur
75
77
  }))
76
78
  });
@@ -93,6 +95,7 @@ var Logistics = /*#__PURE__*/_createClass(function Logistics(options) {
93
95
  this.payTime = new AlipayTime(options);
94
96
  this.isCombinationComponent = true;
95
97
  this.canSort = false;
98
+ this.effects = options === null || options === void 0 ? void 0 : options.effects;
96
99
  this.children = [this.alipayNick, this.alipayNo, this.buyerNick, this.paymentAmount, this.paymentStatus, this.paymentTid, this.payTime];
97
100
  this.rules = [{
98
101
  validator: function validator(_, value) {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@kmkf-fe-packages/services-components",
3
- "version": "0.7.15-alpha.33",
3
+ "version": "0.7.15-alpha.36",
4
4
  "module": "dist/esm/index.js",
5
5
  "typings": "dist/esm/index.d.ts",
6
6
  "files": [
@@ -26,8 +26,8 @@
26
26
  "father": "^4.1.7"
27
27
  },
28
28
  "dependencies": {
29
- "@kmkf-fe-packages/basic-components": "^0.7.15-alpha.33",
30
- "@kmkf-fe-packages/kmkf-utils": "^0.7.15-alpha.32"
29
+ "@kmkf-fe-packages/basic-components": "^0.7.15-alpha.36",
30
+ "@kmkf-fe-packages/kmkf-utils": "^0.7.15-alpha.36"
31
31
  },
32
32
  "peerDependencies": {
33
33
  "@ant-design/icons": "^4.7.0",
@@ -40,5 +40,5 @@
40
40
  "gitHooks": {
41
41
  "pre-commit": "lint-staged"
42
42
  },
43
- "gitHead": "ed8ea02a85f161e78a3b0d413412c18f823ceafe"
43
+ "gitHead": "5cff46ff3bcb18986772d998fb5b995b8d90536b"
44
44
  }