@kmkf-fe-packages/services-components 0.8.17-alpha.25 → 0.8.17-alpha.27
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/components/BS/DeliveryNo/index.js +8 -8
- package/dist/esm/components/BS/common/BsHeaderGood.js +1 -0
- package/dist/esm/components/Common/index.d.ts +1 -0
- package/dist/esm/components/Common/index.js +59 -33
- package/dist/esm/components/CommonMultiStatus/index.d.ts +32 -0
- package/dist/esm/components/CommonMultiStatus/index.js +159 -0
- package/dist/esm/components/CommonSystemOrder/index.d.ts +32 -0
- package/dist/esm/components/CommonSystemOrder/index.js +151 -0
- package/dist/esm/factory.d.ts +3 -3
- package/dist/esm/factory.js +85 -84
- package/dist/esm/index.d.ts +3 -2
- package/dist/esm/index.js +3 -2
- package/package.json +4 -4
|
@@ -9,8 +9,8 @@ function _toPrimitive(input, hint) { if (_typeof(input) !== "object" || input ==
|
|
|
9
9
|
import React from "react";
|
|
10
10
|
import some from "lodash/some";
|
|
11
11
|
import GetFormItem from "../../GetFormItem";
|
|
12
|
-
import {
|
|
13
|
-
import {
|
|
12
|
+
import { CommonOrderContent } from "../../Common";
|
|
13
|
+
import { CommonSystemOrder } from "@kmkf-fe-packages/basic-components";
|
|
14
14
|
import ItemView from "../../../commonComponents/ItemView";
|
|
15
15
|
import { isNull, filterFn as _filterFn } from "@kmkf-fe-packages/kmkf-utils";
|
|
16
16
|
import { SYMBOL } from "../../../constant";
|
|
@@ -45,9 +45,9 @@ var DeliveryNo = /*#__PURE__*/_createClass(function DeliveryNo(options) {
|
|
|
45
45
|
return isShow ? /*#__PURE__*/React.createElement(ItemView, {
|
|
46
46
|
id: _this.id,
|
|
47
47
|
label: _this.name,
|
|
48
|
-
value: /*#__PURE__*/React.createElement(
|
|
48
|
+
value: /*#__PURE__*/React.createElement(CommonOrderContent, {
|
|
49
49
|
list: record === null || record === void 0 ? void 0 : record[_this.id],
|
|
50
|
-
type:
|
|
50
|
+
type: 1
|
|
51
51
|
})
|
|
52
52
|
}) : null;
|
|
53
53
|
});
|
|
@@ -59,9 +59,9 @@ var DeliveryNo = /*#__PURE__*/_createClass(function DeliveryNo(options) {
|
|
|
59
59
|
onClick: function onClick(e) {
|
|
60
60
|
return e.stopPropagation();
|
|
61
61
|
}
|
|
62
|
-
}, /*#__PURE__*/React.createElement(
|
|
62
|
+
}, /*#__PURE__*/React.createElement(CommonOrderContent, {
|
|
63
63
|
list: list,
|
|
64
|
-
type:
|
|
64
|
+
type: 1
|
|
65
65
|
}));
|
|
66
66
|
});
|
|
67
67
|
_defineProperty(this, "renderLog", function (r) {
|
|
@@ -89,8 +89,8 @@ var DeliveryNo = /*#__PURE__*/_createClass(function DeliveryNo(options) {
|
|
|
89
89
|
rules: _this.rules,
|
|
90
90
|
hidden: p === null || p === void 0 ? void 0 : p.hidden,
|
|
91
91
|
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,
|
|
92
|
-
component: /*#__PURE__*/React.createElement(
|
|
93
|
-
type:
|
|
92
|
+
component: /*#__PURE__*/React.createElement(CommonSystemOrder, _extends({}, _this.componentConfig, {
|
|
93
|
+
type: 1
|
|
94
94
|
}))
|
|
95
95
|
});
|
|
96
96
|
});
|
|
@@ -15,6 +15,7 @@ export declare const showImage: ({ item, type, index, }: {
|
|
|
15
15
|
export declare const ShowTotalImage: ({ total, allImage, type }: any) => React.JSX.Element;
|
|
16
16
|
export declare const GoodImage: ({ list, type }: any) => React.JSX.Element | null;
|
|
17
17
|
export declare const JstGoodImage: ({ list, type }: any) => any;
|
|
18
|
+
export declare const CommonOrderContent: ({ list, type }: any) => any;
|
|
18
19
|
export declare const BsGoodImage: ({ item, index }: {
|
|
19
20
|
item: any;
|
|
20
21
|
index: number;
|
|
@@ -229,10 +229,36 @@ export var JstGoodImage = function JstGoodImage(_ref6) {
|
|
|
229
229
|
}, "\u5305\u88F9".concat(index + 1), ":")), type === 1 ? /*#__PURE__*/React.createElement("span", null, company && item.logisticsCode ? [company, item.logisticsCode].join("/") : company ? company : item.logisticsCode) : null, type === 2 ? /*#__PURE__*/React.createElement("span", null, item.supplyName && item.supplyId ? [item.supplyId, item.supplyName].join("/") : item.supplyId ? item.supplyId : item.supplyName) : null, type === 3 ? /*#__PURE__*/React.createElement("span", null, item.sendName && item.sendId ? [item.sendId, item.sendName].join("/") : item.sendId ? item.sendId : item.sendName) : null, type === 4 ? /*#__PURE__*/React.createElement("span", null, (item === null || item === void 0 ? void 0 : item.deliveryNo) || "") : null));
|
|
230
230
|
}) : null;
|
|
231
231
|
};
|
|
232
|
+
export var CommonOrderContent = function CommonOrderContent(_ref7) {
|
|
233
|
+
var _ref7$list = _ref7.list,
|
|
234
|
+
list = _ref7$list === void 0 ? [] : _ref7$list,
|
|
235
|
+
type = _ref7.type;
|
|
236
|
+
var orderContent = function orderContent(item, index) {
|
|
237
|
+
return /*#__PURE__*/React.createElement("div", null, /*#__PURE__*/React.createElement("div", {
|
|
238
|
+
style: {
|
|
239
|
+
textAlign: "center"
|
|
240
|
+
}
|
|
241
|
+
}, "\u7CFB\u7EDF\u8BA2\u5355\u53F7\uFF1A", item.systemOrderId));
|
|
242
|
+
};
|
|
243
|
+
return list !== null && list !== void 0 && list.length ? (list || []).map(function (item, index) {
|
|
244
|
+
return /*#__PURE__*/React.createElement("div", null, /*#__PURE__*/React.createElement(Space, null, /*#__PURE__*/React.createElement(Popover, {
|
|
245
|
+
content: orderContent(item, index),
|
|
246
|
+
overlayStyle: {
|
|
247
|
+
zIndex: 1080
|
|
248
|
+
}
|
|
249
|
+
}, /*#__PURE__*/React.createElement("span", {
|
|
250
|
+
key: index,
|
|
251
|
+
style: {
|
|
252
|
+
color: "#1890ff",
|
|
253
|
+
cursor: "pointer"
|
|
254
|
+
}
|
|
255
|
+
}, "\u7CFB\u7EDF\u8BA2\u5355\u53F7".concat(index + 1), ":")), type === 1 ? /*#__PURE__*/React.createElement("span", null, (item === null || item === void 0 ? void 0 : item.deliveryNo) || "") : null));
|
|
256
|
+
}) : null;
|
|
257
|
+
};
|
|
232
258
|
//bs商品展示 todo
|
|
233
|
-
export var BsGoodImage = function BsGoodImage(
|
|
234
|
-
var item =
|
|
235
|
-
index =
|
|
259
|
+
export var BsGoodImage = function BsGoodImage(_ref8) {
|
|
260
|
+
var item = _ref8.item,
|
|
261
|
+
index = _ref8.index;
|
|
236
262
|
var picUrl = item.picUrl || defaultImg;
|
|
237
263
|
var keyMap = {
|
|
238
264
|
name: "bs名称",
|
|
@@ -263,9 +289,9 @@ export var BsGoodImage = function BsGoodImage(_ref7) {
|
|
|
263
289
|
})));
|
|
264
290
|
};
|
|
265
291
|
//bs换货 todo
|
|
266
|
-
export var BsExchangeList = function BsExchangeList(
|
|
267
|
-
var list =
|
|
268
|
-
showHeader =
|
|
292
|
+
export var BsExchangeList = function BsExchangeList(_ref9) {
|
|
293
|
+
var list = _ref9.list,
|
|
294
|
+
showHeader = _ref9.showHeader;
|
|
269
295
|
return /*#__PURE__*/React.createElement("div", {
|
|
270
296
|
className: styles.bsImgBox
|
|
271
297
|
}, list.map(function (item) {
|
|
@@ -289,11 +315,11 @@ export var BsGoodPic = function BsGoodPic(list) {
|
|
|
289
315
|
});
|
|
290
316
|
});
|
|
291
317
|
};
|
|
292
|
-
export var BsGoodsTable = function BsGoodsTable(
|
|
293
|
-
var list =
|
|
294
|
-
showHeader =
|
|
295
|
-
|
|
296
|
-
text =
|
|
318
|
+
export var BsGoodsTable = function BsGoodsTable(_ref10) {
|
|
319
|
+
var list = _ref10.list,
|
|
320
|
+
showHeader = _ref10.showHeader,
|
|
321
|
+
_ref10$text = _ref10.text,
|
|
322
|
+
text = _ref10$text === void 0 ? "" : _ref10$text;
|
|
297
323
|
//商品信息
|
|
298
324
|
var GOODS_INFO_COLUMNS = function GOODS_INFO_COLUMNS() {
|
|
299
325
|
var text = arguments.length > 0 && arguments[0] !== undefined ? arguments[0] : "";
|
|
@@ -303,24 +329,18 @@ export var BsGoodsTable = function BsGoodsTable(_ref9) {
|
|
|
303
329
|
align: "center",
|
|
304
330
|
ellipsis: true,
|
|
305
331
|
width: 100
|
|
306
|
-
}, {
|
|
307
|
-
dataIndex: "pic",
|
|
308
|
-
title: "\u56FE\u7247",
|
|
309
|
-
align: "center",
|
|
310
|
-
ellipsis: true,
|
|
311
|
-
width: 100,
|
|
312
|
-
render: function render(val) {
|
|
313
|
-
return /*#__PURE__*/React.createElement(Image, {
|
|
314
|
-
width: 60,
|
|
315
|
-
src: val
|
|
316
|
-
});
|
|
317
|
-
}
|
|
318
332
|
}, {
|
|
319
333
|
dataIndex: "skuName",
|
|
320
334
|
title: "".concat(text, "sku\u540D\u79F0"),
|
|
321
335
|
align: "center",
|
|
322
336
|
ellipsis: true,
|
|
323
337
|
width: 200
|
|
338
|
+
}, {
|
|
339
|
+
dataIndex: "sku",
|
|
340
|
+
title: "".concat(text, "sku\u7F16\u7801"),
|
|
341
|
+
align: "center",
|
|
342
|
+
ellipsis: true,
|
|
343
|
+
width: 100
|
|
324
344
|
}, {
|
|
325
345
|
dataIndex: "name",
|
|
326
346
|
title: "".concat(text, "\u540D\u79F0"),
|
|
@@ -328,14 +348,20 @@ export var BsGoodsTable = function BsGoodsTable(_ref9) {
|
|
|
328
348
|
ellipsis: true,
|
|
329
349
|
width: 200
|
|
330
350
|
}, {
|
|
331
|
-
dataIndex: "
|
|
332
|
-
title: "
|
|
351
|
+
dataIndex: "pic",
|
|
352
|
+
title: "\u56FE\u7247",
|
|
333
353
|
align: "center",
|
|
334
354
|
ellipsis: true,
|
|
335
|
-
width: 100
|
|
355
|
+
width: 100,
|
|
356
|
+
render: function render(val) {
|
|
357
|
+
return /*#__PURE__*/React.createElement(Image, {
|
|
358
|
+
width: 60,
|
|
359
|
+
src: val
|
|
360
|
+
});
|
|
361
|
+
}
|
|
336
362
|
}, {
|
|
337
|
-
dataIndex: "
|
|
338
|
-
title: "".concat(text, "
|
|
363
|
+
dataIndex: "code",
|
|
364
|
+
title: "".concat(text, "\u7F16\u7801"),
|
|
339
365
|
align: "center",
|
|
340
366
|
ellipsis: true,
|
|
341
367
|
width: 100
|
|
@@ -394,9 +420,9 @@ export var BsGoodsTable = function BsGoodsTable(_ref9) {
|
|
|
394
420
|
}
|
|
395
421
|
});
|
|
396
422
|
};
|
|
397
|
-
export var FileRender = function FileRender(
|
|
398
|
-
var
|
|
399
|
-
fileList =
|
|
423
|
+
export var FileRender = function FileRender(_ref11) {
|
|
424
|
+
var _ref11$fileList = _ref11.fileList,
|
|
425
|
+
fileList = _ref11$fileList === void 0 ? [] : _ref11$fileList;
|
|
400
426
|
var _useState3 = useState(false),
|
|
401
427
|
_useState4 = _slicedToArray(_useState3, 2),
|
|
402
428
|
visible = _useState4[0],
|
|
@@ -474,8 +500,8 @@ export var FileRender = function FileRender(_ref10) {
|
|
|
474
500
|
src: fileUrl
|
|
475
501
|
})));
|
|
476
502
|
};
|
|
477
|
-
export var BsSystemOrderTable = function BsSystemOrderTable(
|
|
478
|
-
var value =
|
|
503
|
+
export var BsSystemOrderTable = function BsSystemOrderTable(_ref12) {
|
|
504
|
+
var value = _ref12.value;
|
|
479
505
|
var columns = [{
|
|
480
506
|
dataIndex: "billType",
|
|
481
507
|
title: "单据类型"
|
|
@@ -0,0 +1,32 @@
|
|
|
1
|
+
import { ComponentInterface, PickOption, ColumnConfig, ALignType, Record } from "../../type";
|
|
2
|
+
import React from "react";
|
|
3
|
+
declare class CommonSystemOrder implements ComponentInterface {
|
|
4
|
+
name: string;
|
|
5
|
+
id: string;
|
|
6
|
+
sortField: string;
|
|
7
|
+
type: string;
|
|
8
|
+
rules: any[];
|
|
9
|
+
componentConfig: ComponentInterface["componentConfig"];
|
|
10
|
+
align: ALignType;
|
|
11
|
+
isCombinationComponent: boolean;
|
|
12
|
+
formField: string;
|
|
13
|
+
canSort: boolean;
|
|
14
|
+
children: ComponentInterface[];
|
|
15
|
+
dataType: ComponentInterface["dataType"];
|
|
16
|
+
constructor(options: PickOption);
|
|
17
|
+
renderClient: (record: any) => React.JSX.Element | null;
|
|
18
|
+
renderPc: (value: any, record: Record) => React.JSX.Element;
|
|
19
|
+
renderLog: (r: Record) => React.JSX.Element | null;
|
|
20
|
+
getComponentValue: (r: Record) => any;
|
|
21
|
+
renderExport: (value: any, record: any) => any;
|
|
22
|
+
editRender: (p: any) => React.JSX.Element;
|
|
23
|
+
filterConfig: (item: ColumnConfig) => {
|
|
24
|
+
searchDefaultConditions: "like";
|
|
25
|
+
type: string;
|
|
26
|
+
id: string;
|
|
27
|
+
name: string;
|
|
28
|
+
filterComponentType: "Input";
|
|
29
|
+
filterFn: (value: string) => (i: Record) => boolean;
|
|
30
|
+
}[];
|
|
31
|
+
}
|
|
32
|
+
export default CommonSystemOrder;
|
|
@@ -0,0 +1,159 @@
|
|
|
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 some from "lodash/some";
|
|
13
|
+
import GetFormItem from "../GetFormItem";
|
|
14
|
+
import { CommonOrderContent } from "../Common";
|
|
15
|
+
import { CommonMultiStatus as Status } from "@kmkf-fe-packages/basic-components";
|
|
16
|
+
import ItemView from "../../commonComponents/ItemView";
|
|
17
|
+
import { isNull, filterFn as _filterFn } from "@kmkf-fe-packages/kmkf-utils";
|
|
18
|
+
import { SYMBOL } from "../../constant";
|
|
19
|
+
var typeMap = {
|
|
20
|
+
RETURN_GOODS_STATUS: {
|
|
21
|
+
options: [{
|
|
22
|
+
value: "成功",
|
|
23
|
+
label: "成功",
|
|
24
|
+
color: "#52c41a"
|
|
25
|
+
}, {
|
|
26
|
+
value: "失败",
|
|
27
|
+
label: "失败",
|
|
28
|
+
color: "#ff4d4f"
|
|
29
|
+
}],
|
|
30
|
+
key: "returnGoodsStatusList",
|
|
31
|
+
code: "returnGoodsStatusValue",
|
|
32
|
+
name: "退货状态",
|
|
33
|
+
type: 1,
|
|
34
|
+
valueKey: "status",
|
|
35
|
+
failValue: "失败"
|
|
36
|
+
}
|
|
37
|
+
};
|
|
38
|
+
var CommonSystemOrder = /*#__PURE__*/_createClass(function CommonSystemOrder(options) {
|
|
39
|
+
var _this = this,
|
|
40
|
+
_typeMap$options$type,
|
|
41
|
+
_typeMap$options$type2,
|
|
42
|
+
_this$componentConfig3;
|
|
43
|
+
_classCallCheck(this, CommonSystemOrder);
|
|
44
|
+
_defineProperty(this, "name", void 0);
|
|
45
|
+
_defineProperty(this, "id", void 0);
|
|
46
|
+
_defineProperty(this, "sortField", void 0);
|
|
47
|
+
_defineProperty(this, "type", void 0);
|
|
48
|
+
_defineProperty(this, "rules", void 0);
|
|
49
|
+
_defineProperty(this, "componentConfig", void 0);
|
|
50
|
+
_defineProperty(this, "align", void 0);
|
|
51
|
+
_defineProperty(this, "isCombinationComponent", void 0);
|
|
52
|
+
_defineProperty(this, "formField", void 0);
|
|
53
|
+
_defineProperty(this, "canSort", void 0);
|
|
54
|
+
_defineProperty(this, "children", void 0);
|
|
55
|
+
_defineProperty(this, "dataType", void 0);
|
|
56
|
+
_defineProperty(this, "renderClient", function (record) {
|
|
57
|
+
var _typeMap$_this$type;
|
|
58
|
+
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) {
|
|
59
|
+
return !isNull(item);
|
|
60
|
+
}) : false;
|
|
61
|
+
return isShow ? /*#__PURE__*/React.createElement(ItemView, {
|
|
62
|
+
id: _this.id,
|
|
63
|
+
label: _this.name,
|
|
64
|
+
value: /*#__PURE__*/React.createElement(CommonOrderContent, {
|
|
65
|
+
list: record === null || record === void 0 ? void 0 : record[_this.id],
|
|
66
|
+
type: (_typeMap$_this$type = typeMap[_this.type]) === null || _typeMap$_this$type === void 0 ? void 0 : _typeMap$_this$type.type
|
|
67
|
+
})
|
|
68
|
+
}) : null;
|
|
69
|
+
});
|
|
70
|
+
_defineProperty(this, "renderPc", function (value, record) {
|
|
71
|
+
var _typeMap$_this$type2, _typeMap$_this$type3;
|
|
72
|
+
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)];
|
|
73
|
+
//兼容多个商品
|
|
74
|
+
return /*#__PURE__*/React.createElement("span", {
|
|
75
|
+
onClick: function onClick(e) {
|
|
76
|
+
return e.stopPropagation();
|
|
77
|
+
}
|
|
78
|
+
}, /*#__PURE__*/React.createElement(CommonOrderContent, {
|
|
79
|
+
list: list,
|
|
80
|
+
type: (_typeMap$_this$type3 = typeMap[_this.type]) === null || _typeMap$_this$type3 === void 0 ? void 0 : _typeMap$_this$type3.type
|
|
81
|
+
}));
|
|
82
|
+
});
|
|
83
|
+
_defineProperty(this, "renderLog", function (r) {
|
|
84
|
+
var _typeMap$_this$type4;
|
|
85
|
+
var list = r === null || r === void 0 ? void 0 : r["".concat(_this.id, "_").concat((_typeMap$_this$type4 = typeMap[_this.type]) === null || _typeMap$_this$type4 === void 0 ? void 0 : _typeMap$_this$type4.key)];
|
|
86
|
+
if (isNull(list)) return null;
|
|
87
|
+
return _this.renderPc(undefined, r);
|
|
88
|
+
});
|
|
89
|
+
_defineProperty(this, "getComponentValue", function (r) {
|
|
90
|
+
var _typeMap$_this$type5;
|
|
91
|
+
return r === null || r === void 0 ? void 0 : r["".concat(_this.id, "_").concat((_typeMap$_this$type5 = typeMap[_this.type]) === null || _typeMap$_this$type5 === void 0 ? void 0 : _typeMap$_this$type5.key)];
|
|
92
|
+
});
|
|
93
|
+
_defineProperty(this, "renderExport", function (value, record) {
|
|
94
|
+
var _typeMap$_this$type6;
|
|
95
|
+
var list = record === null || record === void 0 ? void 0 : record["".concat(_this.id, "_").concat((_typeMap$_this$type6 = typeMap[_this.type]) === null || _typeMap$_this$type6 === void 0 ? void 0 : _typeMap$_this$type6.key)];
|
|
96
|
+
return (list || []).map(function (item) {
|
|
97
|
+
var _typeMap$_this$type7;
|
|
98
|
+
return item === null || item === void 0 ? void 0 : item[(_typeMap$_this$type7 = typeMap[_this.type]) === null || _typeMap$_this$type7 === void 0 ? void 0 : _typeMap$_this$type7.valueKey];
|
|
99
|
+
}).join(",");
|
|
100
|
+
});
|
|
101
|
+
_defineProperty(this, "editRender", function (p) {
|
|
102
|
+
var _this$componentConfig, _this$componentConfig2, _typeMap$_this$type8;
|
|
103
|
+
return /*#__PURE__*/React.createElement(GetFormItem, {
|
|
104
|
+
title: _this.name,
|
|
105
|
+
name: _this.id,
|
|
106
|
+
rules: _this.rules,
|
|
107
|
+
hidden: p === null || p === void 0 ? void 0 : p.hidden,
|
|
108
|
+
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,
|
|
109
|
+
component: /*#__PURE__*/React.createElement(Status, _extends({}, _this.componentConfig, {
|
|
110
|
+
type: (_typeMap$_this$type8 = typeMap[_this.type]) === null || _typeMap$_this$type8 === void 0 ? void 0 : _typeMap$_this$type8.type,
|
|
111
|
+
failValue: typeMap[_this.type].failValue
|
|
112
|
+
}))
|
|
113
|
+
});
|
|
114
|
+
});
|
|
115
|
+
_defineProperty(this, "filterConfig", function (item) {
|
|
116
|
+
var _typeMap$_this$type9;
|
|
117
|
+
return [{
|
|
118
|
+
searchDefaultConditions: SYMBOL.like,
|
|
119
|
+
type: item.type,
|
|
120
|
+
id: "".concat(item.id, "_").concat((_typeMap$_this$type9 = typeMap[_this.type]) === null || _typeMap$_this$type9 === void 0 ? void 0 : _typeMap$_this$type9.code),
|
|
121
|
+
name: "".concat(_this.name),
|
|
122
|
+
filterComponentType: "Input",
|
|
123
|
+
filterFn: function filterFn(value) {
|
|
124
|
+
return function (i) {
|
|
125
|
+
var _typeMap$_this$type10;
|
|
126
|
+
return _filterFn.filterSplitComma(_filterFn.filterTableListItemColumnValue(i, item.id, (_typeMap$_this$type10 = typeMap[_this.type]) === null || _typeMap$_this$type10 === void 0 ? void 0 : _typeMap$_this$type10.code), value);
|
|
127
|
+
};
|
|
128
|
+
}
|
|
129
|
+
}];
|
|
130
|
+
});
|
|
131
|
+
this.name = options.name;
|
|
132
|
+
this.id = options.id;
|
|
133
|
+
this.sortField = "".concat(options.id, "_").concat((_typeMap$options$type = typeMap[options.type]) === null || _typeMap$options$type === void 0 ? void 0 : _typeMap$options$type.key);
|
|
134
|
+
this.formField = "".concat(options.id, "_").concat((_typeMap$options$type2 = typeMap[options.type]) === null || _typeMap$options$type2 === void 0 ? void 0 : _typeMap$options$type2.key);
|
|
135
|
+
this.type = options.type;
|
|
136
|
+
this.componentConfig = _objectSpread(_objectSpread({}, options.componentConfig), {}, {
|
|
137
|
+
options: typeMap[options.type].options
|
|
138
|
+
});
|
|
139
|
+
this.isCombinationComponent = false;
|
|
140
|
+
this.canSort = false;
|
|
141
|
+
this.children = [];
|
|
142
|
+
this.dataType = "object";
|
|
143
|
+
this.rules = (_this$componentConfig3 = this.componentConfig) !== null && _this$componentConfig3 !== void 0 && _this$componentConfig3.required ? [{
|
|
144
|
+
required: true,
|
|
145
|
+
validator: function validator(_, value) {
|
|
146
|
+
var hasNo = (value || []).some(function (item) {
|
|
147
|
+
var _typeMap$_this$type11;
|
|
148
|
+
return item[(_typeMap$_this$type11 = typeMap[_this.type]) === null || _typeMap$_this$type11 === void 0 ? void 0 : _typeMap$_this$type11.valueKey];
|
|
149
|
+
});
|
|
150
|
+
if (!hasNo) {
|
|
151
|
+
var _typeMap$_this$type12;
|
|
152
|
+
return Promise.reject(new Error("\u81F3\u5C11\u586B\u5199\u4E00\u4E2A\u5B8C\u6574\u7684".concat((_typeMap$_this$type12 = typeMap[_this.type]) === null || _typeMap$_this$type12 === void 0 ? void 0 : _typeMap$_this$type12.name)));
|
|
153
|
+
}
|
|
154
|
+
return Promise.resolve();
|
|
155
|
+
}
|
|
156
|
+
}] : [];
|
|
157
|
+
this.align = "left";
|
|
158
|
+
});
|
|
159
|
+
export default CommonSystemOrder;
|
|
@@ -0,0 +1,32 @@
|
|
|
1
|
+
import { ComponentInterface, PickOption, ColumnConfig, ALignType, Record } from "../../type";
|
|
2
|
+
import React from "react";
|
|
3
|
+
declare class CommonSystemOrder implements ComponentInterface {
|
|
4
|
+
name: string;
|
|
5
|
+
id: string;
|
|
6
|
+
sortField: string;
|
|
7
|
+
type: string;
|
|
8
|
+
rules: any[];
|
|
9
|
+
componentConfig: ComponentInterface["componentConfig"];
|
|
10
|
+
align: ALignType;
|
|
11
|
+
isCombinationComponent: boolean;
|
|
12
|
+
formField: string;
|
|
13
|
+
canSort: boolean;
|
|
14
|
+
children: ComponentInterface[];
|
|
15
|
+
dataType: ComponentInterface["dataType"];
|
|
16
|
+
constructor(options: PickOption);
|
|
17
|
+
renderClient: (record: any) => React.JSX.Element | null;
|
|
18
|
+
renderPc: (value: any, record: Record) => React.JSX.Element;
|
|
19
|
+
renderLog: (r: Record) => React.JSX.Element | null;
|
|
20
|
+
getComponentValue: (r: Record) => any;
|
|
21
|
+
renderExport: (value: any, record: any) => any;
|
|
22
|
+
editRender: (p: any) => React.JSX.Element;
|
|
23
|
+
filterConfig: (item: ColumnConfig) => {
|
|
24
|
+
searchDefaultConditions: "like";
|
|
25
|
+
type: string;
|
|
26
|
+
id: string;
|
|
27
|
+
name: string;
|
|
28
|
+
filterComponentType: "Input";
|
|
29
|
+
filterFn: (value: string) => (i: Record) => boolean;
|
|
30
|
+
}[];
|
|
31
|
+
}
|
|
32
|
+
export default CommonSystemOrder;
|
|
@@ -0,0 +1,151 @@
|
|
|
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 _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); }
|
|
3
|
+
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); } }
|
|
4
|
+
function _createClass(Constructor, protoProps, staticProps) { if (protoProps) _defineProperties(Constructor.prototype, protoProps); if (staticProps) _defineProperties(Constructor, staticProps); Object.defineProperty(Constructor, "prototype", { writable: false }); return Constructor; }
|
|
5
|
+
function _classCallCheck(instance, Constructor) { if (!(instance instanceof Constructor)) { throw new TypeError("Cannot call a class as a function"); } }
|
|
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
|
+
function _toPropertyKey(arg) { var key = _toPrimitive(arg, "string"); return _typeof(key) === "symbol" ? key : String(key); }
|
|
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 "react";
|
|
10
|
+
import some from "lodash/some";
|
|
11
|
+
import GetFormItem from "../GetFormItem";
|
|
12
|
+
import { CommonOrderContent } from "../Common";
|
|
13
|
+
import { CommonSystemOrder as SystemOrder } from "@kmkf-fe-packages/basic-components";
|
|
14
|
+
import ItemView from "../../commonComponents/ItemView";
|
|
15
|
+
import { isNull, filterFn as _filterFn } from "@kmkf-fe-packages/kmkf-utils";
|
|
16
|
+
import { SYMBOL } from "../../constant";
|
|
17
|
+
var typeMap = {
|
|
18
|
+
BS_DELIVERY_NO: {
|
|
19
|
+
key: "deliveryNoList",
|
|
20
|
+
code: "deliveryNoIds",
|
|
21
|
+
name: "出库单",
|
|
22
|
+
type: 1,
|
|
23
|
+
valueKey: "deliveryNo"
|
|
24
|
+
},
|
|
25
|
+
RETURN_GOODS_TRADE_ID: {
|
|
26
|
+
key: "returnGoodsTradeIdList",
|
|
27
|
+
code: "returnGoodsTradeIds",
|
|
28
|
+
name: "退货单id",
|
|
29
|
+
type: 2,
|
|
30
|
+
valueKey: "returnGoodsTradeId"
|
|
31
|
+
}
|
|
32
|
+
};
|
|
33
|
+
var CommonSystemOrder = /*#__PURE__*/_createClass(function CommonSystemOrder(options) {
|
|
34
|
+
var _this = this,
|
|
35
|
+
_typeMap$options$type,
|
|
36
|
+
_typeMap$options$type2,
|
|
37
|
+
_this$componentConfig3;
|
|
38
|
+
_classCallCheck(this, CommonSystemOrder);
|
|
39
|
+
_defineProperty(this, "name", void 0);
|
|
40
|
+
_defineProperty(this, "id", void 0);
|
|
41
|
+
_defineProperty(this, "sortField", void 0);
|
|
42
|
+
_defineProperty(this, "type", void 0);
|
|
43
|
+
_defineProperty(this, "rules", void 0);
|
|
44
|
+
_defineProperty(this, "componentConfig", void 0);
|
|
45
|
+
_defineProperty(this, "align", void 0);
|
|
46
|
+
_defineProperty(this, "isCombinationComponent", void 0);
|
|
47
|
+
_defineProperty(this, "formField", void 0);
|
|
48
|
+
_defineProperty(this, "canSort", void 0);
|
|
49
|
+
_defineProperty(this, "children", void 0);
|
|
50
|
+
_defineProperty(this, "dataType", void 0);
|
|
51
|
+
_defineProperty(this, "renderClient", function (record) {
|
|
52
|
+
var _typeMap$_this$type;
|
|
53
|
+
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) {
|
|
54
|
+
return !isNull(item);
|
|
55
|
+
}) : false;
|
|
56
|
+
return isShow ? /*#__PURE__*/React.createElement(ItemView, {
|
|
57
|
+
id: _this.id,
|
|
58
|
+
label: _this.name,
|
|
59
|
+
value: /*#__PURE__*/React.createElement(CommonOrderContent, {
|
|
60
|
+
list: record === null || record === void 0 ? void 0 : record[_this.id],
|
|
61
|
+
type: (_typeMap$_this$type = typeMap[_this.type]) === null || _typeMap$_this$type === void 0 ? void 0 : _typeMap$_this$type.type
|
|
62
|
+
})
|
|
63
|
+
}) : null;
|
|
64
|
+
});
|
|
65
|
+
_defineProperty(this, "renderPc", function (value, record) {
|
|
66
|
+
var _typeMap$_this$type2, _typeMap$_this$type3;
|
|
67
|
+
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)];
|
|
68
|
+
//兼容多个商品
|
|
69
|
+
return /*#__PURE__*/React.createElement("span", {
|
|
70
|
+
onClick: function onClick(e) {
|
|
71
|
+
return e.stopPropagation();
|
|
72
|
+
}
|
|
73
|
+
}, /*#__PURE__*/React.createElement(CommonOrderContent, {
|
|
74
|
+
list: list,
|
|
75
|
+
type: (_typeMap$_this$type3 = typeMap[_this.type]) === null || _typeMap$_this$type3 === void 0 ? void 0 : _typeMap$_this$type3.type
|
|
76
|
+
}));
|
|
77
|
+
});
|
|
78
|
+
_defineProperty(this, "renderLog", function (r) {
|
|
79
|
+
var _typeMap$_this$type4;
|
|
80
|
+
var list = r === null || r === void 0 ? void 0 : r["".concat(_this.id, "_").concat((_typeMap$_this$type4 = typeMap[_this.type]) === null || _typeMap$_this$type4 === void 0 ? void 0 : _typeMap$_this$type4.key)];
|
|
81
|
+
if (isNull(list)) return null;
|
|
82
|
+
return _this.renderPc(undefined, r);
|
|
83
|
+
});
|
|
84
|
+
_defineProperty(this, "getComponentValue", function (r) {
|
|
85
|
+
var _typeMap$_this$type5;
|
|
86
|
+
return r === null || r === void 0 ? void 0 : r["".concat(_this.id, "_").concat((_typeMap$_this$type5 = typeMap[_this.type]) === null || _typeMap$_this$type5 === void 0 ? void 0 : _typeMap$_this$type5.key)];
|
|
87
|
+
});
|
|
88
|
+
_defineProperty(this, "renderExport", function (value, record) {
|
|
89
|
+
var _typeMap$_this$type6;
|
|
90
|
+
var list = record === null || record === void 0 ? void 0 : record["".concat(_this.id, "_").concat((_typeMap$_this$type6 = typeMap[_this.type]) === null || _typeMap$_this$type6 === void 0 ? void 0 : _typeMap$_this$type6.key)];
|
|
91
|
+
return (list || []).map(function (item) {
|
|
92
|
+
var _typeMap$_this$type7;
|
|
93
|
+
return item === null || item === void 0 ? void 0 : item[(_typeMap$_this$type7 = typeMap[_this.type]) === null || _typeMap$_this$type7 === void 0 ? void 0 : _typeMap$_this$type7.valueKey];
|
|
94
|
+
}).join(",");
|
|
95
|
+
});
|
|
96
|
+
_defineProperty(this, "editRender", function (p) {
|
|
97
|
+
var _this$componentConfig, _this$componentConfig2, _typeMap$_this$type8;
|
|
98
|
+
return /*#__PURE__*/React.createElement(GetFormItem, {
|
|
99
|
+
title: _this.name,
|
|
100
|
+
name: _this.id,
|
|
101
|
+
rules: _this.rules,
|
|
102
|
+
hidden: p === null || p === void 0 ? void 0 : p.hidden,
|
|
103
|
+
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,
|
|
104
|
+
component: /*#__PURE__*/React.createElement(SystemOrder, _extends({}, _this.componentConfig, {
|
|
105
|
+
type: (_typeMap$_this$type8 = typeMap[_this.type]) === null || _typeMap$_this$type8 === void 0 ? void 0 : _typeMap$_this$type8.type
|
|
106
|
+
}))
|
|
107
|
+
});
|
|
108
|
+
});
|
|
109
|
+
_defineProperty(this, "filterConfig", function (item) {
|
|
110
|
+
var _typeMap$_this$type9;
|
|
111
|
+
return [{
|
|
112
|
+
searchDefaultConditions: SYMBOL.like,
|
|
113
|
+
type: item.type,
|
|
114
|
+
id: "".concat(item.id, "_").concat((_typeMap$_this$type9 = typeMap[_this.type]) === null || _typeMap$_this$type9 === void 0 ? void 0 : _typeMap$_this$type9.code),
|
|
115
|
+
name: "".concat(_this.name),
|
|
116
|
+
filterComponentType: "Input",
|
|
117
|
+
filterFn: function filterFn(value) {
|
|
118
|
+
return function (i) {
|
|
119
|
+
var _typeMap$_this$type10;
|
|
120
|
+
return _filterFn.filterSplitComma(_filterFn.filterTableListItemColumnValue(i, item.id, (_typeMap$_this$type10 = typeMap[_this.type]) === null || _typeMap$_this$type10 === void 0 ? void 0 : _typeMap$_this$type10.code), value);
|
|
121
|
+
};
|
|
122
|
+
}
|
|
123
|
+
}];
|
|
124
|
+
});
|
|
125
|
+
this.name = options.name;
|
|
126
|
+
this.id = options.id;
|
|
127
|
+
this.sortField = "".concat(options.id, "_").concat((_typeMap$options$type = typeMap[options.type]) === null || _typeMap$options$type === void 0 ? void 0 : _typeMap$options$type.key);
|
|
128
|
+
this.formField = "".concat(options.id, "_").concat((_typeMap$options$type2 = typeMap[options.type]) === null || _typeMap$options$type2 === void 0 ? void 0 : _typeMap$options$type2.key);
|
|
129
|
+
this.type = options.type;
|
|
130
|
+
this.componentConfig = options.componentConfig;
|
|
131
|
+
this.isCombinationComponent = false;
|
|
132
|
+
this.canSort = false;
|
|
133
|
+
this.children = [];
|
|
134
|
+
this.dataType = "object";
|
|
135
|
+
this.rules = (_this$componentConfig3 = this.componentConfig) !== null && _this$componentConfig3 !== void 0 && _this$componentConfig3.required ? [{
|
|
136
|
+
required: true,
|
|
137
|
+
validator: function validator(_, value) {
|
|
138
|
+
var hasNo = (value || []).some(function (item) {
|
|
139
|
+
var _typeMap$_this$type11;
|
|
140
|
+
return item[(_typeMap$_this$type11 = typeMap[_this.type]) === null || _typeMap$_this$type11 === void 0 ? void 0 : _typeMap$_this$type11.valueKey];
|
|
141
|
+
});
|
|
142
|
+
if (!hasNo) {
|
|
143
|
+
var _typeMap$_this$type12;
|
|
144
|
+
return Promise.reject(new Error("\u81F3\u5C11\u586B\u5199\u4E00\u4E2A\u5B8C\u6574\u7684".concat((_typeMap$_this$type12 = typeMap[_this.type]) === null || _typeMap$_this$type12 === void 0 ? void 0 : _typeMap$_this$type12.name)));
|
|
145
|
+
}
|
|
146
|
+
return Promise.resolve();
|
|
147
|
+
}
|
|
148
|
+
}] : [];
|
|
149
|
+
this.align = "left";
|
|
150
|
+
});
|
|
151
|
+
export default CommonSystemOrder;
|
package/dist/esm/factory.d.ts
CHANGED
|
@@ -1,3 +1,3 @@
|
|
|
1
|
-
import { JstLogistics, JstItemSelect, JstSupply, JstSendGood, BasicInput, BasicAddress, BasicCascader, BasicCheckbox, BasicDataTime, BasicSelect, BasicRadio, BasicTextArea, BasicPicture, BasicMultSelect, BasicGrade, BasicRate, BasicFile, BasicPosting, CommonDataTime, TradeId, ShopName, ErpTradeId, BuyerNick, ReceiverName, ReceiverMobile, ReceiverAddress, TradeDateTime, Logistics, ReturnLogistics, ActualPayment, ERemark, AliPay, ItemSelect, ItemId, ItemEnCode, SystemOrderNo, Ordinary, ThirdItemSelect, FlowStatusSelect, Payment, TemplateSelect, WorkOrderId, PlatForm, ShopInput, Submitter, Handler, CompletedUser, LogisticsInterception, LogisticsTrajectory, FlowWorkOrderId, BsGoods, BsExchange, BsReissue, BsSystemOrder, StatusSelect, CommonTradeId,
|
|
2
|
-
import { PickOption } from
|
|
3
|
-
export declare const factory: (type: string, options: PickOption) => BasicInput | BasicAddress | BasicCascader | BasicCheckbox | BasicDataTime | BasicSelect | BasicRadio | BasicTextArea | BasicPicture | BasicMultSelect | BasicGrade | BasicRate | BasicFile | BasicPosting | CommonDataTime | TradeId | ErpTradeId | ShopName | BuyerNick | ReceiverName | ReceiverMobile | ReceiverAddress | TradeDateTime | Logistics | ReturnLogistics | ActualPayment | ERemark | AliPay | ItemSelect | ItemId | ItemEnCode | SystemOrderNo | Ordinary | ThirdItemSelect | Payment | JstLogistics | JstItemSelect | JstSendGood | JstSupply | BsSystemOrder | BsGoods | BsExchange | BsReissue |
|
|
1
|
+
import { JstLogistics, JstItemSelect, JstSupply, JstSendGood, BasicInput, BasicAddress, BasicCascader, BasicCheckbox, BasicDataTime, BasicSelect, BasicRadio, BasicTextArea, BasicPicture, BasicMultSelect, BasicGrade, BasicRate, BasicFile, BasicPosting, CommonDataTime, TradeId, ShopName, ErpTradeId, BuyerNick, ReceiverName, ReceiverMobile, ReceiverAddress, TradeDateTime, Logistics, ReturnLogistics, ActualPayment, ERemark, AliPay, ItemSelect, ItemId, ItemEnCode, SystemOrderNo, Ordinary, ThirdItemSelect, FlowStatusSelect, Payment, TemplateSelect, WorkOrderId, PlatForm, ShopInput, Submitter, Handler, CompletedUser, LogisticsInterception, LogisticsTrajectory, FlowWorkOrderId, BsGoods, BsExchange, BsReissue, BsSystemOrder, StatusSelect, CommonTradeId, CommonSystemOrder, CommonMultiStatus, Calculation, NodeDeadLine, HandlerDeadLine, NodeStayDuration } from "./index";
|
|
2
|
+
import { PickOption } from "./type";
|
|
3
|
+
export declare const factory: (type: string, options: PickOption) => HandlerDeadLine | NodeDeadLine | NodeStayDuration | BasicInput | BasicAddress | BasicCascader | BasicCheckbox | BasicDataTime | BasicSelect | BasicRadio | BasicTextArea | BasicPicture | BasicMultSelect | BasicGrade | BasicRate | BasicFile | BasicPosting | CommonDataTime | TradeId | ErpTradeId | ShopName | BuyerNick | ReceiverName | ReceiverMobile | ReceiverAddress | TradeDateTime | Logistics | ReturnLogistics | ActualPayment | ERemark | AliPay | ItemSelect | ItemId | ItemEnCode | SystemOrderNo | Ordinary | ThirdItemSelect | Payment | JstLogistics | JstItemSelect | JstSendGood | JstSupply | BsSystemOrder | BsGoods | BsExchange | BsReissue | FlowStatusSelect | TemplateSelect | WorkOrderId | LogisticsInterception | LogisticsTrajectory | PlatForm | ShopInput | Submitter | Handler | CompletedUser | FlowWorkOrderId | StatusSelect | CommonTradeId | Calculation | CommonSystemOrder | CommonMultiStatus;
|
package/dist/esm/factory.js
CHANGED
|
@@ -1,152 +1,153 @@
|
|
|
1
|
-
import { JstLogistics, JstItemSelect, JstSupply, JstSendGood, BasicInput, BasicAddress, BasicCascader, BasicCheckbox, BasicDataTime, BasicSelect, BasicRadio, BasicTextArea, BasicPicture, BasicMultSelect, BasicGrade, BasicRate, BasicFile, BasicPosting, CommonDataTime, TradeId, ShopName, ErpTradeId, BuyerNick, ReceiverName, ReceiverMobile, ReceiverAddress, TradeDateTime, Logistics, ReturnLogistics, ActualPayment, ERemark, AliPay, ItemSelect, ItemId, ItemEnCode, SystemOrderNo, Ordinary, ThirdItemSelect, FlowStatusSelect, Payment, TemplateSelect, WorkOrderId, PlatForm, ShopInput, Submitter, Handler, CompletedUser, LogisticsInterception, LogisticsTrajectory, FlowWorkOrderId, BsGoods, BsExchange, BsReissue, BsSystemOrder, StatusSelect, CommonTradeId,
|
|
1
|
+
import { JstLogistics, JstItemSelect, JstSupply, JstSendGood, BasicInput, BasicAddress, BasicCascader, BasicCheckbox, BasicDataTime, BasicSelect, BasicRadio, BasicTextArea, BasicPicture, BasicMultSelect, BasicGrade, BasicRate, BasicFile, BasicPosting, CommonDataTime, TradeId, ShopName, ErpTradeId, BuyerNick, ReceiverName, ReceiverMobile, ReceiverAddress, TradeDateTime, Logistics, ReturnLogistics, ActualPayment, ERemark, AliPay, ItemSelect, ItemId, ItemEnCode, SystemOrderNo, Ordinary, ThirdItemSelect, FlowStatusSelect, Payment, TemplateSelect, WorkOrderId, PlatForm, ShopInput, Submitter, Handler, CompletedUser, LogisticsInterception, LogisticsTrajectory, FlowWorkOrderId, BsGoods, BsExchange, BsReissue, BsSystemOrder, StatusSelect, CommonTradeId, CommonSystemOrder, CommonMultiStatus, Calculation, NodeDeadLine, HandlerDeadLine, NodeStayDuration } from "./index";
|
|
2
2
|
export var factory = function factory(type, options) {
|
|
3
3
|
var _options$componentCon;
|
|
4
4
|
switch (type) {
|
|
5
|
-
case
|
|
5
|
+
case "PLATFORM_INPUT":
|
|
6
6
|
return new PlatForm();
|
|
7
|
-
case
|
|
7
|
+
case "SHOP_INPUT":
|
|
8
8
|
return new ShopInput(options);
|
|
9
|
-
case
|
|
9
|
+
case "OPERATOR_INPUT":
|
|
10
10
|
return new Submitter(options);
|
|
11
|
-
case
|
|
11
|
+
case "HANDLER_INPUT":
|
|
12
12
|
return new Handler(options);
|
|
13
|
-
case
|
|
13
|
+
case "COMPLETED_USER_INPUT":
|
|
14
14
|
return new CompletedUser(options);
|
|
15
|
-
case
|
|
15
|
+
case "INPUT":
|
|
16
16
|
return new BasicInput(options);
|
|
17
|
-
case
|
|
17
|
+
case "RADIO":
|
|
18
18
|
return new BasicRadio(options);
|
|
19
|
-
case
|
|
19
|
+
case "TEXTAREA":
|
|
20
20
|
return new BasicTextArea(options);
|
|
21
|
-
case
|
|
21
|
+
case "CHECKBOX":
|
|
22
22
|
return new BasicCheckbox(options);
|
|
23
|
-
case
|
|
23
|
+
case "DATETIME":
|
|
24
24
|
return new BasicDataTime(options);
|
|
25
|
-
case
|
|
26
|
-
case
|
|
25
|
+
case "SELECT":
|
|
26
|
+
case "BUYER_MESSAGE_NOTICE":
|
|
27
27
|
return new BasicSelect(options);
|
|
28
|
-
case
|
|
28
|
+
case "PICTURE":
|
|
29
29
|
return new BasicPicture(options);
|
|
30
|
-
case
|
|
30
|
+
case "BASIC_MULT_SELECT":
|
|
31
31
|
return new BasicMultSelect(options);
|
|
32
|
-
case
|
|
32
|
+
case "MULT_SELECT":
|
|
33
33
|
return new BasicCascader(options);
|
|
34
|
-
case
|
|
34
|
+
case "BASIC_ADDRESS":
|
|
35
35
|
return new BasicAddress(options);
|
|
36
|
-
case
|
|
36
|
+
case "BASIC_GRADE":
|
|
37
37
|
return new BasicGrade(options);
|
|
38
|
-
case
|
|
38
|
+
case "RATE":
|
|
39
39
|
return new BasicRate(options);
|
|
40
|
-
case
|
|
40
|
+
case "FILE":
|
|
41
41
|
return new BasicFile(options);
|
|
42
|
-
case
|
|
42
|
+
case "POSTING":
|
|
43
43
|
return new BasicPosting(options);
|
|
44
|
-
case
|
|
44
|
+
case "SHOP_NAME_INPUT":
|
|
45
45
|
return new ShopName(options);
|
|
46
|
-
case
|
|
46
|
+
case "TRADE_ID_INPUT":
|
|
47
47
|
return options !== null && options !== void 0 && (_options$componentCon = options.componentConfig) !== null && _options$componentCon !== void 0 && _options$componentCon.erpFlag ? new ErpTradeId(options) : new TradeId(options);
|
|
48
|
-
case
|
|
48
|
+
case "BUYER_NICK_INPUT":
|
|
49
49
|
return new BuyerNick(options);
|
|
50
|
-
case
|
|
50
|
+
case "RECEIVER_NAME_INPUT":
|
|
51
51
|
return new ReceiverName(options);
|
|
52
|
-
case
|
|
52
|
+
case "RECEIVER_MOBILE_INPUT":
|
|
53
53
|
return new ReceiverMobile(options);
|
|
54
|
-
case
|
|
54
|
+
case "RECEIVER_ADDRESS_INPUT":
|
|
55
55
|
return new ReceiverAddress(options);
|
|
56
|
-
case
|
|
57
|
-
case
|
|
58
|
-
case
|
|
59
|
-
case
|
|
60
|
-
case
|
|
61
|
-
case
|
|
62
|
-
case
|
|
56
|
+
case "TRADE_CREATE_DATETIME":
|
|
57
|
+
case "TRADE_PAYMENT_DATETIME":
|
|
58
|
+
case "TRADE_DELIVERY_DATETIME":
|
|
59
|
+
case "TRADE_CLOSING_DATETIME":
|
|
60
|
+
case "BS_SIGNING_TIME":
|
|
61
|
+
case "BS_SEND_TIME":
|
|
62
|
+
case "BS_TRADE_PAYMENT_TIME":
|
|
63
63
|
return new TradeDateTime(options);
|
|
64
|
-
case
|
|
64
|
+
case "EXPRESS_LOGISTICS_SELECT":
|
|
65
65
|
return new Logistics(options);
|
|
66
|
-
case
|
|
66
|
+
case "RETURN_LOGISTICS_SELECT":
|
|
67
67
|
return new ReturnLogistics(options);
|
|
68
|
-
case
|
|
69
|
-
case
|
|
70
|
-
case
|
|
71
|
-
case
|
|
68
|
+
case "ACTUAL_PAYMENT":
|
|
69
|
+
case "BS_NET_RECEIPTS":
|
|
70
|
+
case "BS_DEPOSIT":
|
|
71
|
+
case "BS_PACKAGE_WEIGHT":
|
|
72
72
|
return new ActualPayment(options);
|
|
73
|
-
case
|
|
73
|
+
case "REMARK_INPUT":
|
|
74
74
|
return new ERemark(options);
|
|
75
|
-
case
|
|
75
|
+
case "ITEM_SELECT":
|
|
76
76
|
return new ItemSelect(options);
|
|
77
|
-
case
|
|
77
|
+
case "ITEM_ID":
|
|
78
78
|
return new ItemId(options);
|
|
79
|
-
case
|
|
79
|
+
case "ITEM_ENCODE":
|
|
80
80
|
return new ItemEnCode(options);
|
|
81
|
-
case
|
|
81
|
+
case "ALI_PAY_INPUT":
|
|
82
82
|
return new AliPay(options);
|
|
83
|
-
case
|
|
83
|
+
case "ORDINARY_INVOICE":
|
|
84
84
|
return new Ordinary(options);
|
|
85
|
-
case
|
|
85
|
+
case "ITEM_SELECT_THIRD":
|
|
86
86
|
return new ThirdItemSelect(options);
|
|
87
|
-
case
|
|
87
|
+
case "ENTERPRISE_PAYMENT":
|
|
88
88
|
return new Payment(options);
|
|
89
|
-
case
|
|
89
|
+
case "SYSTEM_ORDER_NO":
|
|
90
90
|
return new SystemOrderNo(options);
|
|
91
|
-
case
|
|
91
|
+
case "LOGISTICS_INTERCEPTION":
|
|
92
92
|
return new LogisticsInterception(options);
|
|
93
|
-
case
|
|
93
|
+
case "LOGISTICS_TRAJECTORY":
|
|
94
94
|
return new LogisticsTrajectory(options);
|
|
95
|
-
case
|
|
95
|
+
case "WORK_ORDER_ID_INPUT":
|
|
96
96
|
return new WorkOrderId(options);
|
|
97
|
-
case
|
|
97
|
+
case "FLOW_STATUS_SELECT":
|
|
98
98
|
return new FlowStatusSelect(options);
|
|
99
|
-
case
|
|
99
|
+
case "COMPLETED_DATETIME":
|
|
100
100
|
return new CommonDataTime(options);
|
|
101
|
-
case
|
|
101
|
+
case "CREATED_DATETIME":
|
|
102
102
|
return new CommonDataTime(options);
|
|
103
|
-
case
|
|
103
|
+
case "UPDATE_DATETIME":
|
|
104
104
|
return new CommonDataTime(options);
|
|
105
|
-
case
|
|
105
|
+
case "TEMPLATE_ID_INPUT":
|
|
106
106
|
return new TemplateSelect(options);
|
|
107
|
-
case
|
|
108
|
-
case
|
|
109
|
-
case
|
|
107
|
+
case "JST_LOGISTICS":
|
|
108
|
+
case "BS_LOGISTICS":
|
|
109
|
+
case "REISSUE_LOGISTICS":
|
|
110
110
|
return new JstLogistics(options);
|
|
111
|
-
case
|
|
111
|
+
case "JST_ITEM_SELECT_THIRD":
|
|
112
112
|
return new JstItemSelect(options);
|
|
113
|
-
case
|
|
113
|
+
case "JST_SUPPLY":
|
|
114
114
|
return new JstSupply(options);
|
|
115
|
-
case
|
|
115
|
+
case "BS_SYSTEM_ORDER":
|
|
116
116
|
return new BsSystemOrder(options);
|
|
117
|
-
case
|
|
118
|
-
case
|
|
117
|
+
case "JST_SEND_GOOD":
|
|
118
|
+
case "BS_SEND_GOOD":
|
|
119
119
|
return new JstSendGood(options);
|
|
120
|
-
case
|
|
120
|
+
case "BS_POSTING":
|
|
121
121
|
return new BasicPosting(options);
|
|
122
|
-
case
|
|
122
|
+
case "BS_GOODS":
|
|
123
123
|
return new BsGoods(options);
|
|
124
|
-
case
|
|
124
|
+
case "BS_EXCHANGE_GOODS":
|
|
125
125
|
return new BsExchange(options);
|
|
126
|
-
case
|
|
126
|
+
case "BS_REISSUE_GOODS":
|
|
127
127
|
return new BsReissue(options);
|
|
128
|
-
case
|
|
129
|
-
|
|
130
|
-
|
|
128
|
+
case "BS_DELIVERY_NO":
|
|
129
|
+
case "RETURN_GOODS_TRADE_ID":
|
|
130
|
+
return new CommonSystemOrder(options);
|
|
131
|
+
case "FLOW_WORK_ORDER_ID_INPUT":
|
|
131
132
|
return new FlowWorkOrderId(options);
|
|
132
|
-
case
|
|
133
|
+
case "OUTER_WORK_ORDER_ID_INPUT":
|
|
133
134
|
return new FlowWorkOrderId(options);
|
|
134
|
-
case
|
|
135
|
-
case
|
|
136
|
-
case
|
|
137
|
-
case 'RETURN_GOODS_STATUS':
|
|
135
|
+
case "REISSUE_STATUS":
|
|
136
|
+
case "EXCHANGE_STATUS":
|
|
137
|
+
case "ADJUST_WORK_ORDER_STATUS":
|
|
138
138
|
return new StatusSelect(options);
|
|
139
|
-
case
|
|
140
|
-
|
|
141
|
-
case
|
|
139
|
+
case "RETURN_GOODS_STATUS":
|
|
140
|
+
return new CommonMultiStatus(options);
|
|
141
|
+
case "REISSUE_TRADE_ID":
|
|
142
|
+
case "EXCHANGE_TRADE_ID":
|
|
142
143
|
return new CommonTradeId(options);
|
|
143
|
-
case
|
|
144
|
+
case "NUMERICAL_CALCULATION":
|
|
144
145
|
return new Calculation(options);
|
|
145
|
-
case
|
|
146
|
+
case "NODE_DEAD_LINE_INPUT":
|
|
146
147
|
return new NodeDeadLine(options);
|
|
147
|
-
case
|
|
148
|
+
case "HANDLER_DEAD_LINE_INPUT":
|
|
148
149
|
return new HandlerDeadLine(options);
|
|
149
|
-
case
|
|
150
|
+
case "NODE_STAY_DURATION_INPUT":
|
|
150
151
|
return new NodeStayDuration(options);
|
|
151
152
|
default:
|
|
152
153
|
return new BasicInput(options);
|
package/dist/esm/index.d.ts
CHANGED
|
@@ -41,7 +41,6 @@ export { default as BsSystemOrder } from "./components/BS/BsSystemOrder";
|
|
|
41
41
|
export { default as BsGoods } from "./components/BS/BsGoods";
|
|
42
42
|
export { default as BsExchange } from "./components/BS/BsExchange";
|
|
43
43
|
export { default as BsReissue } from "./components/BS/BsReissue";
|
|
44
|
-
export { default as DeliveryNo } from "./components/BS/DeliveryNo";
|
|
45
44
|
export { default as FlowStatusSelect } from "./components/FlowStatusSelect";
|
|
46
45
|
export { default as TemplateSelect } from "./components/TemplateSelect";
|
|
47
46
|
export { default as WorkOrderId } from "./components/WorkOrderId";
|
|
@@ -56,9 +55,11 @@ export { default as FlowWorkOrderId } from "./components/FlowWorkOrderId";
|
|
|
56
55
|
export { default as StatusSelect } from "./components/StatusSelect";
|
|
57
56
|
export { default as CommonTradeId } from "./components/CommonTradeId";
|
|
58
57
|
export { default as Calculation } from "./components/Calculation";
|
|
58
|
+
export { default as CommonSystemOrder } from "./components/CommonSystemOrder";
|
|
59
|
+
export { default as CommonMultiStatus } from "./components/CommonMultiStatus";
|
|
59
60
|
export { default as NodeDeadLine } from "./components/NodeDeadLine";
|
|
60
61
|
export { default as HandlerDeadLine } from "./components/HandlerDeadLine";
|
|
61
|
-
export { default as NodeStayDuration } from "./components/
|
|
62
|
+
export { default as NodeStayDuration } from "./components/NodeStayDuration";
|
|
62
63
|
export { factory } from "./factory";
|
|
63
64
|
export { default as PlatformAvatar } from "./commonComponents/PlatformAvatar";
|
|
64
65
|
export { default as PlatBuyer } from "./commonComponents/PlatBuyer";
|
package/dist/esm/index.js
CHANGED
|
@@ -41,7 +41,6 @@ export { default as BsSystemOrder } from "./components/BS/BsSystemOrder";
|
|
|
41
41
|
export { default as BsGoods } from "./components/BS/BsGoods";
|
|
42
42
|
export { default as BsExchange } from "./components/BS/BsExchange";
|
|
43
43
|
export { default as BsReissue } from "./components/BS/BsReissue";
|
|
44
|
-
export { default as DeliveryNo } from "./components/BS/DeliveryNo";
|
|
45
44
|
export { default as FlowStatusSelect } from "./components/FlowStatusSelect";
|
|
46
45
|
export { default as TemplateSelect } from "./components/TemplateSelect";
|
|
47
46
|
export { default as WorkOrderId } from "./components/WorkOrderId";
|
|
@@ -56,9 +55,11 @@ export { default as FlowWorkOrderId } from "./components/FlowWorkOrderId";
|
|
|
56
55
|
export { default as StatusSelect } from "./components/StatusSelect";
|
|
57
56
|
export { default as CommonTradeId } from "./components/CommonTradeId";
|
|
58
57
|
export { default as Calculation } from "./components/Calculation";
|
|
58
|
+
export { default as CommonSystemOrder } from "./components/CommonSystemOrder";
|
|
59
|
+
export { default as CommonMultiStatus } from "./components/CommonMultiStatus";
|
|
59
60
|
export { default as NodeDeadLine } from "./components/NodeDeadLine";
|
|
60
61
|
export { default as HandlerDeadLine } from "./components/HandlerDeadLine";
|
|
61
|
-
export { default as NodeStayDuration } from "./components/
|
|
62
|
+
export { default as NodeStayDuration } from "./components/NodeStayDuration";
|
|
62
63
|
export { factory } from "./factory";
|
|
63
64
|
export { default as PlatformAvatar } from "./commonComponents/PlatformAvatar";
|
|
64
65
|
export { default as PlatBuyer } from "./commonComponents/PlatBuyer";
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@kmkf-fe-packages/services-components",
|
|
3
|
-
"version": "0.8.17-alpha.
|
|
3
|
+
"version": "0.8.17-alpha.27",
|
|
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.8.17-alpha.
|
|
30
|
-
"@kmkf-fe-packages/kmkf-utils": "^0.8.17-alpha.
|
|
29
|
+
"@kmkf-fe-packages/basic-components": "^0.8.17-alpha.27",
|
|
30
|
+
"@kmkf-fe-packages/kmkf-utils": "^0.8.17-alpha.27"
|
|
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": "
|
|
43
|
+
"gitHead": "bfa540a247701811987ae018c84eb7b83d919673"
|
|
44
44
|
}
|