@kmkf-fe-packages/services-components 0.8.17-alpha.15 → 0.8.17-alpha.18
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/Calculation/index.d.ts +31 -0
- package/dist/esm/components/Calculation/index.js +108 -0
- package/dist/esm/components/CommonTradeId/index.js +1 -1
- package/dist/esm/components/GetFormItem/index.d.ts +4 -2
- package/dist/esm/components/GetFormItem/index.js +10 -3
- package/dist/esm/components/StatusSelect/index.d.ts +5 -5
- package/dist/esm/components/StatusSelect/index.js +47 -47
- package/dist/esm/factory.d.ts +3 -3
- package/dist/esm/factory.js +80 -78
- package/dist/esm/index.d.ts +1 -0
- package/dist/esm/index.js +1 -0
- package/dist/esm/type.d.ts +1 -0
- package/package.json +4 -4
|
@@ -0,0 +1,31 @@
|
|
|
1
|
+
import { ComponentInterface, PickOption, ColumnConfig, Record } from "../../type";
|
|
2
|
+
import React from "react";
|
|
3
|
+
declare class Calculation implements ComponentInterface {
|
|
4
|
+
name: string;
|
|
5
|
+
id: string;
|
|
6
|
+
sortField: string;
|
|
7
|
+
type: string;
|
|
8
|
+
rules: any[];
|
|
9
|
+
componentConfig: ComponentInterface["componentConfig"];
|
|
10
|
+
isCombinationComponent: boolean;
|
|
11
|
+
formField: string;
|
|
12
|
+
canSort: boolean;
|
|
13
|
+
children: ComponentInterface[];
|
|
14
|
+
dataType: ComponentInterface["dataType"];
|
|
15
|
+
constructor(options: PickOption);
|
|
16
|
+
renderPc: (value: any, record: Record) => React.JSX.Element;
|
|
17
|
+
renderLog: (r: Record) => React.JSX.Element | null;
|
|
18
|
+
getComponentValue: (r: Record) => any;
|
|
19
|
+
renderExport: (value: any, record: Record) => any;
|
|
20
|
+
renderClient: (record: Record) => React.JSX.Element | null;
|
|
21
|
+
editRender: (p: any) => React.JSX.Element;
|
|
22
|
+
filterConfig: (item: ColumnConfig) => {
|
|
23
|
+
searchDefaultConditions: "like";
|
|
24
|
+
type: string;
|
|
25
|
+
id: string;
|
|
26
|
+
name: string;
|
|
27
|
+
filterComponentType: "Input";
|
|
28
|
+
filterFn: (value: string) => (i: Record) => boolean;
|
|
29
|
+
};
|
|
30
|
+
}
|
|
31
|
+
export default Calculation;
|
|
@@ -0,0 +1,108 @@
|
|
|
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 { ApaasInput } from "@kmkf-fe-packages/basic-components";
|
|
11
|
+
import GetFormItem from "../GetFormItem";
|
|
12
|
+
import ItemView from "../../commonComponents/ItemView";
|
|
13
|
+
import { isNull, filterFn as _filterFn } from "@kmkf-fe-packages/kmkf-utils";
|
|
14
|
+
import { SYMBOL } from "../../constant";
|
|
15
|
+
var CalculationInput = function CalculationInput(props) {
|
|
16
|
+
return /*#__PURE__*/React.createElement("span", {
|
|
17
|
+
style: {
|
|
18
|
+
display: 'flex',
|
|
19
|
+
alignItems: 'center'
|
|
20
|
+
}
|
|
21
|
+
}, /*#__PURE__*/React.createElement(ApaasInput, props), /*#__PURE__*/React.createElement("span", {
|
|
22
|
+
style: {
|
|
23
|
+
marginLeft: '4px'
|
|
24
|
+
}
|
|
25
|
+
}, props === null || props === void 0 ? void 0 : props.unit));
|
|
26
|
+
};
|
|
27
|
+
var Calculation = /*#__PURE__*/_createClass(function Calculation(options) {
|
|
28
|
+
var _this = this;
|
|
29
|
+
_classCallCheck(this, Calculation);
|
|
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, "isCombinationComponent", void 0);
|
|
37
|
+
_defineProperty(this, "formField", void 0);
|
|
38
|
+
_defineProperty(this, "canSort", void 0);
|
|
39
|
+
_defineProperty(this, "children", void 0);
|
|
40
|
+
_defineProperty(this, "dataType", void 0);
|
|
41
|
+
_defineProperty(this, "renderPc", function (value, record) {
|
|
42
|
+
var _record;
|
|
43
|
+
return /*#__PURE__*/React.createElement("span", null, (_record = record === null || record === void 0 ? void 0 : record["".concat(_this.id, "_calculation")]) !== null && _record !== void 0 ? _record : "--");
|
|
44
|
+
});
|
|
45
|
+
_defineProperty(this, "renderLog", function (r) {
|
|
46
|
+
if (isNull(r === null || r === void 0 ? void 0 : r["".concat(_this.id, "_calculation")])) return null;
|
|
47
|
+
return _this.renderPc(undefined, r);
|
|
48
|
+
});
|
|
49
|
+
_defineProperty(this, "getComponentValue", function (r) {
|
|
50
|
+
return r === null || r === void 0 ? void 0 : r["".concat(_this.id, "_calculation")];
|
|
51
|
+
});
|
|
52
|
+
_defineProperty(this, "renderExport", function (value, record) {
|
|
53
|
+
var _record2;
|
|
54
|
+
return (_record2 = record === null || record === void 0 ? void 0 : record["".concat(_this.id, "_calculation")]) !== null && _record2 !== void 0 ? _record2 : "--";
|
|
55
|
+
});
|
|
56
|
+
_defineProperty(this, "renderClient", function (record) {
|
|
57
|
+
return !isNull(record === null || record === void 0 ? void 0 : record[_this.id]) ? /*#__PURE__*/React.createElement(ItemView, {
|
|
58
|
+
id: _this.id,
|
|
59
|
+
label: _this.name,
|
|
60
|
+
value: record === null || record === void 0 ? void 0 : record[_this.id]
|
|
61
|
+
}) : null;
|
|
62
|
+
});
|
|
63
|
+
_defineProperty(this, "editRender", function (p) {
|
|
64
|
+
var _this$componentConfig, _this$componentConfig2, _this$componentConfig3;
|
|
65
|
+
return /*#__PURE__*/React.createElement(GetFormItem, {
|
|
66
|
+
title: _this.name,
|
|
67
|
+
name: _this.id,
|
|
68
|
+
rules: _this.rules,
|
|
69
|
+
hidden: p === null || p === void 0 ? void 0 : p.hidden,
|
|
70
|
+
required: false,
|
|
71
|
+
style: {
|
|
72
|
+
display: (_this$componentConfig = _this.componentConfig) !== null && _this$componentConfig !== void 0 && (_this$componentConfig2 = _this$componentConfig.config) !== null && _this$componentConfig2 !== void 0 && _this$componentConfig2.display ? 'unset' : 'none'
|
|
73
|
+
} // TODO: 样式隐藏
|
|
74
|
+
,
|
|
75
|
+
component: /*#__PURE__*/React.createElement(CalculationInput, _extends({
|
|
76
|
+
disabled: true
|
|
77
|
+
}, (_this$componentConfig3 = _this.componentConfig) === null || _this$componentConfig3 === void 0 ? void 0 : _this$componentConfig3.config))
|
|
78
|
+
});
|
|
79
|
+
});
|
|
80
|
+
_defineProperty(this, "filterConfig", function (item) {
|
|
81
|
+
return {
|
|
82
|
+
searchDefaultConditions: SYMBOL.like,
|
|
83
|
+
type: item.type,
|
|
84
|
+
id: "".concat(item.id, "_calculation"),
|
|
85
|
+
// 过滤组件id
|
|
86
|
+
name: item.name,
|
|
87
|
+
// 过滤组件名称
|
|
88
|
+
filterComponentType: "Input",
|
|
89
|
+
filterFn: function filterFn(value) {
|
|
90
|
+
return function (i) {
|
|
91
|
+
return "".concat(_filterFn.filterTableListItemColumnValue(i, item.id, "calculation")).includes(value);
|
|
92
|
+
};
|
|
93
|
+
}
|
|
94
|
+
};
|
|
95
|
+
});
|
|
96
|
+
this.name = options.name;
|
|
97
|
+
this.id = options.id;
|
|
98
|
+
this.sortField = "".concat(options.id, "_calculation");
|
|
99
|
+
this.formField = "".concat(options.id, "_calculation");
|
|
100
|
+
this.type = options.type;
|
|
101
|
+
this.componentConfig = options.componentConfig;
|
|
102
|
+
this.rules = [];
|
|
103
|
+
this.isCombinationComponent = false;
|
|
104
|
+
this.canSort = true;
|
|
105
|
+
this.children = [];
|
|
106
|
+
this.dataType = "number";
|
|
107
|
+
});
|
|
108
|
+
export default Calculation;
|
|
@@ -93,7 +93,7 @@ var CommonTradeId = /*#__PURE__*/_createClass(function CommonTradeId(options) {
|
|
|
93
93
|
hidden: p === null || p === void 0 ? void 0 : p.hidden,
|
|
94
94
|
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,
|
|
95
95
|
component: /*#__PURE__*/React.createElement(Input, _extends({}, _this.componentConfig, {
|
|
96
|
-
placeholder: "\
|
|
96
|
+
placeholder: "\u65E0\u987B\u586B\u5199",
|
|
97
97
|
disabled: true
|
|
98
98
|
}))
|
|
99
99
|
});
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import React from "react";
|
|
1
|
+
import React, { CSSProperties } from "react";
|
|
2
2
|
declare type GetFormItemProps = {
|
|
3
3
|
rules: any[];
|
|
4
4
|
required: boolean;
|
|
@@ -6,6 +6,8 @@ declare type GetFormItemProps = {
|
|
|
6
6
|
name: string;
|
|
7
7
|
component: JSX.Element | null;
|
|
8
8
|
hidden?: boolean;
|
|
9
|
+
style?: CSSProperties | undefined;
|
|
10
|
+
[prop: string]: any;
|
|
9
11
|
};
|
|
10
|
-
declare const GetFormItem: ({ rules, required, title, component, name, hidden }: GetFormItemProps) => React.JSX.Element | null;
|
|
12
|
+
declare const GetFormItem: ({ rules, required, title, component, name, hidden, style, }: GetFormItemProps) => React.JSX.Element | null;
|
|
11
13
|
export default GetFormItem;
|
|
@@ -1,3 +1,9 @@
|
|
|
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 _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; }
|
|
5
|
+
function _toPropertyKey(arg) { var key = _toPrimitive(arg, "string"); return _typeof(key) === "symbol" ? key : String(key); }
|
|
6
|
+
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); }
|
|
1
7
|
import React from "react";
|
|
2
8
|
import { Form } from "antd";
|
|
3
9
|
var GetFormItem = function GetFormItem(_ref) {
|
|
@@ -7,7 +13,8 @@ var GetFormItem = function GetFormItem(_ref) {
|
|
|
7
13
|
component = _ref.component,
|
|
8
14
|
name = _ref.name,
|
|
9
15
|
_ref$hidden = _ref.hidden,
|
|
10
|
-
hidden = _ref$hidden === void 0 ? false : _ref$hidden
|
|
16
|
+
hidden = _ref$hidden === void 0 ? false : _ref$hidden,
|
|
17
|
+
style = _ref.style;
|
|
11
18
|
var newRules = rules;
|
|
12
19
|
if (required) {
|
|
13
20
|
newRules = rules.concat({
|
|
@@ -19,9 +26,9 @@ var GetFormItem = function GetFormItem(_ref) {
|
|
|
19
26
|
if (hidden) return null;
|
|
20
27
|
return /*#__PURE__*/React.createElement("div", {
|
|
21
28
|
className: "form-item--wrap",
|
|
22
|
-
style: {
|
|
29
|
+
style: _objectSpread({
|
|
23
30
|
position: "relative"
|
|
24
|
-
}
|
|
31
|
+
}, style)
|
|
25
32
|
}, /*#__PURE__*/React.createElement(Form.Item, {
|
|
26
33
|
name: name,
|
|
27
34
|
label: title,
|
|
@@ -1,18 +1,18 @@
|
|
|
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 StatusSelect implements ComponentInterface {
|
|
4
4
|
name: string;
|
|
5
5
|
id: string;
|
|
6
6
|
sortField: string;
|
|
7
7
|
type: string;
|
|
8
8
|
rules: any[];
|
|
9
|
-
componentConfig: ComponentInterface[
|
|
9
|
+
componentConfig: ComponentInterface["componentConfig"];
|
|
10
10
|
isCombinationComponent: boolean;
|
|
11
11
|
formField: string;
|
|
12
12
|
canSort: boolean;
|
|
13
13
|
children: ComponentInterface[];
|
|
14
|
-
dataType: ComponentInterface[
|
|
15
|
-
options: ComponentInterface[
|
|
14
|
+
dataType: ComponentInterface["dataType"];
|
|
15
|
+
options: ComponentInterface["options"];
|
|
16
16
|
constructor(options: PickOption);
|
|
17
17
|
editRender: (p: any) => React.JSX.Element;
|
|
18
18
|
renderClient: (record: any) => React.JSX.Element | null;
|
|
@@ -8,69 +8,69 @@ function _classCallCheck(instance, Constructor) { if (!(instance instanceof Cons
|
|
|
8
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
9
|
function _toPropertyKey(arg) { var key = _toPrimitive(arg, "string"); return _typeof(key) === "symbol" ? key : String(key); }
|
|
10
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
|
|
12
|
-
import { CommonStatus } from
|
|
11
|
+
import React from "react";
|
|
12
|
+
import { CommonStatus } from "@kmkf-fe-packages/basic-components";
|
|
13
13
|
import GetFormItem from "../GetFormItem";
|
|
14
14
|
import ItemView from "../../commonComponents/ItemView";
|
|
15
|
-
import { isNull, filterFn as _filterFn } from
|
|
15
|
+
import { isNull, filterFn as _filterFn } from "@kmkf-fe-packages/kmkf-utils";
|
|
16
16
|
import { SYMBOL } from "../../constant";
|
|
17
17
|
// const statusOptions: Array<{ value: string }> = [{ value: '成功' }, { value: '失败' }]
|
|
18
18
|
var selectTypeMap = {
|
|
19
19
|
REISSUE_STATUS: {
|
|
20
20
|
options: [{
|
|
21
|
-
value:
|
|
22
|
-
label:
|
|
23
|
-
color:
|
|
21
|
+
value: "成功",
|
|
22
|
+
label: "成功",
|
|
23
|
+
color: "#52c41a"
|
|
24
24
|
}, {
|
|
25
|
-
value:
|
|
26
|
-
label:
|
|
27
|
-
color:
|
|
25
|
+
value: "失败",
|
|
26
|
+
label: "失败",
|
|
27
|
+
color: "#ff4d4f"
|
|
28
28
|
}],
|
|
29
|
-
key:
|
|
30
|
-
info:
|
|
31
|
-
failValue:
|
|
29
|
+
key: "reissueStatusValue",
|
|
30
|
+
info: "reissueReason",
|
|
31
|
+
failValue: "失败"
|
|
32
32
|
},
|
|
33
33
|
EXCHANGE_STATUS: {
|
|
34
34
|
options: [{
|
|
35
|
-
value:
|
|
36
|
-
label:
|
|
37
|
-
color:
|
|
35
|
+
value: "成功",
|
|
36
|
+
label: "成功",
|
|
37
|
+
color: "#52c41a"
|
|
38
38
|
}, {
|
|
39
|
-
value:
|
|
40
|
-
label:
|
|
41
|
-
color:
|
|
39
|
+
value: "失败",
|
|
40
|
+
label: "失败",
|
|
41
|
+
color: "#ff4d4f"
|
|
42
42
|
}],
|
|
43
|
-
key:
|
|
44
|
-
info:
|
|
45
|
-
failValue:
|
|
43
|
+
key: "exchangeStatusValue",
|
|
44
|
+
info: "exchangeReason",
|
|
45
|
+
failValue: "失败"
|
|
46
46
|
},
|
|
47
|
-
|
|
47
|
+
CREATE_STATUS: {
|
|
48
48
|
options: [{
|
|
49
|
-
value:
|
|
50
|
-
label:
|
|
51
|
-
color:
|
|
49
|
+
value: "成功",
|
|
50
|
+
label: "成功",
|
|
51
|
+
color: "#52c41a"
|
|
52
52
|
}, {
|
|
53
|
-
value:
|
|
54
|
-
label:
|
|
55
|
-
color:
|
|
53
|
+
value: "失败",
|
|
54
|
+
label: "失败",
|
|
55
|
+
color: "#ff4d4f"
|
|
56
56
|
}],
|
|
57
|
-
key:
|
|
58
|
-
info:
|
|
59
|
-
failValue:
|
|
57
|
+
key: "createStatusValue",
|
|
58
|
+
info: "createReason",
|
|
59
|
+
failValue: "失败"
|
|
60
60
|
},
|
|
61
61
|
RETURN_GOODS_STATUS: {
|
|
62
62
|
options: [{
|
|
63
|
-
value:
|
|
64
|
-
label:
|
|
65
|
-
color:
|
|
63
|
+
value: "成功",
|
|
64
|
+
label: "成功",
|
|
65
|
+
color: "#52c41a"
|
|
66
66
|
}, {
|
|
67
|
-
value:
|
|
68
|
-
label:
|
|
69
|
-
color:
|
|
67
|
+
value: "失败",
|
|
68
|
+
label: "失败",
|
|
69
|
+
color: "#ff4d4f"
|
|
70
70
|
}],
|
|
71
|
-
key:
|
|
72
|
-
info:
|
|
73
|
-
failValue:
|
|
71
|
+
key: "returnGoodsStatusValue",
|
|
72
|
+
info: "returnGoodsReason",
|
|
73
|
+
failValue: "失败"
|
|
74
74
|
}
|
|
75
75
|
};
|
|
76
76
|
var StatusSelect = /*#__PURE__*/_createClass(function StatusSelect(options) {
|
|
@@ -107,7 +107,7 @@ var StatusSelect = /*#__PURE__*/_createClass(function StatusSelect(options) {
|
|
|
107
107
|
var status = record === null || record === void 0 ? void 0 : (_record$_this$id = record[_this.id]) === null || _record$_this$id === void 0 ? void 0 : _record$_this$id.status;
|
|
108
108
|
var statusColor = ((_selectTypeMap$_this$ = selectTypeMap[_this.type].options.find(function (item) {
|
|
109
109
|
return item.value === status;
|
|
110
|
-
})) === null || _selectTypeMap$_this$ === void 0 ? void 0 : _selectTypeMap$_this$.color) ||
|
|
110
|
+
})) === null || _selectTypeMap$_this$ === void 0 ? void 0 : _selectTypeMap$_this$.color) || "#000";
|
|
111
111
|
return !isNull(record === null || record === void 0 ? void 0 : (_record$_this$id2 = record[_this.id]) === null || _record$_this$id2 === void 0 ? void 0 : _record$_this$id2.status) ? /*#__PURE__*/React.createElement(ItemView, {
|
|
112
112
|
id: _this.id,
|
|
113
113
|
label: _this.name,
|
|
@@ -115,7 +115,7 @@ var StatusSelect = /*#__PURE__*/_createClass(function StatusSelect(options) {
|
|
|
115
115
|
style: {
|
|
116
116
|
color: statusColor
|
|
117
117
|
}
|
|
118
|
-
}, record === null || record === void 0 ? void 0 : (_record$_this$id3 = record[_this.id]) === null || _record$_this$id3 === void 0 ? void 0 : _record$_this$id3.status), /*#__PURE__*/React.createElement("div", null, (record === null || record === void 0 ? void 0 : (_record$_this$id4 = record[_this.id]) === null || _record$_this$id4 === void 0 ? void 0 : _record$_this$id4.reason) ||
|
|
118
|
+
}, record === null || record === void 0 ? void 0 : (_record$_this$id3 = record[_this.id]) === null || _record$_this$id3 === void 0 ? void 0 : _record$_this$id3.status), /*#__PURE__*/React.createElement("div", null, (record === null || record === void 0 ? void 0 : (_record$_this$id4 = record[_this.id]) === null || _record$_this$id4 === void 0 ? void 0 : _record$_this$id4.reason) || ""))
|
|
119
119
|
}) : null;
|
|
120
120
|
});
|
|
121
121
|
_defineProperty(this, "renderPc", function (value, record) {
|
|
@@ -123,12 +123,12 @@ var StatusSelect = /*#__PURE__*/_createClass(function StatusSelect(options) {
|
|
|
123
123
|
var status = record === null || record === void 0 ? void 0 : record["".concat(_this.id, "_").concat(selectTypeMap[_this.type].key)];
|
|
124
124
|
var statusColor = ((_selectTypeMap$_this$2 = selectTypeMap[_this.type].options.find(function (item) {
|
|
125
125
|
return item.value === status;
|
|
126
|
-
})) === null || _selectTypeMap$_this$2 === void 0 ? void 0 : _selectTypeMap$_this$2.color) ||
|
|
126
|
+
})) === null || _selectTypeMap$_this$2 === void 0 ? void 0 : _selectTypeMap$_this$2.color) || "#000";
|
|
127
127
|
return !isNull(status) ? /*#__PURE__*/React.createElement(React.Fragment, null, /*#__PURE__*/React.createElement("div", {
|
|
128
128
|
style: {
|
|
129
129
|
color: statusColor
|
|
130
130
|
}
|
|
131
|
-
}, record === null || record === void 0 ? void 0 : record["".concat(_this.id, "_").concat(selectTypeMap[_this.type].key)]), /*#__PURE__*/React.createElement("div", null, (record === null || record === void 0 ? void 0 : record["".concat(_this.id, "_").concat(selectTypeMap[_this.type].info)]) ||
|
|
131
|
+
}, record === null || record === void 0 ? void 0 : record["".concat(_this.id, "_").concat(selectTypeMap[_this.type].key)]), /*#__PURE__*/React.createElement("div", null, (record === null || record === void 0 ? void 0 : record["".concat(_this.id, "_").concat(selectTypeMap[_this.type].info)]) || "")) : "--";
|
|
132
132
|
});
|
|
133
133
|
_defineProperty(this, "renderLog", function (r) {
|
|
134
134
|
if (isNull(r === null || r === void 0 ? void 0 : r["".concat(_this.id, "_").concat(selectTypeMap[_this.type].key)])) return null;
|
|
@@ -139,7 +139,7 @@ var StatusSelect = /*#__PURE__*/_createClass(function StatusSelect(options) {
|
|
|
139
139
|
});
|
|
140
140
|
_defineProperty(this, "renderExport", function (value, record) {
|
|
141
141
|
var _record;
|
|
142
|
-
return (_record = record === null || record === void 0 ? void 0 : record["".concat(_this.id, "_").concat(selectTypeMap[_this.type].key)]) !== null && _record !== void 0 ? _record :
|
|
142
|
+
return (_record = record === null || record === void 0 ? void 0 : record["".concat(_this.id, "_").concat(selectTypeMap[_this.type].key)]) !== null && _record !== void 0 ? _record : "--";
|
|
143
143
|
});
|
|
144
144
|
_defineProperty(this, "filterConfig", function (item) {
|
|
145
145
|
return {
|
|
@@ -149,7 +149,7 @@ var StatusSelect = /*#__PURE__*/_createClass(function StatusSelect(options) {
|
|
|
149
149
|
// 过滤组件id
|
|
150
150
|
name: item.name,
|
|
151
151
|
// 过滤组件名称
|
|
152
|
-
filterComponentType:
|
|
152
|
+
filterComponentType: "MultipleSelect",
|
|
153
153
|
props: {
|
|
154
154
|
options: selectTypeMap[_this.type].options
|
|
155
155
|
},
|
|
@@ -172,7 +172,7 @@ var StatusSelect = /*#__PURE__*/_createClass(function StatusSelect(options) {
|
|
|
172
172
|
this.isCombinationComponent = false;
|
|
173
173
|
this.canSort = true;
|
|
174
174
|
this.children = [];
|
|
175
|
-
this.dataType =
|
|
175
|
+
this.dataType = "string";
|
|
176
176
|
this.options = selectTypeMap[options.type].options;
|
|
177
177
|
});
|
|
178
178
|
export default StatusSelect;
|
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 } from
|
|
2
|
-
import { PickOption } from
|
|
3
|
-
export declare const factory: (type: string, options: PickOption) =>
|
|
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, Calculation } from "./index";
|
|
2
|
+
import { PickOption } from "./type";
|
|
3
|
+
export declare const factory: (type: string, options: PickOption) => Calculation | 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;
|
package/dist/esm/factory.js
CHANGED
|
@@ -1,143 +1,145 @@
|
|
|
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 } from "./index";
|
|
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, Calculation } 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
|
|
128
|
+
case "FLOW_WORK_ORDER_ID_INPUT":
|
|
129
129
|
return new FlowWorkOrderId(options);
|
|
130
|
-
case
|
|
130
|
+
case "OUTER_WORK_ORDER_ID_INPUT":
|
|
131
131
|
return new FlowWorkOrderId(options);
|
|
132
|
-
case
|
|
133
|
-
case
|
|
134
|
-
case
|
|
135
|
-
case
|
|
132
|
+
case "REISSUE_STATUS":
|
|
133
|
+
case "EXCHANGE_STATUS":
|
|
134
|
+
case "CREATE_STATUS":
|
|
135
|
+
case "RETURN_GOODS_STATUS":
|
|
136
136
|
return new StatusSelect(options);
|
|
137
|
-
case
|
|
138
|
-
case
|
|
139
|
-
case
|
|
137
|
+
case "REISSUE_TRADE_ID":
|
|
138
|
+
case "EXCHANGE_TRADE_ID":
|
|
139
|
+
case "RETURN_GOODS_TRADE_ID":
|
|
140
140
|
return new CommonTradeId(options);
|
|
141
|
+
case "NUMERICAL_CALCULATION":
|
|
142
|
+
return new Calculation(options);
|
|
141
143
|
default:
|
|
142
144
|
return new BasicInput(options);
|
|
143
145
|
}
|
package/dist/esm/index.d.ts
CHANGED
|
@@ -54,6 +54,7 @@ export { default as CompletedUser } from "./components/CompletedUser";
|
|
|
54
54
|
export { default as FlowWorkOrderId } from "./components/FlowWorkOrderId";
|
|
55
55
|
export { default as StatusSelect } from "./components/StatusSelect";
|
|
56
56
|
export { default as CommonTradeId } from "./components/CommonTradeId";
|
|
57
|
+
export { default as Calculation } from "./components/Calculation";
|
|
57
58
|
export { factory } from "./factory";
|
|
58
59
|
export { default as PlatformAvatar } from "./commonComponents/PlatformAvatar";
|
|
59
60
|
export { default as PlatBuyer } from "./commonComponents/PlatBuyer";
|
package/dist/esm/index.js
CHANGED
|
@@ -54,6 +54,7 @@ export { default as CompletedUser } from "./components/CompletedUser";
|
|
|
54
54
|
export { default as FlowWorkOrderId } from "./components/FlowWorkOrderId";
|
|
55
55
|
export { default as StatusSelect } from "./components/StatusSelect";
|
|
56
56
|
export { default as CommonTradeId } from "./components/CommonTradeId";
|
|
57
|
+
export { default as Calculation } from "./components/Calculation";
|
|
57
58
|
export { factory } from "./factory";
|
|
58
59
|
export { default as PlatformAvatar } from "./commonComponents/PlatformAvatar";
|
|
59
60
|
export { default as PlatBuyer } from "./commonComponents/PlatBuyer";
|
package/dist/esm/type.d.ts
CHANGED
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.18",
|
|
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.18",
|
|
30
|
+
"@kmkf-fe-packages/kmkf-utils": "^0.8.17-alpha.18"
|
|
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": "10d16627ff71ccf8e2a75ba12dd3ff061a9e7e84"
|
|
44
44
|
}
|