@kmkf-fe-packages/services-components 2.0.78 → 2.0.79-beta.10
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 +1 -1
- package/dist/esm/components/BuyerNick/index.js +1 -1
- package/dist/esm/components/CommonHeaderGood/index.js +4 -4
- package/dist/esm/components/FlowStatusSelect/index.d.ts +4 -4
- package/dist/esm/components/FlowStatusSelect/index.js +36 -33
- package/dist/esm/components/JST/JstSendGood/index.js +1 -1
- package/dist/esm/components/MsgStatus/index.d.ts +2 -0
- package/dist/esm/components/MsgStatus/index.js +12 -2
- package/dist/esm/components/Payment/PaymentAmount.d.ts +0 -1
- package/dist/esm/components/Payment/PaymentAmount.js +0 -4
- package/dist/esm/components/Select/index.js +3 -0
- package/dist/esm/factory.d.ts +1 -1
- package/dist/esm/factory.js +1 -0
- package/dist/esm/type.d.ts +3 -0
- package/dist/esm/type.js +1 -0
- package/package.json +4 -4
package/README.md
CHANGED
|
@@ -93,7 +93,7 @@ var EBuyerNick = /*#__PURE__*/_createClass(function EBuyerNick(options) {
|
|
|
93
93
|
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,
|
|
94
94
|
hidden: p === null || p === void 0 ? void 0 : p.hidden,
|
|
95
95
|
display: p === null || p === void 0 ? void 0 : p.display,
|
|
96
|
-
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 :
|
|
96
|
+
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 : "",
|
|
97
97
|
component: /*#__PURE__*/React.createElement(BuyerNick, _extends({}, _this.componentConfig, {
|
|
98
98
|
shopId: (_this$effects3 = _this.effects) === null || _this$effects3 === void 0 ? void 0 : _this$effects3.shopId,
|
|
99
99
|
shopList: (_this$effects4 = _this.effects) === null || _this$effects4 === void 0 ? void 0 : _this$effects4.shopList,
|
|
@@ -903,11 +903,11 @@ var GoodHeaderMap = {
|
|
|
903
903
|
name: "总金额",
|
|
904
904
|
transformValue: function transformValue(val, record, parentName) {
|
|
905
905
|
if (!record) return "--";
|
|
906
|
-
return (record["".concat(parentName, "_qty")] || 0) * (+record["".concat(parentName, "_salePrice")] || 0);
|
|
906
|
+
return ((record["".concat(parentName, "_qty")] || 0) * (+record["".concat(parentName, "_salePrice")] || 0)).toFixed(2);
|
|
907
907
|
},
|
|
908
908
|
renderExport: function renderExport(val, record, parentName) {
|
|
909
909
|
if (!record) return "--";
|
|
910
|
-
return (record["".concat(parentName, "_qty")] || 0) * (+record["".concat(parentName, "_salePrice")] || 0);
|
|
910
|
+
return ((record["".concat(parentName, "_qty")] || 0) * (+record["".concat(parentName, "_salePrice")] || 0)).toFixed(2);
|
|
911
911
|
}
|
|
912
912
|
},
|
|
913
913
|
batchId: "批次号",
|
|
@@ -999,11 +999,11 @@ var GoodHeaderMap = {
|
|
|
999
999
|
name: "总金额",
|
|
1000
1000
|
transformValue: function transformValue(val, record, parentName) {
|
|
1001
1001
|
if (!record) return "--";
|
|
1002
|
-
return (record["".concat(parentName, "_qty")] || 0) * (+record["".concat(parentName, "_salePrice")] || 0);
|
|
1002
|
+
return ((record["".concat(parentName, "_qty")] || 0) * (+record["".concat(parentName, "_salePrice")] || 0)).toFixed(2);
|
|
1003
1003
|
},
|
|
1004
1004
|
renderExport: function renderExport(val, record, parentName) {
|
|
1005
1005
|
if (!record) return "--";
|
|
1006
|
-
return (record["".concat(parentName, "_qty")] || 0) * (+record["".concat(parentName, "_salePrice")] || 0);
|
|
1006
|
+
return ((record["".concat(parentName, "_qty")] || 0) * (+record["".concat(parentName, "_salePrice")] || 0)).toFixed(2);
|
|
1007
1007
|
}
|
|
1008
1008
|
},
|
|
1009
1009
|
batchId: "批次号",
|
|
@@ -1,5 +1,5 @@
|
|
|
1
|
-
import { ComponentInterface, PickOption, ColumnConfig, Record } from
|
|
2
|
-
import React from
|
|
1
|
+
import { ComponentInterface, PickOption, ColumnConfig, Record } from "../../type";
|
|
2
|
+
import React from "react";
|
|
3
3
|
declare class WorkOrderId implements ComponentInterface {
|
|
4
4
|
name: string;
|
|
5
5
|
id: string;
|
|
@@ -13,8 +13,8 @@ declare class WorkOrderId implements ComponentInterface {
|
|
|
13
13
|
formField: string;
|
|
14
14
|
canSort: boolean;
|
|
15
15
|
children: ComponentInterface[];
|
|
16
|
-
dataType: ComponentInterface[
|
|
17
|
-
options: ComponentInterface[
|
|
16
|
+
dataType: ComponentInterface["dataType"];
|
|
17
|
+
options: ComponentInterface["options"];
|
|
18
18
|
constructor(options: PickOption);
|
|
19
19
|
renderPc: (value: any, record: Record) => React.JSX.Element;
|
|
20
20
|
renderLog: (r: Record) => React.JSX.Element | null;
|
|
@@ -6,11 +6,11 @@ function _classCallCheck(instance, Constructor) { if (!(instance instanceof Cons
|
|
|
6
6
|
function _defineProperty(obj, key, value) { key = _toPropertyKey(key); if (key in obj) { Object.defineProperty(obj, key, { value: value, enumerable: true, configurable: true, writable: true }); } else { obj[key] = value; } return obj; }
|
|
7
7
|
function _toPropertyKey(arg) { var key = _toPrimitive(arg, "string"); return _typeof(key) === "symbol" ? key : String(key); }
|
|
8
8
|
function _toPrimitive(input, hint) { if (_typeof(input) !== "object" || input === null) return input; var prim = input[Symbol.toPrimitive]; if (prim !== undefined) { var res = prim.call(input, hint || "default"); if (_typeof(res) !== "object") return res; throw new TypeError("@@toPrimitive must return a primitive value."); } return (hint === "string" ? String : Number)(input); }
|
|
9
|
-
import React from
|
|
10
|
-
import { ApaasSelect } from
|
|
11
|
-
import { filterFn as _filterFn } from
|
|
9
|
+
import React from "react";
|
|
10
|
+
import { ApaasSelect } from "@kmkf-fe-packages/basic-components";
|
|
11
|
+
import { filterFn as _filterFn } from "@kmkf-fe-packages/kmkf-utils";
|
|
12
12
|
import GetFormItem from "../GetFormItem";
|
|
13
|
-
import get from
|
|
13
|
+
import get from "lodash/get";
|
|
14
14
|
import { SYMBOL } from "../../constant";
|
|
15
15
|
// 节点状态
|
|
16
16
|
var WorkOrderId = /*#__PURE__*/_createClass(function WorkOrderId(options) {
|
|
@@ -40,9 +40,10 @@ var WorkOrderId = /*#__PURE__*/_createClass(function WorkOrderId(options) {
|
|
|
40
40
|
style: {
|
|
41
41
|
color: status.color
|
|
42
42
|
}
|
|
43
|
-
}, status === null || status === void 0 ? void 0 : status.label)
|
|
43
|
+
}, status === null || status === void 0 ? void 0 : status.label) :
|
|
44
|
+
/*#__PURE__*/
|
|
44
45
|
// </Dropdown>
|
|
45
|
-
|
|
46
|
+
React.createElement("span", null, "--");
|
|
46
47
|
});
|
|
47
48
|
_defineProperty(this, "renderLog", function (r) {
|
|
48
49
|
var status = get(_this.workOrderStatus, r === null || r === void 0 ? void 0 : r["".concat(_this.id)]);
|
|
@@ -55,7 +56,7 @@ var WorkOrderId = /*#__PURE__*/_createClass(function WorkOrderId(options) {
|
|
|
55
56
|
});
|
|
56
57
|
_defineProperty(this, "renderExport", function (value, record) {
|
|
57
58
|
var status = get(_this.workOrderStatus, record === null || record === void 0 ? void 0 : record["".concat(_this.id)]);
|
|
58
|
-
return status ? status === null || status === void 0 ? void 0 : status.label :
|
|
59
|
+
return status ? status === null || status === void 0 ? void 0 : status.label : "--";
|
|
59
60
|
});
|
|
60
61
|
_defineProperty(this, "renderClient", function () {
|
|
61
62
|
return null;
|
|
@@ -69,7 +70,7 @@ var WorkOrderId = /*#__PURE__*/_createClass(function WorkOrderId(options) {
|
|
|
69
70
|
hidden: p === null || p === void 0 ? void 0 : p.hidden,
|
|
70
71
|
display: p === null || p === void 0 ? void 0 : p.display,
|
|
71
72
|
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,
|
|
72
|
-
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 :
|
|
73
|
+
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 : "",
|
|
73
74
|
component: /*#__PURE__*/React.createElement(ApaasSelect, _extends({}, _this.componentConfig, {
|
|
74
75
|
placeholder: "\u8BF7\u8F93\u5165".concat(_this.name),
|
|
75
76
|
showSearch: true
|
|
@@ -77,7 +78,7 @@ var WorkOrderId = /*#__PURE__*/_createClass(function WorkOrderId(options) {
|
|
|
77
78
|
});
|
|
78
79
|
});
|
|
79
80
|
_defineProperty(this, "filterConfig", function (item) {
|
|
80
|
-
var _Object$keys;
|
|
81
|
+
var _Object$keys, _Object$keys$filter;
|
|
81
82
|
return {
|
|
82
83
|
searchDefaultConditions: SYMBOL.in,
|
|
83
84
|
type: item.type,
|
|
@@ -85,9 +86,11 @@ var WorkOrderId = /*#__PURE__*/_createClass(function WorkOrderId(options) {
|
|
|
85
86
|
// 过滤组件id
|
|
86
87
|
name: item.name,
|
|
87
88
|
// 过滤组件名称
|
|
88
|
-
filterComponentType:
|
|
89
|
+
filterComponentType: "MultipleSelect",
|
|
89
90
|
props: {
|
|
90
|
-
options: (_Object$keys = Object.keys(_this.workOrderStatus)) === null || _Object$keys === void 0 ? void 0 : _Object$keys.
|
|
91
|
+
options: (_Object$keys = Object.keys(_this.workOrderStatus)) === null || _Object$keys === void 0 ? void 0 : (_Object$keys$filter = _Object$keys.filter(function (key) {
|
|
92
|
+
return key !== "HANDLING";
|
|
93
|
+
})) === null || _Object$keys$filter === void 0 ? void 0 : _Object$keys$filter.map(function (item) {
|
|
91
94
|
return {
|
|
92
95
|
label: _this.workOrderStatus[item].label,
|
|
93
96
|
value: item
|
|
@@ -96,7 +99,7 @@ var WorkOrderId = /*#__PURE__*/_createClass(function WorkOrderId(options) {
|
|
|
96
99
|
},
|
|
97
100
|
filterFn: function filterFn(value) {
|
|
98
101
|
return function (i) {
|
|
99
|
-
return value === null || value === void 0 ? void 0 : value.includes(_filterFn.filterTableListItemColumnValue(i, item.id,
|
|
102
|
+
return value === null || value === void 0 ? void 0 : value.includes(_filterFn.filterTableListItemColumnValue(i, item.id, ""));
|
|
100
103
|
};
|
|
101
104
|
}
|
|
102
105
|
};
|
|
@@ -113,33 +116,33 @@ var WorkOrderId = /*#__PURE__*/_createClass(function WorkOrderId(options) {
|
|
|
113
116
|
this.canSort = true;
|
|
114
117
|
this.children = [];
|
|
115
118
|
this.workOrderStatus = {
|
|
116
|
-
|
|
117
|
-
label:
|
|
118
|
-
color:
|
|
119
|
-
bgColor:
|
|
119
|
+
WAITING: {
|
|
120
|
+
label: "待处理",
|
|
121
|
+
color: "#faad14",
|
|
122
|
+
bgColor: "#faad14"
|
|
120
123
|
},
|
|
121
|
-
|
|
122
|
-
label:
|
|
123
|
-
color:
|
|
124
|
-
bgColor:
|
|
124
|
+
HANDLING: {
|
|
125
|
+
label: "处理中",
|
|
126
|
+
color: "#1890ff",
|
|
127
|
+
bgColor: "#1890ff"
|
|
125
128
|
},
|
|
126
|
-
|
|
127
|
-
label:
|
|
128
|
-
color:
|
|
129
|
-
bgColor:
|
|
129
|
+
STOPPING: {
|
|
130
|
+
label: "暂停中",
|
|
131
|
+
color: "#ff4d4f",
|
|
132
|
+
bgColor: "#ff4d4f"
|
|
130
133
|
},
|
|
131
|
-
|
|
132
|
-
label:
|
|
133
|
-
color:
|
|
134
|
-
bgColor:
|
|
134
|
+
COMPLETED: {
|
|
135
|
+
label: "已完成",
|
|
136
|
+
color: "#73d13d",
|
|
137
|
+
bgColor: "#73d13d"
|
|
135
138
|
},
|
|
136
|
-
|
|
137
|
-
label:
|
|
138
|
-
color:
|
|
139
|
-
bgColor:
|
|
139
|
+
CLOSED: {
|
|
140
|
+
label: "已关闭",
|
|
141
|
+
color: "rgba(0, 0, 0, 0.65)",
|
|
142
|
+
bgColor: "rgba(0, 0, 0, 0.04);"
|
|
140
143
|
}
|
|
141
144
|
};
|
|
142
|
-
this.dataType =
|
|
145
|
+
this.dataType = "string";
|
|
143
146
|
this.options = (_Object$keys2 = Object.keys(this.workOrderStatus)) === null || _Object$keys2 === void 0 ? void 0 : _Object$keys2.map(function (item) {
|
|
144
147
|
return {
|
|
145
148
|
label: _this.workOrderStatus[item].label,
|
|
@@ -176,7 +176,7 @@ var JstSendGood = /*#__PURE__*/_createClass(function JstSendGood(_options) {
|
|
|
176
176
|
});
|
|
177
177
|
_defineProperty(this, "filterConfig", function (item) {
|
|
178
178
|
var _typeMap$_this$type8, _typeMap$_this$type9, _typeMap$_this$type11;
|
|
179
|
-
return [["WDT_SEND_GOOD", "BS_E3_SEND_GOOD", "GY_SEND_GOOD"].includes(_this.type) ? {
|
|
179
|
+
return [["WDT_SEND_GOOD", "BS_E3_SEND_GOOD", "KM_SEND_GOOD", "GY_SEND_GOOD"].includes(_this.type) ? {
|
|
180
180
|
searchDefaultConditions: SYMBOL.in,
|
|
181
181
|
type: item.type,
|
|
182
182
|
id: "".concat(item.id, "_").concat((_typeMap$_this$type8 = typeMap[_this.type]) === null || _typeMap$_this$type8 === void 0 ? void 0 : _typeMap$_this$type8.sendName),
|
|
@@ -14,6 +14,8 @@ declare class MsgStatus implements ComponentInterface {
|
|
|
14
14
|
children: ComponentInterface[];
|
|
15
15
|
dataType: ComponentInterface["dataType"];
|
|
16
16
|
options: ComponentInterface["options"];
|
|
17
|
+
exampleValue?: string;
|
|
18
|
+
standardDateType: ComponentInterface["standardDateType"];
|
|
17
19
|
constructor(options: PickOption);
|
|
18
20
|
renderClient: (record: any) => React.JSX.Element | null;
|
|
19
21
|
renderPc: (value: any, record: Record) => React.JSX.Element;
|
|
@@ -39,10 +39,15 @@ var typeMap = {
|
|
|
39
39
|
label: "等待执行",
|
|
40
40
|
color: "#e7780f"
|
|
41
41
|
}, {
|
|
42
|
-
oldValue: "
|
|
42
|
+
oldValue: "不满足条件,无需执行",
|
|
43
43
|
value: "不满足条件,无需执行",
|
|
44
44
|
label: "不满足条件,无需执行",
|
|
45
45
|
color: "#8A8A8A"
|
|
46
|
+
}, {
|
|
47
|
+
oldValue: "暂不满足条件,等待执行",
|
|
48
|
+
value: "暂不满足条件,等待执行",
|
|
49
|
+
label: "暂不满足条件,等待执行",
|
|
50
|
+
color: "#4D90F7"
|
|
46
51
|
}],
|
|
47
52
|
key: "msgStatusValues",
|
|
48
53
|
code: "msgStatus4Search",
|
|
@@ -74,6 +79,8 @@ var MsgStatus = /*#__PURE__*/_createClass(function MsgStatus(options) {
|
|
|
74
79
|
_defineProperty(this, "children", void 0);
|
|
75
80
|
_defineProperty(this, "dataType", void 0);
|
|
76
81
|
_defineProperty(this, "options", void 0);
|
|
82
|
+
_defineProperty(this, "exampleValue", void 0);
|
|
83
|
+
_defineProperty(this, "standardDateType", void 0);
|
|
77
84
|
_defineProperty(this, "renderClient", function (record) {
|
|
78
85
|
var _typeMap$_this$type, _typeMap$_this$type2, _typeMap$_this$type3;
|
|
79
86
|
var isShow = Array.isArray(record === null || record === void 0 ? void 0 : record[_this.id]) ? some(record === null || record === void 0 ? void 0 : record[_this.id], function (item) {
|
|
@@ -125,7 +132,8 @@ var MsgStatus = /*#__PURE__*/_createClass(function MsgStatus(options) {
|
|
|
125
132
|
return item[(_typeMap$_this$type14 = typeMap[_this.type]) === null || _typeMap$_this$type14 === void 0 ? void 0 : _typeMap$_this$type14.valueKey] === option.value;
|
|
126
133
|
});
|
|
127
134
|
var key = item.msgType || "ding";
|
|
128
|
-
|
|
135
|
+
var statusMsg = "".concat(msgTypeCh[key]).concat(item.ruleName ? "-".concat(item.ruleName) : "", ":").concat(currentOption ? (currentOption === null || currentOption === void 0 ? void 0 : currentOption.label) || "" : (item === null || item === void 0 ? void 0 : item[(_typeMap$_this$type15 = typeMap[_this.type]) === null || _typeMap$_this$type15 === void 0 ? void 0 : _typeMap$_this$type15.valueKey]) || "");
|
|
136
|
+
return item.failReason ? "".concat(statusMsg, "\uFF0C\u5931\u8D25\u539F\u56E0\uFF1A").concat(item.failReason) : statusMsg;
|
|
129
137
|
}).join(",");
|
|
130
138
|
});
|
|
131
139
|
_defineProperty(this, "editRender", function (p) {
|
|
@@ -195,5 +203,7 @@ var MsgStatus = /*#__PURE__*/_createClass(function MsgStatus(options) {
|
|
|
195
203
|
}] : [];
|
|
196
204
|
this.align = "left";
|
|
197
205
|
this.options = (_typeMap$options$type3 = typeMap[options.type]) === null || _typeMap$options$type3 === void 0 ? void 0 : _typeMap$options$type3.options;
|
|
206
|
+
this.exampleValue = '{"msgStatus4Search":"["1"]","msgStatusValues":"[{"jobUuid":"1","msgType":"1","msgRuleId":"1","statusKey":"1","ruleName":"1","failReason":"","msgReceivers":[],"status":"1"}]"}';
|
|
207
|
+
this.standardDateType = "Object";
|
|
198
208
|
});
|
|
199
209
|
export default MsgStatus;
|
|
@@ -36,6 +36,5 @@ declare class PaymentAmount implements ComponentInterface {
|
|
|
36
36
|
formatFilterValue: (val: Array<number | null>) => (number | null)[];
|
|
37
37
|
filterFn: (value: string) => (i: Record) => boolean;
|
|
38
38
|
};
|
|
39
|
-
formDataTransform: (value: string) => string | number;
|
|
40
39
|
}
|
|
41
40
|
export default PaymentAmount;
|
|
@@ -132,10 +132,6 @@ var PaymentAmount = /*#__PURE__*/_createClass(function PaymentAmount(options) {
|
|
|
132
132
|
}
|
|
133
133
|
};
|
|
134
134
|
});
|
|
135
|
-
_defineProperty(this, "formDataTransform", function (value) {
|
|
136
|
-
var isNumber = new RegExp(/^[+-]?\d+(\.\d+)?$/);
|
|
137
|
-
return isNumber.test(value) ? Number(value) : value;
|
|
138
|
-
});
|
|
139
135
|
this.name = '打款金额';
|
|
140
136
|
this.id = "".concat(options.id, "_enterprisePaymentRefundFee");
|
|
141
137
|
this.sortField = "".concat(options.id, "_enterprisePaymentRefundFee");
|
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 } from "./index";
|
|
2
2
|
import { PickOption } from "./type";
|
|
3
|
-
export declare const factory: (type: string, options: PickOption) => BuyerNick | JstSendGood | MsgStatus |
|
|
3
|
+
export declare const factory: (type: string, options: PickOption) => BuyerNick | FlowStatusSelect | JstSendGood | MsgStatus | BasicSelect | BasicInput | BasicAddress | BasicCascader | BasicCheckbox | BasicDataTime | BasicRadio | BasicTextArea | BasicPicture | BasicPicturePro | BasicMultSelect | BasicGrade | BasicRate | BasicFile | BasicPosting | SubForm | CommonDataTime | TradeId | ShopName | 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 | BsLogistics | 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;
|
package/dist/esm/factory.js
CHANGED
package/dist/esm/type.d.ts
CHANGED
|
@@ -19,6 +19,7 @@ export declare enum PlatForm {
|
|
|
19
19
|
PDD = "pdd",
|
|
20
20
|
JD = "jd",
|
|
21
21
|
XIAOZHI = "xiaozhi",
|
|
22
|
+
WEB = "web",
|
|
22
23
|
PC = "pc"
|
|
23
24
|
}
|
|
24
25
|
export declare type FilterConfigType = {
|
|
@@ -54,6 +55,7 @@ export interface ComponentInterface {
|
|
|
54
55
|
width?: number;
|
|
55
56
|
align?: ALignType;
|
|
56
57
|
dataType: "string" | "number" | "boolean" | "array" | "range" | "object" | "weakenArray" | "arrayObject";
|
|
58
|
+
standardDateType: "String" | "Number" | "Boolean" | "Array" | "Object";
|
|
57
59
|
format?: "dateTime" | "date" | "time" | "cascader" | "shopInput" | "staffGroup" | "object";
|
|
58
60
|
options?: Array<any>;
|
|
59
61
|
optionsMap?: Record;
|
|
@@ -62,6 +64,7 @@ export interface ComponentInterface {
|
|
|
62
64
|
workOrderUniqueKey?: string;
|
|
63
65
|
platform?: PlatForm;
|
|
64
66
|
parentName?: string;
|
|
67
|
+
exampleValue?: any;
|
|
65
68
|
/**
|
|
66
69
|
* @description 组件下标
|
|
67
70
|
* @deprecated 已弃用字段,后续版本不在使用
|
package/dist/esm/type.js
CHANGED
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@kmkf-fe-packages/services-components",
|
|
3
|
-
"version": "2.0.
|
|
3
|
+
"version": "2.0.79-beta.10",
|
|
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.0.
|
|
25
|
-
"@kmkf-fe-packages/kmkf-utils": "2.0.
|
|
24
|
+
"@kmkf-fe-packages/basic-components": "2.0.79-beta.10",
|
|
25
|
+
"@kmkf-fe-packages/kmkf-utils": "2.0.79-beta.10",
|
|
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": "980a2ddae0f585d26e66c541a14b6b2bccd34e5e",
|
|
45
45
|
"gitHooks": {
|
|
46
46
|
"pre-commit": "lint-staged"
|
|
47
47
|
}
|