@kmkf-fe-packages/services-components 1.2.0 → 1.3.0-rc.0
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/esm/commonComponents/GlobalContext/index.d.ts +1 -1
- package/dist/esm/commonComponents/GlobalContext/index.js +3 -2
- package/dist/esm/components/BS/common/BsMemo.js +2 -1
- package/dist/esm/components/BS/common/BsType.js +2 -1
- package/dist/esm/components/Cascader/index.d.ts +1 -0
- package/dist/esm/components/Cascader/index.js +4 -1
- package/dist/esm/components/Common/index.d.ts +1 -1
- package/dist/esm/components/Common/index.js +185 -4
- package/dist/esm/components/CommonHeaderGood/index.js +182 -0
- package/dist/esm/components/CommonMultiStatus/index.js +25 -19
- package/dist/esm/components/CommonSystemOrder/index.js +10 -8
- package/dist/esm/components/Input/index.d.ts +1 -0
- package/dist/esm/components/Input/index.js +13 -5
- package/dist/esm/components/Label/index.d.ts +36 -0
- package/dist/esm/components/Label/index.js +142 -0
- package/dist/esm/components/StatusSelect/index.js +3 -0
- package/dist/esm/components/WDT/WdtExchange/index.d.ts +35 -0
- package/dist/esm/components/WDT/WdtExchange/index.js +183 -0
- package/dist/esm/components/WDT/WdtReturn/index.d.ts +54 -0
- package/dist/esm/components/WDT/WdtReturn/index.js +150 -0
- package/dist/esm/factory.d.ts +2 -2
- package/dist/esm/factory.js +7 -1
- package/dist/esm/index.d.ts +3 -0
- package/dist/esm/index.js +3 -0
- package/dist/esm/service/api.d.ts +1 -0
- package/dist/esm/service/api.js +20 -1
- package/dist/esm/type.d.ts +9 -3
- package/package.json +4 -4
|
@@ -48,7 +48,7 @@ var CommonSystemOrder = /*#__PURE__*/_createClass(function CommonSystemOrder(opt
|
|
|
48
48
|
var _this = this,
|
|
49
49
|
_typeMap$options$type,
|
|
50
50
|
_typeMap$options$type2,
|
|
51
|
-
_this$
|
|
51
|
+
_this$componentConfig5;
|
|
52
52
|
_classCallCheck(this, CommonSystemOrder);
|
|
53
53
|
_defineProperty(this, "name", void 0);
|
|
54
54
|
_defineProperty(this, "id", void 0);
|
|
@@ -63,7 +63,7 @@ var CommonSystemOrder = /*#__PURE__*/_createClass(function CommonSystemOrder(opt
|
|
|
63
63
|
_defineProperty(this, "children", void 0);
|
|
64
64
|
_defineProperty(this, "dataType", void 0);
|
|
65
65
|
_defineProperty(this, "renderClient", function (record) {
|
|
66
|
-
var _typeMap$_this$type;
|
|
66
|
+
var _typeMap$_this$type, _this$componentConfig;
|
|
67
67
|
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) {
|
|
68
68
|
return !isNull(item);
|
|
69
69
|
}) : false;
|
|
@@ -72,12 +72,13 @@ var CommonSystemOrder = /*#__PURE__*/_createClass(function CommonSystemOrder(opt
|
|
|
72
72
|
label: _this.name,
|
|
73
73
|
value: /*#__PURE__*/React.createElement(CommonOrderContent, {
|
|
74
74
|
list: record === null || record === void 0 ? void 0 : record[_this.id],
|
|
75
|
-
valueKey: (_typeMap$_this$type = typeMap[_this.type]) === null || _typeMap$_this$type === void 0 ? void 0 : _typeMap$_this$type.valueKey
|
|
75
|
+
valueKey: (_typeMap$_this$type = typeMap[_this.type]) === null || _typeMap$_this$type === void 0 ? void 0 : _typeMap$_this$type.valueKey,
|
|
76
|
+
isShowPopover: ((_this$componentConfig = _this.componentConfig) === null || _this$componentConfig === void 0 ? void 0 : _this$componentConfig.belongType) !== "wdt"
|
|
76
77
|
})
|
|
77
78
|
}) : null;
|
|
78
79
|
});
|
|
79
80
|
_defineProperty(this, "renderPc", function (value, record) {
|
|
80
|
-
var _typeMap$_this$type2, _typeMap$_this$type3, _typeMap$_this$type4;
|
|
81
|
+
var _typeMap$_this$type2, _typeMap$_this$type3, _typeMap$_this$type4, _this$componentConfig2;
|
|
81
82
|
var list = record === null || record === void 0 ? void 0 : record["".concat(_this.id, "_").concat((_typeMap$_this$type2 = typeMap[_this.type]) === null || _typeMap$_this$type2 === void 0 ? void 0 : _typeMap$_this$type2.key)];
|
|
82
83
|
//兼容多个商品
|
|
83
84
|
return /*#__PURE__*/React.createElement("span", {
|
|
@@ -87,7 +88,8 @@ var CommonSystemOrder = /*#__PURE__*/_createClass(function CommonSystemOrder(opt
|
|
|
87
88
|
}, /*#__PURE__*/React.createElement(CommonOrderContent, {
|
|
88
89
|
list: list,
|
|
89
90
|
type: (_typeMap$_this$type3 = typeMap[_this.type]) === null || _typeMap$_this$type3 === void 0 ? void 0 : _typeMap$_this$type3.type,
|
|
90
|
-
valueKey: (_typeMap$_this$type4 = typeMap[_this.type]) === null || _typeMap$_this$type4 === void 0 ? void 0 : _typeMap$_this$type4.valueKey
|
|
91
|
+
valueKey: (_typeMap$_this$type4 = typeMap[_this.type]) === null || _typeMap$_this$type4 === void 0 ? void 0 : _typeMap$_this$type4.valueKey,
|
|
92
|
+
isShowPopover: ((_this$componentConfig2 = _this.componentConfig) === null || _this$componentConfig2 === void 0 ? void 0 : _this$componentConfig2.belongType) !== "wdt"
|
|
91
93
|
}));
|
|
92
94
|
});
|
|
93
95
|
_defineProperty(this, "renderLog", function (r) {
|
|
@@ -109,14 +111,14 @@ var CommonSystemOrder = /*#__PURE__*/_createClass(function CommonSystemOrder(opt
|
|
|
109
111
|
}).join(',');
|
|
110
112
|
});
|
|
111
113
|
_defineProperty(this, "editRender", function (p) {
|
|
112
|
-
var _this$
|
|
114
|
+
var _this$componentConfig3, _this$componentConfig4, _typeMap$_this$type9;
|
|
113
115
|
return /*#__PURE__*/React.createElement(GetFormItem, {
|
|
114
116
|
title: _this.name,
|
|
115
117
|
name: _this.id,
|
|
116
118
|
rules: _this.rules,
|
|
117
119
|
hidden: p === null || p === void 0 ? void 0 : p.hidden,
|
|
118
120
|
display: p === null || p === void 0 ? void 0 : p.display,
|
|
119
|
-
required: (_this$
|
|
121
|
+
required: (_this$componentConfig3 = (_this$componentConfig4 = _this.componentConfig) === null || _this$componentConfig4 === void 0 ? void 0 : _this$componentConfig4.required) !== null && _this$componentConfig3 !== void 0 ? _this$componentConfig3 : false,
|
|
120
122
|
component: /*#__PURE__*/React.createElement(SystemOrder, _extends({}, _this.componentConfig, {
|
|
121
123
|
type: (_typeMap$_this$type9 = typeMap[_this.type]) === null || _typeMap$_this$type9 === void 0 ? void 0 : _typeMap$_this$type9.type
|
|
122
124
|
}))
|
|
@@ -151,7 +153,7 @@ var CommonSystemOrder = /*#__PURE__*/_createClass(function CommonSystemOrder(opt
|
|
|
151
153
|
this.canSort = false;
|
|
152
154
|
this.children = [];
|
|
153
155
|
this.dataType = 'object';
|
|
154
|
-
this.rules = (_this$
|
|
156
|
+
this.rules = (_this$componentConfig5 = this.componentConfig) !== null && _this$componentConfig5 !== void 0 && _this$componentConfig5.required ? [{
|
|
155
157
|
required: true,
|
|
156
158
|
validator: function validator(_, value) {
|
|
157
159
|
var hasNo = (value || []).some(function (item) {
|
|
@@ -13,6 +13,7 @@ declare class BasicInput implements ComponentInterface {
|
|
|
13
13
|
children: ComponentInterface[];
|
|
14
14
|
dataType: ComponentInterface["dataType"];
|
|
15
15
|
templateId?: string;
|
|
16
|
+
flowTemplateKey?: string;
|
|
16
17
|
workOrderUniqueKey?: string;
|
|
17
18
|
constructor(options: PickOption);
|
|
18
19
|
renderPc: (value: any, record: Record) => React.JSX.Element;
|
|
@@ -32,6 +32,7 @@ var BasicInput = /*#__PURE__*/_createClass(function BasicInput(options) {
|
|
|
32
32
|
_defineProperty(this, "children", void 0);
|
|
33
33
|
_defineProperty(this, "dataType", void 0);
|
|
34
34
|
_defineProperty(this, "templateId", void 0);
|
|
35
|
+
_defineProperty(this, "flowTemplateKey", void 0);
|
|
35
36
|
_defineProperty(this, "workOrderUniqueKey", void 0);
|
|
36
37
|
_defineProperty(this, "renderPc", function (value, record) {
|
|
37
38
|
var _record;
|
|
@@ -103,6 +104,7 @@ var BasicInput = /*#__PURE__*/_createClass(function BasicInput(options) {
|
|
|
103
104
|
this.formField = "".concat(options.id, "_input");
|
|
104
105
|
this.type = options.type;
|
|
105
106
|
this.templateId = options.templateId;
|
|
107
|
+
this.flowTemplateKey = options.flowTemplateKey;
|
|
106
108
|
this.componentConfig = options.componentConfig;
|
|
107
109
|
this.workOrderUniqueKey = options === null || options === void 0 ? void 0 : options.workOrderUniqueKey;
|
|
108
110
|
this.rules = [{
|
|
@@ -152,7 +154,7 @@ var BasicInput = /*#__PURE__*/_createClass(function BasicInput(options) {
|
|
|
152
154
|
validator: function () {
|
|
153
155
|
var _validator = _asyncToGenerator( /*#__PURE__*/_regeneratorRuntime().mark(function _callee(_, value) {
|
|
154
156
|
var _this$componentConfig11;
|
|
155
|
-
var _resultList$, params, _yield$replaceCheck, resultList;
|
|
157
|
+
var _resultList$, params, _yield$replaceCheck, resultList, _this$componentConfig12, _this$componentConfig13, _this$componentConfig14, messageMap;
|
|
156
158
|
return _regeneratorRuntime().wrap(function _callee$(_context) {
|
|
157
159
|
while (1) switch (_context.prev = _context.next) {
|
|
158
160
|
case 0:
|
|
@@ -163,10 +165,11 @@ var BasicInput = /*#__PURE__*/_createClass(function BasicInput(options) {
|
|
|
163
165
|
return _context.abrupt("return", Promise.resolve());
|
|
164
166
|
case 2:
|
|
165
167
|
if (!((_this$componentConfig11 = _this.componentConfig) !== null && _this$componentConfig11 !== void 0 && _this$componentConfig11.replaceWarn)) {
|
|
166
|
-
_context.next =
|
|
168
|
+
_context.next = 11;
|
|
167
169
|
break;
|
|
168
170
|
}
|
|
169
171
|
params = {
|
|
172
|
+
flowTemplateKey: _this.flowTemplateKey,
|
|
170
173
|
templateId: _this.templateId,
|
|
171
174
|
workOrderUniqueKey: _this.workOrderUniqueKey,
|
|
172
175
|
needCheckComponentList: [{
|
|
@@ -180,11 +183,16 @@ var BasicInput = /*#__PURE__*/_createClass(function BasicInput(options) {
|
|
|
180
183
|
_yield$replaceCheck = _context.sent;
|
|
181
184
|
resultList = _yield$replaceCheck.data.resultList;
|
|
182
185
|
if (!((resultList === null || resultList === void 0 ? void 0 : (_resultList$ = resultList[0]) === null || _resultList$ === void 0 ? void 0 : _resultList$.repeatCount) > 0)) {
|
|
183
|
-
_context.next =
|
|
186
|
+
_context.next = 11;
|
|
184
187
|
break;
|
|
185
188
|
}
|
|
186
|
-
|
|
187
|
-
|
|
189
|
+
messageMap = {
|
|
190
|
+
currWorkOrder: "数据已存在本模版同节点中,不能重复提交",
|
|
191
|
+
currFlow: "数据已存在本模版中,不能重复提交",
|
|
192
|
+
allWorkOrder: "数据已存在其他模版中,不能重复提交"
|
|
193
|
+
};
|
|
194
|
+
return _context.abrupt("return", Promise.reject(new Error(messageMap[(_this$componentConfig12 = (_this$componentConfig13 = _this.componentConfig) === null || _this$componentConfig13 === void 0 ? void 0 : (_this$componentConfig14 = _this$componentConfig13.repeatConfig) === null || _this$componentConfig14 === void 0 ? void 0 : _this$componentConfig14.repeatRange) !== null && _this$componentConfig12 !== void 0 ? _this$componentConfig12 : ""] || "内容已存在,不能重复提交")));
|
|
195
|
+
case 11:
|
|
188
196
|
case "end":
|
|
189
197
|
return _context.stop();
|
|
190
198
|
}
|
|
@@ -0,0 +1,36 @@
|
|
|
1
|
+
import { ComponentInterface, PickOption, ColumnConfig, Record } from "../../type";
|
|
2
|
+
import React from "react";
|
|
3
|
+
import { LabelData } from "@kmkf-fe-packages/kmkf-utils";
|
|
4
|
+
declare class Label implements ComponentInterface {
|
|
5
|
+
name: string;
|
|
6
|
+
id: string;
|
|
7
|
+
sortField: string;
|
|
8
|
+
type: string;
|
|
9
|
+
rules: any[];
|
|
10
|
+
componentConfig: ComponentInterface["componentConfig"];
|
|
11
|
+
isCombinationComponent: boolean;
|
|
12
|
+
formField: string;
|
|
13
|
+
canSort: boolean;
|
|
14
|
+
children: ComponentInterface[];
|
|
15
|
+
dataType: ComponentInterface["dataType"];
|
|
16
|
+
options: ComponentInterface["options"];
|
|
17
|
+
labelDateInstance: InstanceType<typeof LabelData>;
|
|
18
|
+
constructor(options: PickOption);
|
|
19
|
+
getComponentValue: (r: Record) => any;
|
|
20
|
+
editRender: (p: any) => React.JSX.Element;
|
|
21
|
+
renderClient: (record: any) => React.JSX.Element | null;
|
|
22
|
+
showDetail: (value: Array<{
|
|
23
|
+
labelId: string;
|
|
24
|
+
labelName: string;
|
|
25
|
+
labelShowName: string;
|
|
26
|
+
openId: string;
|
|
27
|
+
}>) => React.JSX.Element;
|
|
28
|
+
renderPc: (value: any, record: Record) => React.JSX.Element;
|
|
29
|
+
renderLog: (r: Record) => React.JSX.Element;
|
|
30
|
+
renderExport: (value: any, record: Record) => any;
|
|
31
|
+
filterConfig: (item: ColumnConfig) => never[];
|
|
32
|
+
formDataTransform: (v: Array<{
|
|
33
|
+
labelShowName: string;
|
|
34
|
+
}>) => string[];
|
|
35
|
+
}
|
|
36
|
+
export default Label;
|
|
@@ -0,0 +1,142 @@
|
|
|
1
|
+
function _typeof(obj) { "@babel/helpers - typeof"; return _typeof = "function" == typeof Symbol && "symbol" == typeof Symbol.iterator ? function (obj) { return typeof obj; } : function (obj) { return obj && "function" == typeof Symbol && obj.constructor === Symbol && obj !== Symbol.prototype ? "symbol" : typeof obj; }, _typeof(obj); }
|
|
2
|
+
function _defineProperties(target, props) { for (var i = 0; i < props.length; i++) { var descriptor = props[i]; descriptor.enumerable = descriptor.enumerable || false; descriptor.configurable = true; if ("value" in descriptor) descriptor.writable = true; Object.defineProperty(target, _toPropertyKey(descriptor.key), descriptor); } }
|
|
3
|
+
function _createClass(Constructor, protoProps, staticProps) { if (protoProps) _defineProperties(Constructor.prototype, protoProps); if (staticProps) _defineProperties(Constructor, staticProps); Object.defineProperty(Constructor, "prototype", { writable: false }); return Constructor; }
|
|
4
|
+
function _classCallCheck(instance, Constructor) { if (!(instance instanceof Constructor)) { throw new TypeError("Cannot call a class as a function"); } }
|
|
5
|
+
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; }
|
|
6
|
+
function _toPropertyKey(arg) { var key = _toPrimitive(arg, "string"); return _typeof(key) === "symbol" ? key : String(key); }
|
|
7
|
+
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); }
|
|
8
|
+
function _extends() { _extends = Object.assign ? Object.assign.bind() : function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; }; return _extends.apply(this, arguments); }
|
|
9
|
+
import React from "react";
|
|
10
|
+
import { Tag, Select, Space } from 'antd';
|
|
11
|
+
import { LabelData, isNull } from "@kmkf-fe-packages/kmkf-utils";
|
|
12
|
+
import GetFormItem from "../GetFormItem";
|
|
13
|
+
import ItemView from "../../commonComponents/ItemView";
|
|
14
|
+
var EditRenderItem = function EditRenderItem(props) {
|
|
15
|
+
var value = props.value;
|
|
16
|
+
var tagRender = function tagRender(prop) {
|
|
17
|
+
var _props$options, _props$options$find;
|
|
18
|
+
var label = prop.label,
|
|
19
|
+
closable = prop.closable,
|
|
20
|
+
onClose = prop.onClose,
|
|
21
|
+
value = prop.value;
|
|
22
|
+
var color = props === null || props === void 0 ? void 0 : (_props$options = props.options) === null || _props$options === void 0 ? void 0 : (_props$options$find = _props$options.find(function (item) {
|
|
23
|
+
return item.value === value;
|
|
24
|
+
})) === null || _props$options$find === void 0 ? void 0 : _props$options$find.color;
|
|
25
|
+
var onPreventMouseDown = function onPreventMouseDown(event) {
|
|
26
|
+
event.preventDefault();
|
|
27
|
+
event.stopPropagation();
|
|
28
|
+
};
|
|
29
|
+
return /*#__PURE__*/React.createElement(Tag, {
|
|
30
|
+
color: color,
|
|
31
|
+
onMouseDown: onPreventMouseDown,
|
|
32
|
+
closable: closable,
|
|
33
|
+
onClose: onClose,
|
|
34
|
+
style: {
|
|
35
|
+
marginRight: 3
|
|
36
|
+
}
|
|
37
|
+
}, label);
|
|
38
|
+
};
|
|
39
|
+
return /*#__PURE__*/React.createElement(Select, _extends({}, props, {
|
|
40
|
+
value: Array.from(new Set(value === null || value === void 0 ? void 0 : value.map(function (item) {
|
|
41
|
+
return item === null || item === void 0 ? void 0 : item.labelShowName;
|
|
42
|
+
}))),
|
|
43
|
+
mode: "multiple",
|
|
44
|
+
showArrow: true,
|
|
45
|
+
tagRender: tagRender
|
|
46
|
+
}));
|
|
47
|
+
};
|
|
48
|
+
var Label = /*#__PURE__*/_createClass(function Label(options) {
|
|
49
|
+
var _this = this;
|
|
50
|
+
_classCallCheck(this, Label);
|
|
51
|
+
_defineProperty(this, "name", void 0);
|
|
52
|
+
_defineProperty(this, "id", void 0);
|
|
53
|
+
_defineProperty(this, "sortField", void 0);
|
|
54
|
+
_defineProperty(this, "type", void 0);
|
|
55
|
+
_defineProperty(this, "rules", void 0);
|
|
56
|
+
_defineProperty(this, "componentConfig", void 0);
|
|
57
|
+
_defineProperty(this, "isCombinationComponent", void 0);
|
|
58
|
+
_defineProperty(this, "formField", void 0);
|
|
59
|
+
_defineProperty(this, "canSort", void 0);
|
|
60
|
+
_defineProperty(this, "children", void 0);
|
|
61
|
+
_defineProperty(this, "dataType", void 0);
|
|
62
|
+
_defineProperty(this, "options", void 0);
|
|
63
|
+
_defineProperty(this, "labelDateInstance", void 0);
|
|
64
|
+
_defineProperty(this, "getComponentValue", function (r) {
|
|
65
|
+
return r === null || r === void 0 ? void 0 : r["".concat(_this.id, "_label")];
|
|
66
|
+
});
|
|
67
|
+
_defineProperty(this, "editRender", function (p) {
|
|
68
|
+
var _this$componentConfig, _this$componentConfig2;
|
|
69
|
+
return /*#__PURE__*/React.createElement(GetFormItem, {
|
|
70
|
+
title: _this.name,
|
|
71
|
+
name: _this.id,
|
|
72
|
+
rules: _this.rules,
|
|
73
|
+
hidden: p === null || p === void 0 ? void 0 : p.hidden,
|
|
74
|
+
display: p === null || p === void 0 ? void 0 : p.display,
|
|
75
|
+
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,
|
|
76
|
+
component: /*#__PURE__*/React.createElement(EditRenderItem, _extends({}, _this.componentConfig, {
|
|
77
|
+
placeholder: "\u7CFB\u7EDF\u81EA\u52A8\u751F\u6210",
|
|
78
|
+
showSearch: true,
|
|
79
|
+
onChange: p === null || p === void 0 ? void 0 : p.onChange,
|
|
80
|
+
options: _this.labelDateInstance.labelData,
|
|
81
|
+
optionFilterProp: "label"
|
|
82
|
+
}))
|
|
83
|
+
});
|
|
84
|
+
});
|
|
85
|
+
_defineProperty(this, "renderClient", function (record) {
|
|
86
|
+
return !isNull(record === null || record === void 0 ? void 0 : record[_this.id]) ? /*#__PURE__*/React.createElement(ItemView, {
|
|
87
|
+
id: _this.id,
|
|
88
|
+
label: _this.name,
|
|
89
|
+
value: _this.showDetail(record === null || record === void 0 ? void 0 : record["".concat(_this.id)])
|
|
90
|
+
}) : null;
|
|
91
|
+
});
|
|
92
|
+
_defineProperty(this, "showDetail", function (value) {
|
|
93
|
+
return /*#__PURE__*/React.createElement(Space, {
|
|
94
|
+
style: {
|
|
95
|
+
flexWrap: 'wrap'
|
|
96
|
+
}
|
|
97
|
+
}, Array.isArray(value) ? value === null || value === void 0 ? void 0 : value.map(function (v) {
|
|
98
|
+
var _this$labelDateInstan;
|
|
99
|
+
var label = ((_this$labelDateInstan = _this.labelDateInstance.labelData) === null || _this$labelDateInstan === void 0 ? void 0 : _this$labelDateInstan.find(function (item) {
|
|
100
|
+
return item.value === (v === null || v === void 0 ? void 0 : v.labelShowName);
|
|
101
|
+
})) || {};
|
|
102
|
+
if (!isNull(label)) return /*#__PURE__*/React.createElement(Tag, {
|
|
103
|
+
color: label === null || label === void 0 ? void 0 : label.color
|
|
104
|
+
}, label === null || label === void 0 ? void 0 : label.label);
|
|
105
|
+
return null;
|
|
106
|
+
}) : "--");
|
|
107
|
+
});
|
|
108
|
+
_defineProperty(this, "renderPc", function (value, record) {
|
|
109
|
+
return _this.showDetail(record === null || record === void 0 ? void 0 : record["".concat(_this.id, "_label")]);
|
|
110
|
+
});
|
|
111
|
+
_defineProperty(this, "renderLog", function (r) {
|
|
112
|
+
return _this.renderPc(undefined, r);
|
|
113
|
+
});
|
|
114
|
+
_defineProperty(this, "renderExport", function (value, record) {
|
|
115
|
+
var _record, _record$map;
|
|
116
|
+
return record === null || record === void 0 ? void 0 : (_record = record["".concat(_this.id, "_label")]) === null || _record === void 0 ? void 0 : (_record$map = _record.map(function (item) {
|
|
117
|
+
return item === null || item === void 0 ? void 0 : item.labelShowName;
|
|
118
|
+
})) === null || _record$map === void 0 ? void 0 : _record$map.join('、');
|
|
119
|
+
});
|
|
120
|
+
_defineProperty(this, "filterConfig", function (item) {
|
|
121
|
+
return [];
|
|
122
|
+
});
|
|
123
|
+
_defineProperty(this, "formDataTransform", function (v) {
|
|
124
|
+
return v === null || v === void 0 ? void 0 : v.map(function (item) {
|
|
125
|
+
return item.labelShowName;
|
|
126
|
+
});
|
|
127
|
+
});
|
|
128
|
+
this.name = options.name;
|
|
129
|
+
this.id = options.id;
|
|
130
|
+
this.sortField = options.id;
|
|
131
|
+
this.formField = "".concat(options.id, "_label");
|
|
132
|
+
this.type = options.type;
|
|
133
|
+
this.componentConfig = options.componentConfig;
|
|
134
|
+
this.rules = [];
|
|
135
|
+
this.isCombinationComponent = false;
|
|
136
|
+
this.canSort = false;
|
|
137
|
+
this.children = [];
|
|
138
|
+
this.dataType = "array";
|
|
139
|
+
this.labelDateInstance = LabelData.getInstance();
|
|
140
|
+
this.options = this.labelDateInstance.labelData || [];
|
|
141
|
+
});
|
|
142
|
+
export default Label;
|
|
@@ -112,6 +112,9 @@ var StatusSelect = /*#__PURE__*/_createClass(function StatusSelect(options) {
|
|
|
112
112
|
display: p === null || p === void 0 ? void 0 : p.display,
|
|
113
113
|
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,
|
|
114
114
|
component: /*#__PURE__*/React.createElement(CommonStatus, _extends({}, _this.componentConfig, {
|
|
115
|
+
style: {
|
|
116
|
+
width: 200
|
|
117
|
+
},
|
|
115
118
|
placeholder: "\u8BF7\u8F93\u5165".concat(_this.name),
|
|
116
119
|
failValue: selectTypeMap[_this.type].failValue
|
|
117
120
|
}))
|
|
@@ -0,0 +1,35 @@
|
|
|
1
|
+
import { ComponentInterface, PickOption, ColumnConfig, Record } from "../../../type";
|
|
2
|
+
import React from "react";
|
|
3
|
+
import CommonHeaderGoods from "../../CommonHeaderGood";
|
|
4
|
+
declare class WDTExchange implements ComponentInterface {
|
|
5
|
+
name: string;
|
|
6
|
+
id: string;
|
|
7
|
+
sortField: string;
|
|
8
|
+
type: string;
|
|
9
|
+
rules: any[];
|
|
10
|
+
componentConfig: ComponentInterface["componentConfig"];
|
|
11
|
+
effects: ComponentInterface["effects"];
|
|
12
|
+
isCombinationComponent: boolean;
|
|
13
|
+
formField: string;
|
|
14
|
+
canSort: boolean;
|
|
15
|
+
children: ComponentInterface[];
|
|
16
|
+
dataType: ComponentInterface["dataType"];
|
|
17
|
+
returnGoods: CommonHeaderGoods;
|
|
18
|
+
constructor(options: PickOption);
|
|
19
|
+
renderClient: (record: any) => React.JSX.Element | null;
|
|
20
|
+
renderPc: () => null;
|
|
21
|
+
renderLog: (r: Record) => React.JSX.Element;
|
|
22
|
+
getComponentValue: (r: Record) => {
|
|
23
|
+
wdtExchangeGoods: any;
|
|
24
|
+
};
|
|
25
|
+
renderExport: (value: any, record: any) => null;
|
|
26
|
+
editRender: (p: any) => React.JSX.Element;
|
|
27
|
+
filterConfig: (item: ColumnConfig) => {
|
|
28
|
+
searchDefaultConditions: "like";
|
|
29
|
+
type: string;
|
|
30
|
+
id: string;
|
|
31
|
+
name: string;
|
|
32
|
+
filterComponentType: "Input";
|
|
33
|
+
}[];
|
|
34
|
+
}
|
|
35
|
+
export default WDTExchange;
|
|
@@ -0,0 +1,183 @@
|
|
|
1
|
+
function _typeof(obj) { "@babel/helpers - typeof"; return _typeof = "function" == typeof Symbol && "symbol" == typeof Symbol.iterator ? function (obj) { return typeof obj; } : function (obj) { return obj && "function" == typeof Symbol && obj.constructor === Symbol && obj !== Symbol.prototype ? "symbol" : typeof obj; }, _typeof(obj); }
|
|
2
|
+
function ownKeys(object, enumerableOnly) { var keys = Object.keys(object); if (Object.getOwnPropertySymbols) { var symbols = Object.getOwnPropertySymbols(object); enumerableOnly && (symbols = symbols.filter(function (sym) { return Object.getOwnPropertyDescriptor(object, sym).enumerable; })), keys.push.apply(keys, symbols); } return keys; }
|
|
3
|
+
function _objectSpread(target) { for (var i = 1; i < arguments.length; i++) { var source = null != arguments[i] ? arguments[i] : {}; i % 2 ? ownKeys(Object(source), !0).forEach(function (key) { _defineProperty(target, key, source[key]); }) : Object.getOwnPropertyDescriptors ? Object.defineProperties(target, Object.getOwnPropertyDescriptors(source)) : ownKeys(Object(source)).forEach(function (key) { Object.defineProperty(target, key, Object.getOwnPropertyDescriptor(source, key)); }); } return target; }
|
|
4
|
+
function _extends() { _extends = Object.assign ? Object.assign.bind() : function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; }; return _extends.apply(this, arguments); }
|
|
5
|
+
function _defineProperties(target, props) { for (var i = 0; i < props.length; i++) { var descriptor = props[i]; descriptor.enumerable = descriptor.enumerable || false; descriptor.configurable = true; if ("value" in descriptor) descriptor.writable = true; Object.defineProperty(target, _toPropertyKey(descriptor.key), descriptor); } }
|
|
6
|
+
function _createClass(Constructor, protoProps, staticProps) { if (protoProps) _defineProperties(Constructor.prototype, protoProps); if (staticProps) _defineProperties(Constructor, staticProps); Object.defineProperty(Constructor, "prototype", { writable: false }); return Constructor; }
|
|
7
|
+
function _classCallCheck(instance, Constructor) { if (!(instance instanceof Constructor)) { throw new TypeError("Cannot call a class as a function"); } }
|
|
8
|
+
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; }
|
|
9
|
+
function _toPropertyKey(arg) { var key = _toPrimitive(arg, "string"); return _typeof(key) === "symbol" ? key : String(key); }
|
|
10
|
+
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); }
|
|
11
|
+
import React from "react";
|
|
12
|
+
import GetFormItem from "../../GetFormItem";
|
|
13
|
+
import { BsGoodsTable } from "../../Common";
|
|
14
|
+
import ItemView from "../../../commonComponents/ItemView";
|
|
15
|
+
import { isNull } from "@kmkf-fe-packages/kmkf-utils";
|
|
16
|
+
import { SYMBOL } from "../../../constant";
|
|
17
|
+
// import { BsType, BsMemo } from "../../Bs/common";
|
|
18
|
+
import { CommonExchangeGoods } from "@kmkf-fe-packages/basic-components";
|
|
19
|
+
import CommonHeaderGoods from "../../CommonHeaderGood";
|
|
20
|
+
var WDTExchange = /*#__PURE__*/_createClass(
|
|
21
|
+
// wdtType: BsType;
|
|
22
|
+
// wdtMemo: BsMemo;
|
|
23
|
+
|
|
24
|
+
// swapOutGoods: BsHeaderGood;
|
|
25
|
+
// giftGoods: BsHeaderGood;
|
|
26
|
+
function WDTExchange(options) {
|
|
27
|
+
var _this = this,
|
|
28
|
+
_this$componentConfig4;
|
|
29
|
+
_classCallCheck(this, WDTExchange);
|
|
30
|
+
_defineProperty(this, "name", void 0);
|
|
31
|
+
_defineProperty(this, "id", void 0);
|
|
32
|
+
_defineProperty(this, "sortField", void 0);
|
|
33
|
+
_defineProperty(this, "type", void 0);
|
|
34
|
+
_defineProperty(this, "rules", void 0);
|
|
35
|
+
_defineProperty(this, "componentConfig", void 0);
|
|
36
|
+
_defineProperty(this, "effects", void 0);
|
|
37
|
+
_defineProperty(this, "isCombinationComponent", void 0);
|
|
38
|
+
_defineProperty(this, "formField", void 0);
|
|
39
|
+
_defineProperty(this, "canSort", void 0);
|
|
40
|
+
_defineProperty(this, "children", void 0);
|
|
41
|
+
_defineProperty(this, "dataType", void 0);
|
|
42
|
+
_defineProperty(this, "returnGoods", void 0);
|
|
43
|
+
_defineProperty(this, "renderClient", function (record) {
|
|
44
|
+
var _this$componentConfig;
|
|
45
|
+
var wdtExchangeGoods = JSON.parse((record === null || record === void 0 ? void 0 : record["".concat(_this.id, "_wdtExchangeGoods")]) || "[]");
|
|
46
|
+
return !isNull(record === null || record === void 0 ? void 0 : record["".concat(_this.id)]) ? /*#__PURE__*/React.createElement(React.Fragment, null, /*#__PURE__*/React.createElement(ItemView, {
|
|
47
|
+
id: "".concat(_this.id, "-out"),
|
|
48
|
+
label: "".concat(_this.name, "-\u6362\u51FA"),
|
|
49
|
+
value: /*#__PURE__*/React.createElement(BsGoodsTable, {
|
|
50
|
+
type: _this.type,
|
|
51
|
+
list: wdtExchangeGoods || [],
|
|
52
|
+
showHeader: ((_this$componentConfig = _this.componentConfig) === null || _this$componentConfig === void 0 ? void 0 : _this$componentConfig.showHeader) || []
|
|
53
|
+
})
|
|
54
|
+
})) : null;
|
|
55
|
+
});
|
|
56
|
+
_defineProperty(this, "renderPc", function () {
|
|
57
|
+
return null;
|
|
58
|
+
});
|
|
59
|
+
_defineProperty(this, "renderLog", function (r) {
|
|
60
|
+
var _r, _this$componentConfig2;
|
|
61
|
+
return /*#__PURE__*/React.createElement(React.Fragment, null, r !== null && r !== void 0 && (_r = r["".concat(_this.id, "_wdtExchangeGoods")]) !== null && _r !== void 0 && _r.length ? /*#__PURE__*/React.createElement("div", null, "\u6362\u51FA\u5546\u54C1\uFF1A", /*#__PURE__*/React.createElement(BsGoodsTable, {
|
|
62
|
+
type: _this.type,
|
|
63
|
+
list: (r === null || r === void 0 ? void 0 : r["".concat(_this.id, "_wdtExchangeGoods")]) || [],
|
|
64
|
+
showHeader: ((_this$componentConfig2 = _this.componentConfig) === null || _this$componentConfig2 === void 0 ? void 0 : _this$componentConfig2.showHeader) || []
|
|
65
|
+
})) : null, r !== null && r !== void 0 && r["".concat(_this.id, "_shopCode")] ? /*#__PURE__*/React.createElement("div", null, "\u5E97\u94FAid:", r === null || r === void 0 ? void 0 : r["".concat(_this.id, "_shopCode")]) : null);
|
|
66
|
+
});
|
|
67
|
+
_defineProperty(this, "getComponentValue", function (r) {
|
|
68
|
+
return {
|
|
69
|
+
wdtExchangeGoods: r === null || r === void 0 ? void 0 : r["".concat(_this.id, "_wdtExchangeGoods")]
|
|
70
|
+
};
|
|
71
|
+
});
|
|
72
|
+
_defineProperty(this, "renderExport", function (value, record) {
|
|
73
|
+
return null;
|
|
74
|
+
});
|
|
75
|
+
_defineProperty(this, "editRender", function (p) {
|
|
76
|
+
var _this$componentConfig3, _this$effects, _this$effects2, _this$effects3;
|
|
77
|
+
return /*#__PURE__*/React.createElement(GetFormItem, {
|
|
78
|
+
title: _this.name,
|
|
79
|
+
name: _this.id,
|
|
80
|
+
rules: _this.rules,
|
|
81
|
+
required: false,
|
|
82
|
+
hidden: p === null || p === void 0 ? void 0 : p.hidden,
|
|
83
|
+
display: p === null || p === void 0 ? void 0 : p.display,
|
|
84
|
+
component: /*#__PURE__*/React.createElement(CommonExchangeGoods, _extends({}, _this.componentConfig, {
|
|
85
|
+
maxLength: ((_this$componentConfig3 = _this.componentConfig) === null || _this$componentConfig3 === void 0 ? void 0 : _this$componentConfig3.maxLength) || 20,
|
|
86
|
+
shopId: (_this$effects = _this.effects) === null || _this$effects === void 0 ? void 0 : _this$effects.shopId,
|
|
87
|
+
shopList: ((_this$effects2 = _this.effects) === null || _this$effects2 === void 0 ? void 0 : _this$effects2.shopList) || [],
|
|
88
|
+
companyKey: (_this$effects3 = _this.effects) === null || _this$effects3 === void 0 ? void 0 : _this$effects3.companyKey,
|
|
89
|
+
width: "90%",
|
|
90
|
+
type: "WDT_EXCHANGE_GOODS"
|
|
91
|
+
}))
|
|
92
|
+
});
|
|
93
|
+
});
|
|
94
|
+
_defineProperty(this, "filterConfig", function (item) {
|
|
95
|
+
return [{
|
|
96
|
+
searchDefaultConditions: SYMBOL.like,
|
|
97
|
+
type: item.type,
|
|
98
|
+
id: "".concat(item.id, "_wdtExchangeGoods"),
|
|
99
|
+
name: "".concat(_this.name, "-\u6362\u51FA"),
|
|
100
|
+
filterComponentType: "Input"
|
|
101
|
+
}];
|
|
102
|
+
});
|
|
103
|
+
this.name = options.name;
|
|
104
|
+
this.id = options.id;
|
|
105
|
+
this.sortField = "".concat(options.id);
|
|
106
|
+
this.formField = "".concat(options.id);
|
|
107
|
+
this.type = options.type;
|
|
108
|
+
this.effects = options === null || options === void 0 ? void 0 : options.effects;
|
|
109
|
+
this.isCombinationComponent = true;
|
|
110
|
+
this.canSort = false;
|
|
111
|
+
// this.wdtType = new BsType({
|
|
112
|
+
// ...options,
|
|
113
|
+
// id: `${options.id}_wdtExchangeType`,
|
|
114
|
+
// name: "换货类型",
|
|
115
|
+
// });
|
|
116
|
+
// this.wdtMemo = new BsMemo({
|
|
117
|
+
// ...options,
|
|
118
|
+
// id: `${options.id}_wdtExchangeType_memo`,
|
|
119
|
+
// name: "换货备注",
|
|
120
|
+
// });
|
|
121
|
+
this.returnGoods = new CommonHeaderGoods(_objectSpread(_objectSpread({}, options), {}, {
|
|
122
|
+
id: "".concat(options.id, "_wdtExchangeGoods"),
|
|
123
|
+
name: "商品信息"
|
|
124
|
+
}));
|
|
125
|
+
// this.swapOutGoods = new BsHeaderGood({
|
|
126
|
+
// ...options,
|
|
127
|
+
// id: `${options.id}_wdtExchangeSwapOutGoods`,
|
|
128
|
+
// name: "换出商品",
|
|
129
|
+
// });
|
|
130
|
+
// this.giftGoods = new BsHeaderGood({
|
|
131
|
+
// ...options,
|
|
132
|
+
// id: `${options.id}_wdtExchangeGiftGoods`,
|
|
133
|
+
// name: "赠品商品",
|
|
134
|
+
// });
|
|
135
|
+
this.children = [
|
|
136
|
+
// this.wdtType,
|
|
137
|
+
// this.wdtMemo,
|
|
138
|
+
this.returnGoods
|
|
139
|
+
// this.swapOutGoods,
|
|
140
|
+
// this.giftGoods,
|
|
141
|
+
];
|
|
142
|
+
|
|
143
|
+
this.componentConfig = options === null || options === void 0 ? void 0 : options.componentConfig;
|
|
144
|
+
this.rules = [{
|
|
145
|
+
required: (_this$componentConfig4 = this.componentConfig) === null || _this$componentConfig4 === void 0 ? void 0 : _this$componentConfig4.required,
|
|
146
|
+
validator: function validator(_, value) {
|
|
147
|
+
var _this$componentConfig5, _value$wdtExchangeGoo;
|
|
148
|
+
if ((_this$componentConfig5 = _this.componentConfig) !== null && _this$componentConfig5 !== void 0 && _this$componentConfig5.required && !(value !== null && value !== void 0 && (_value$wdtExchangeGoo = value.wdtExchangeGoods) !== null && _value$wdtExchangeGoo !== void 0 && _value$wdtExchangeGoo.length)) {
|
|
149
|
+
return Promise.reject(new Error("请选择wdt换货商品"));
|
|
150
|
+
}
|
|
151
|
+
return Promise.resolve();
|
|
152
|
+
}
|
|
153
|
+
}
|
|
154
|
+
/* {
|
|
155
|
+
validator: (_: any, value: any) => {
|
|
156
|
+
if (value && ["2", "4"].includes(value?.wdtExchangeType?.[0])) {
|
|
157
|
+
const hasNoGood = (value?.wdtExchangeGoods || []).some(
|
|
158
|
+
(item: any) => {
|
|
159
|
+
return !item?.wdtExchangeGoods.length;
|
|
160
|
+
}
|
|
161
|
+
);
|
|
162
|
+
if (hasNoGood) {
|
|
163
|
+
return Promise.reject(new Error("请选择退回商品后再提交工单"));
|
|
164
|
+
}
|
|
165
|
+
const hasLen = (value?.wdtExchangeGoods || []).some(
|
|
166
|
+
(item: any) => {
|
|
167
|
+
return (
|
|
168
|
+
item?.wdtExchangeGoods.length !==
|
|
169
|
+
item?.wdtExchangeSwapOutGoods.length
|
|
170
|
+
);
|
|
171
|
+
}
|
|
172
|
+
);
|
|
173
|
+
if (hasLen) {
|
|
174
|
+
return Promise.reject(new Error("请核对商品数据,再提交工单"));
|
|
175
|
+
}
|
|
176
|
+
}
|
|
177
|
+
return Promise.resolve();
|
|
178
|
+
},
|
|
179
|
+
},*/];
|
|
180
|
+
|
|
181
|
+
this.dataType = "object";
|
|
182
|
+
});
|
|
183
|
+
export default WDTExchange;
|
|
@@ -0,0 +1,54 @@
|
|
|
1
|
+
import { ComponentInterface, PickOption, ColumnConfig, Record } from "../../../type";
|
|
2
|
+
import React from "react";
|
|
3
|
+
import { BsType } from "../../BS/common/index";
|
|
4
|
+
import CommonHeaderGoods from "../../CommonHeaderGood";
|
|
5
|
+
declare class WdtReturn implements ComponentInterface {
|
|
6
|
+
name: string;
|
|
7
|
+
id: string;
|
|
8
|
+
sortField: string;
|
|
9
|
+
type: string;
|
|
10
|
+
rules: any[];
|
|
11
|
+
componentConfig: ComponentInterface["componentConfig"];
|
|
12
|
+
effects: ComponentInterface["effects"];
|
|
13
|
+
isCombinationComponent: boolean;
|
|
14
|
+
formField: string;
|
|
15
|
+
canSort: boolean;
|
|
16
|
+
children: ComponentInterface[];
|
|
17
|
+
dataType: ComponentInterface["dataType"];
|
|
18
|
+
wdtType: BsType;
|
|
19
|
+
reissueGoods: CommonHeaderGoods;
|
|
20
|
+
constructor(options: PickOption);
|
|
21
|
+
renderClient: (record: any) => React.JSX.Element | null;
|
|
22
|
+
renderPc: () => null;
|
|
23
|
+
renderLog: (r: Record) => React.JSX.Element;
|
|
24
|
+
getComponentValue: (r: Record) => any;
|
|
25
|
+
renderExport: () => null;
|
|
26
|
+
editRender: (p: any) => React.JSX.Element;
|
|
27
|
+
filterConfig: (item: ColumnConfig) => ({
|
|
28
|
+
searchDefaultConditions: "in";
|
|
29
|
+
type: string;
|
|
30
|
+
id: string;
|
|
31
|
+
name: string;
|
|
32
|
+
filterComponentType: "Cascader";
|
|
33
|
+
props: {
|
|
34
|
+
options: any[] | undefined;
|
|
35
|
+
fieldNames: {
|
|
36
|
+
label: string;
|
|
37
|
+
value: string;
|
|
38
|
+
children: string;
|
|
39
|
+
};
|
|
40
|
+
};
|
|
41
|
+
formatFilterValue: (val: Array<string>) => string[] | undefined;
|
|
42
|
+
filterFn: (value: string) => (i: Record) => boolean;
|
|
43
|
+
} | {
|
|
44
|
+
searchDefaultConditions: "like";
|
|
45
|
+
type: string;
|
|
46
|
+
id: string;
|
|
47
|
+
name: string;
|
|
48
|
+
filterComponentType: "Input";
|
|
49
|
+
props?: undefined;
|
|
50
|
+
formatFilterValue?: undefined;
|
|
51
|
+
filterFn?: undefined;
|
|
52
|
+
})[];
|
|
53
|
+
}
|
|
54
|
+
export default WdtReturn;
|