@kmkf-fe-packages/services-components 2.2.24 → 2.2.26
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.
|
@@ -16,6 +16,7 @@ declare class BasicSelect implements ComponentInterface {
|
|
|
16
16
|
optionsMap: ComponentInterface["optionsMap"];
|
|
17
17
|
constructor(options: PickOption);
|
|
18
18
|
getKeyByComponentType: (type: string) => any;
|
|
19
|
+
getIsValue: () => boolean;
|
|
19
20
|
editRender: (p: any) => React.JSX.Element;
|
|
20
21
|
renderClient: (record: any) => React.JSX.Element | null;
|
|
21
22
|
renderPc: (value: any, record: Record) => React.JSX.Element;
|
|
@@ -34,11 +34,14 @@ var typeMap = {
|
|
|
34
34
|
},
|
|
35
35
|
ERP_ORDER_STATUS: {
|
|
36
36
|
key: "erpOrderStatus"
|
|
37
|
+
},
|
|
38
|
+
JST_OUTBOUND_STATUS: {
|
|
39
|
+
key: "jstOutboundStatus"
|
|
37
40
|
}
|
|
38
41
|
};
|
|
39
42
|
var BasicSelect = /*#__PURE__*/_createClass(function BasicSelect(options) {
|
|
40
43
|
var _this = this,
|
|
41
|
-
_this$
|
|
44
|
+
_this$componentConfig6,
|
|
42
45
|
_this$options;
|
|
43
46
|
_classCallCheck(this, BasicSelect);
|
|
44
47
|
_defineProperty(this, "name", void 0);
|
|
@@ -57,16 +60,20 @@ var BasicSelect = /*#__PURE__*/_createClass(function BasicSelect(options) {
|
|
|
57
60
|
_defineProperty(this, "getKeyByComponentType", function (type) {
|
|
58
61
|
return typeMap[type].key || "";
|
|
59
62
|
});
|
|
63
|
+
_defineProperty(this, "getIsValue", function () {
|
|
64
|
+
var _this$componentConfig;
|
|
65
|
+
return ((_this$componentConfig = _this.componentConfig) === null || _this$componentConfig === void 0 ? void 0 : _this$componentConfig.webUniqueKey) === "PLATFORM_STATUS" || _this.type === "JST_OUTBOUND_STATUS";
|
|
66
|
+
});
|
|
60
67
|
_defineProperty(this, "editRender", function (p) {
|
|
61
|
-
var _this$
|
|
68
|
+
var _this$componentConfig2, _this$componentConfig3, _this$componentConfig4, _this$componentConfig5;
|
|
62
69
|
return /*#__PURE__*/React.createElement(GetFormItem, {
|
|
63
70
|
title: _this.name,
|
|
64
71
|
name: _this.id,
|
|
65
72
|
rules: _this.rules,
|
|
66
73
|
hidden: p === null || p === void 0 ? void 0 : p.hidden,
|
|
67
74
|
display: p === null || p === void 0 ? void 0 : p.display,
|
|
68
|
-
required: (_this$
|
|
69
|
-
tooltip: (_this$
|
|
75
|
+
required: (_this$componentConfig2 = (_this$componentConfig3 = _this.componentConfig) === null || _this$componentConfig3 === void 0 ? void 0 : _this$componentConfig3.required) !== null && _this$componentConfig2 !== void 0 ? _this$componentConfig2 : false,
|
|
76
|
+
tooltip: (_this$componentConfig4 = _this.componentConfig) !== null && _this$componentConfig4 !== void 0 && _this$componentConfig4.showTooltip ? (_this$componentConfig5 = _this.componentConfig) === null || _this$componentConfig5 === void 0 ? void 0 : _this$componentConfig5.tooltip : "",
|
|
70
77
|
component: /*#__PURE__*/React.createElement(ApaasSelect, _extends({}, _this.componentConfig, {
|
|
71
78
|
placeholder: typeMap[_this.type].placeholder || "\u8BF7\u8F93\u5165".concat(_this.name),
|
|
72
79
|
showSearch: true,
|
|
@@ -75,9 +82,10 @@ var BasicSelect = /*#__PURE__*/_createClass(function BasicSelect(options) {
|
|
|
75
82
|
});
|
|
76
83
|
});
|
|
77
84
|
_defineProperty(this, "renderClient", function (record) {
|
|
78
|
-
var _this$
|
|
85
|
+
var _this$optionsMap;
|
|
86
|
+
console.log("renderClient", record, _this.getIsValue());
|
|
79
87
|
// 特殊自定义组件为平台状态时匹配出label
|
|
80
|
-
var label =
|
|
88
|
+
var label = _this.getIsValue() ? (_this$optionsMap = _this.optionsMap) === null || _this$optionsMap === void 0 ? void 0 : _this$optionsMap[record === null || record === void 0 ? void 0 : record[_this.id]] : record === null || record === void 0 ? void 0 : record[_this.id];
|
|
81
89
|
return !isNull(record === null || record === void 0 ? void 0 : record[_this.id]) ? /*#__PURE__*/React.createElement(ItemView, {
|
|
82
90
|
id: _this.id,
|
|
83
91
|
label: _this.name,
|
|
@@ -85,11 +93,11 @@ var BasicSelect = /*#__PURE__*/_createClass(function BasicSelect(options) {
|
|
|
85
93
|
}) : null;
|
|
86
94
|
});
|
|
87
95
|
_defineProperty(this, "renderPc", function (value, record) {
|
|
88
|
-
var _this$
|
|
96
|
+
var _this$optionsMap2;
|
|
89
97
|
var type = _this.type;
|
|
90
98
|
var key = record === null || record === void 0 ? void 0 : record["".concat(_this.id, "_").concat(typeMap[type].key)];
|
|
91
99
|
// 特殊自定义组件为平台状态时匹配出label
|
|
92
|
-
var label =
|
|
100
|
+
var label = _this.getIsValue() ? ((_this$optionsMap2 = _this.optionsMap) === null || _this$optionsMap2 === void 0 ? void 0 : _this$optionsMap2[key]) || "" : key;
|
|
93
101
|
return /*#__PURE__*/React.createElement("span", null, label !== null && label !== void 0 ? label : "--");
|
|
94
102
|
});
|
|
95
103
|
_defineProperty(this, "renderLog", function (r) {
|
|
@@ -102,11 +110,11 @@ var BasicSelect = /*#__PURE__*/_createClass(function BasicSelect(options) {
|
|
|
102
110
|
return r === null || r === void 0 ? void 0 : r["".concat(_this.id, "_").concat(typeMap[type].key)];
|
|
103
111
|
});
|
|
104
112
|
_defineProperty(this, "renderExport", function (value, record) {
|
|
105
|
-
var _this$
|
|
113
|
+
var _this$optionsMap3;
|
|
106
114
|
var type = _this.type;
|
|
107
115
|
var key = record === null || record === void 0 ? void 0 : record["".concat(_this.id, "_").concat(typeMap[type].key)];
|
|
108
116
|
// 特殊自定义组件为平台状态时匹配出label
|
|
109
|
-
var label =
|
|
117
|
+
var label = _this.getIsValue() ? ((_this$optionsMap3 = _this.optionsMap) === null || _this$optionsMap3 === void 0 ? void 0 : _this$optionsMap3[key]) || "" : key;
|
|
110
118
|
return label !== null && label !== void 0 ? label : "--";
|
|
111
119
|
});
|
|
112
120
|
_defineProperty(this, "filterConfig", function (item) {
|
|
@@ -141,7 +149,7 @@ var BasicSelect = /*#__PURE__*/_createClass(function BasicSelect(options) {
|
|
|
141
149
|
this.canSort = true;
|
|
142
150
|
this.children = [];
|
|
143
151
|
this.dataType = "string";
|
|
144
|
-
this.options = ((_this$
|
|
152
|
+
this.options = ((_this$componentConfig6 = this.componentConfig) === null || _this$componentConfig6 === void 0 ? void 0 : _this$componentConfig6.options) || [];
|
|
145
153
|
this.optionsMap = (_this$options = this.options) === null || _this$options === void 0 ? void 0 : _this$options.reduce(function (prev, next) {
|
|
146
154
|
prev[next.value] = next.label;
|
|
147
155
|
return prev;
|
|
@@ -12,7 +12,7 @@ import React from "react";
|
|
|
12
12
|
import GetFormItem from "../../GetFormItem";
|
|
13
13
|
import ItemView from "../../../commonComponents/ItemView";
|
|
14
14
|
import { isNull, filterFn as _filterFn } from "@kmkf-fe-packages/kmkf-utils";
|
|
15
|
-
import { WdtReissue as Reissue } from "@kmkf-fe-packages/basic-components";
|
|
15
|
+
import { WdtReissue as Reissue, erpFormValidator } from "@kmkf-fe-packages/basic-components";
|
|
16
16
|
import { SYMBOL } from "../../../constant";
|
|
17
17
|
import { BsGoodsTable } from "../../Common/index";
|
|
18
18
|
import { BsType, BsMemo, BsHeaderGood, SystemOrderNo } from "../../BS/common/index";
|
|
@@ -24,7 +24,15 @@ var typeMap = {
|
|
|
24
24
|
typeName: "wdtReissueType",
|
|
25
25
|
remark: "wdtReissueType_memo",
|
|
26
26
|
systemOrderNo: "wdtSystemOrderNo",
|
|
27
|
-
errMsg: "请选择旺店通补发商品"
|
|
27
|
+
errMsg: "请选择旺店通补发商品",
|
|
28
|
+
validator: function validator(_rule, value, type) {
|
|
29
|
+
if (!_rule.required) return Promise.resolve();
|
|
30
|
+
var validatorFlag = erpFormValidator(_rule, value, type);
|
|
31
|
+
if (validatorFlag) {
|
|
32
|
+
return validatorFlag;
|
|
33
|
+
}
|
|
34
|
+
return Promise.resolve();
|
|
35
|
+
}
|
|
28
36
|
}
|
|
29
37
|
};
|
|
30
38
|
var WdtReissue = /*#__PURE__*/_createClass(function WdtReissue(options) {
|
|
@@ -95,7 +103,7 @@ var WdtReissue = /*#__PURE__*/_createClass(function WdtReissue(options) {
|
|
|
95
103
|
required: false,
|
|
96
104
|
hidden: p === null || p === void 0 ? void 0 : p.hidden,
|
|
97
105
|
display: p === null || p === void 0 ? void 0 : p.display,
|
|
98
|
-
tooltip: (_this$componentConfig3 = _this.componentConfig) !== null && _this$componentConfig3 !== void 0 && _this$componentConfig3.showTooltip ? (_this$componentConfig4 = _this.componentConfig) === null || _this$componentConfig4 === void 0 ? void 0 : _this$componentConfig4.tooltip :
|
|
106
|
+
tooltip: (_this$componentConfig3 = _this.componentConfig) !== null && _this$componentConfig3 !== void 0 && _this$componentConfig3.showTooltip ? (_this$componentConfig4 = _this.componentConfig) === null || _this$componentConfig4 === void 0 ? void 0 : _this$componentConfig4.tooltip : "",
|
|
99
107
|
component: /*#__PURE__*/React.createElement(Reissue, _extends({}, _this.componentConfig, {
|
|
100
108
|
maxLength: ((_this$componentConfig5 = _this.componentConfig) === null || _this$componentConfig5 === void 0 ? void 0 : _this$componentConfig5.maxLength) || 20,
|
|
101
109
|
shopId: (_this$effects = _this.effects) === null || _this$effects === void 0 ? void 0 : _this$effects.shopId,
|
|
@@ -176,8 +184,9 @@ var WdtReissue = /*#__PURE__*/_createClass(function WdtReissue(options) {
|
|
|
176
184
|
}));
|
|
177
185
|
this.children = [this.bsType, this.systemOrderNo, this.bsMemo, this.reissueGoods];
|
|
178
186
|
this.componentConfig = options === null || options === void 0 ? void 0 : options.componentConfig;
|
|
179
|
-
|
|
180
|
-
|
|
187
|
+
var isRequired = this === null || this === void 0 ? void 0 : (_this$componentConfig6 = this.componentConfig) === null || _this$componentConfig6 === void 0 ? void 0 : _this$componentConfig6.required;
|
|
188
|
+
this.rules = [{
|
|
189
|
+
required: isRequired,
|
|
181
190
|
validator: function validator(_, value) {
|
|
182
191
|
var _value, _typeMap$options$type6;
|
|
183
192
|
if (!value || !(value !== null && value !== void 0 && (_value = value["".concat((_typeMap$options$type6 = typeMap[options.type]) === null || _typeMap$options$type6 === void 0 ? void 0 : _typeMap$options$type6.key)]) !== null && _value !== void 0 && _value.length)) {
|
|
@@ -186,7 +195,15 @@ var WdtReissue = /*#__PURE__*/_createClass(function WdtReissue(options) {
|
|
|
186
195
|
}
|
|
187
196
|
return Promise.resolve();
|
|
188
197
|
}
|
|
189
|
-
}
|
|
198
|
+
}, {
|
|
199
|
+
required: isRequired,
|
|
200
|
+
validator: function validator(_rule, value) {
|
|
201
|
+
var _typeMap$options$type8, _typeMap$options$type9;
|
|
202
|
+
return ((_typeMap$options$type8 = typeMap[options.type]) === null || _typeMap$options$type8 === void 0 ? void 0 : (_typeMap$options$type9 = _typeMap$options$type8.validator) === null || _typeMap$options$type9 === void 0 ? void 0 : _typeMap$options$type9.call(_typeMap$options$type8, _rule, value, options.type)) || function () {
|
|
203
|
+
return Promise.resolve();
|
|
204
|
+
};
|
|
205
|
+
}
|
|
206
|
+
}];
|
|
190
207
|
this.dataType = "object";
|
|
191
208
|
});
|
|
192
209
|
export default WdtReissue;
|
package/dist/esm/factory.d.ts
CHANGED
|
@@ -1,3 +1,3 @@
|
|
|
1
1
|
import { ReissueLogistics, JstItemSelect, JstSupply, JstSendGood, BasicInput, BasicAddress, BasicCascader, BasicCheckbox, BasicDataTime, BasicSelect, BasicRadio, BasicTextArea, BasicPicture, BasicPicturePro, BasicMultSelect, BasicGrade, BasicRate, BasicFile, BasicPosting, SubForm, CommonDataTime, TradeId, ShopName, BuyerNick, ReceiverName, ReceiverMobile, ReceiverAddress, TradeDateTime, Logistics, ReturnLogistics, ActualPayment, ERemark, AliPay, ItemSelect, ItemId, ItemEnCode, SystemOrderNo, Ordinary, ThirdItemSelect, FlowStatusSelect, FlowMarkSelect, FlowTag, Payment, TemplateSelect, WorkOrderId, PlatForm, ShopInput, Submitter, PrevSubmitter, FlowCreator, Handler, CompletedUser, LogisticsInterception, LogisticsMoreInterception, LogisticsTrajectory, LogisticsMoreTrajectory, FlowWorkOrderId, BsGoods, BsExchange, BsReissue, BsReturn, BsSystemOrder, BsLogistics, StatusSelect, CommonSystemOrder, CommonMultiStatus, Calculation, NodeDeadLine, HandlerDeadLine, NodeStayDuration, WlnGoods, BsPosting, MsgStatus, NodeInput, FlowWorkOrderStatus, WdtGoods, WdtReturn, WdtExchange, CommonInput, PaymentVoucherCode, Label, WdtReissue, GyReissue, AfterSalesOrderId, BsE3Goods, PublicGoods, PublicReissueGoods, PublicExchange, GyGoods, BsE3Reissue, MemberLevel, GyReturn, AsyncSelect, WdtShopSelect, KmVideo, BasicTypeInput, SkxIdInputSelect, SkxGoods, BasicSelectOption, OrderSubForm, FlowOverallStatusSelect } from "./index";
|
|
2
2
|
import { PickOption } from "./type";
|
|
3
|
-
export declare const factory: (type: string, options: PickOption) => BsLogistics | BasicFile | JstSendGood | MsgStatus | BasicPicture | BasicPicturePro | BasicSelect |
|
|
3
|
+
export declare const factory: (type: string, options: PickOption) => BsLogistics | BasicFile | JstSendGood | MsgStatus | BasicPicture | BasicPicturePro | BasicSelect | BasicInput | BasicTypeInput | BasicAddress | BasicCascader | BasicCheckbox | BasicDataTime | BasicSelectOption | BasicRadio | BasicTextArea | BasicMultSelect | BasicGrade | BasicRate | BasicPosting | SubForm | CommonDataTime | TradeId | ShopName | BuyerNick | ReceiverName | ReceiverMobile | ReceiverAddress | TradeDateTime | Logistics | ReturnLogistics | ActualPayment | ERemark | AliPay | ItemSelect | ItemId | ItemEnCode | SystemOrderNo | Ordinary | ThirdItemSelect | Payment | ReissueLogistics | JstItemSelect | JstSupply | BsSystemOrder | BsGoods | BsE3Goods | PublicGoods | PublicReissueGoods | PublicExchange | BsE3Reissue | BsExchange | BsReissue | BsReturn | FlowStatusSelect | FlowMarkSelect | FlowTag | TemplateSelect | WorkOrderId | LogisticsInterception | LogisticsMoreInterception | LogisticsTrajectory | LogisticsMoreTrajectory | PlatForm | ShopInput | Submitter | PrevSubmitter | FlowCreator | Handler | CompletedUser | FlowWorkOrderId | StatusSelect | Calculation | CommonSystemOrder | CommonMultiStatus | NodeDeadLine | HandlerDeadLine | NodeStayDuration | WlnGoods | BsPosting | NodeInput | FlowWorkOrderStatus | WdtGoods | WdtReissue | WdtReturn | WdtExchange | WdtShopSelect | KmVideo | CommonInput | PaymentVoucherCode | Label | MemberLevel | AfterSalesOrderId | GyGoods | GyReissue | GyReturn | AsyncSelect | SkxIdInputSelect | SkxGoods | OrderSubForm | FlowOverallStatusSelect;
|
package/dist/esm/factory.js
CHANGED
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@kmkf-fe-packages/services-components",
|
|
3
|
-
"version": "2.2.
|
|
3
|
+
"version": "2.2.26",
|
|
4
4
|
"module": "dist/esm/index.js",
|
|
5
5
|
"typings": "dist/esm/index.d.ts",
|
|
6
6
|
"files": [
|
|
@@ -21,8 +21,8 @@
|
|
|
21
21
|
]
|
|
22
22
|
},
|
|
23
23
|
"dependencies": {
|
|
24
|
-
"@kmkf-fe-packages/basic-components": "2.2.
|
|
25
|
-
"@kmkf-fe-packages/kmkf-utils": "2.2.
|
|
24
|
+
"@kmkf-fe-packages/basic-components": "2.2.26",
|
|
25
|
+
"@kmkf-fe-packages/kmkf-utils": "2.2.26",
|
|
26
26
|
"b64-to-blob": "^1.2.19",
|
|
27
27
|
"html2canvas": "^1.4.1",
|
|
28
28
|
"react-pdf-js": "^5.1.0"
|
|
@@ -41,7 +41,7 @@
|
|
|
41
41
|
"publishConfig": {
|
|
42
42
|
"access": "public"
|
|
43
43
|
},
|
|
44
|
-
"gitHead": "
|
|
44
|
+
"gitHead": "786169beb384512f2dd49ceb5ecee234058f4434",
|
|
45
45
|
"gitHooks": {
|
|
46
46
|
"pre-commit": "lint-staged"
|
|
47
47
|
}
|