@kmkf-fe-packages/services-components 0.26.0-alpha.8 → 0.26.1-beta.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/components/BuyerNick/index.d.ts +3 -3
- package/dist/esm/components/BuyerNick/index.js +9 -19
- package/dist/esm/components/Common/index.d.ts +1 -0
- package/dist/esm/components/Common/index.js +74 -3
- package/dist/esm/components/CommonInput/index.d.ts +44 -0
- package/dist/esm/components/CommonInput/index.js +146 -0
- package/dist/esm/components/LogisticsInterception/InterceptStatus.d.ts +2 -2
- package/dist/esm/components/LogisticsInterception/InterceptStatus.js +1 -1
- package/dist/esm/components/LogisticsMoreInterception/InterceptAddress.d.ts +31 -0
- package/dist/esm/components/LogisticsMoreInterception/InterceptAddress.js +87 -0
- package/dist/esm/components/LogisticsMoreInterception/InterceptStatus.d.ts +46 -0
- package/dist/esm/components/LogisticsMoreInterception/InterceptStatus.js +109 -0
- package/dist/esm/components/LogisticsMoreInterception/InterceptType.d.ts +44 -0
- package/dist/esm/components/LogisticsMoreInterception/InterceptType.js +96 -0
- package/dist/esm/components/LogisticsMoreInterception/columnHeader.d.ts +5 -0
- package/dist/esm/components/LogisticsMoreInterception/columnHeader.js +55 -0
- package/dist/esm/components/LogisticsMoreInterception/index.d.ts +69 -0
- package/dist/esm/components/LogisticsMoreInterception/index.js +184 -0
- package/dist/esm/components/LogisticsMoreInterception/interceptCompany.d.ts +39 -0
- package/dist/esm/components/LogisticsMoreInterception/interceptCompany.js +88 -0
- package/dist/esm/components/LogisticsMoreInterception/interceptItem.d.ts +34 -0
- package/dist/esm/components/LogisticsMoreInterception/interceptItem.js +81 -0
- package/dist/esm/components/LogisticsMoreInterception/interceptSenderMobile.d.ts +35 -0
- package/dist/esm/components/LogisticsMoreInterception/interceptSenderMobile.js +82 -0
- package/dist/esm/components/LogisticsMoreInterception/interceptSnapshot.d.ts +34 -0
- package/dist/esm/components/LogisticsMoreInterception/interceptSnapshot.js +81 -0
- package/dist/esm/components/Payment/PaymentStatus.d.ts +4 -4
- package/dist/esm/components/Payment/PaymentStatus.js +30 -30
- package/dist/esm/components/PaymentVoucherCode/index.d.ts +33 -0
- package/dist/esm/components/PaymentVoucherCode/index.js +104 -0
- package/dist/esm/constant.js +12 -13
- package/dist/esm/factory.d.ts +2 -2
- package/dist/esm/factory.js +15 -8
- package/dist/esm/index.d.ts +4 -1
- package/dist/esm/index.js +3 -0
- package/dist/esm/service/api.d.ts +1 -0
- package/dist/esm/service/api.js +8 -0
- package/package.json +4 -4
|
@@ -0,0 +1,104 @@
|
|
|
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 } from "@kmkf-fe-packages/kmkf-utils";
|
|
14
|
+
import { SYMBOL } from "../../constant";
|
|
15
|
+
import { AlipayBill } from "../Common/index";
|
|
16
|
+
var PaymentVoucherCode = /*#__PURE__*/_createClass(function PaymentVoucherCode(options) {
|
|
17
|
+
var _this = this;
|
|
18
|
+
_classCallCheck(this, PaymentVoucherCode);
|
|
19
|
+
_defineProperty(this, "name", void 0);
|
|
20
|
+
_defineProperty(this, "id", void 0);
|
|
21
|
+
_defineProperty(this, "sortField", void 0);
|
|
22
|
+
_defineProperty(this, "type", void 0);
|
|
23
|
+
_defineProperty(this, "rules", void 0);
|
|
24
|
+
_defineProperty(this, "componentConfig", void 0);
|
|
25
|
+
_defineProperty(this, "isCombinationComponent", void 0);
|
|
26
|
+
_defineProperty(this, "formField", void 0);
|
|
27
|
+
_defineProperty(this, "canSort", void 0);
|
|
28
|
+
_defineProperty(this, "children", void 0);
|
|
29
|
+
_defineProperty(this, "dataType", void 0);
|
|
30
|
+
_defineProperty(this, "templateId", void 0);
|
|
31
|
+
_defineProperty(this, "workOrderUniqueKey", void 0);
|
|
32
|
+
_defineProperty(this, "effects", void 0);
|
|
33
|
+
_defineProperty(this, "renderPc", function (value, record) {
|
|
34
|
+
var _this$effects;
|
|
35
|
+
if (isNull(record === null || record === void 0 ? void 0 : record["".concat(_this.id, "_paymentVoucherCode")])) return "--";
|
|
36
|
+
return /*#__PURE__*/React.createElement(AlipayBill, {
|
|
37
|
+
value: record === null || record === void 0 ? void 0 : record["".concat(_this.id, "_paymentVoucherCode")],
|
|
38
|
+
platform: (_this$effects = _this.effects) === null || _this$effects === void 0 ? void 0 : _this$effects.env
|
|
39
|
+
});
|
|
40
|
+
});
|
|
41
|
+
_defineProperty(this, "renderLog", function (r) {
|
|
42
|
+
if (isNull(r === null || r === void 0 ? void 0 : r["".concat(_this.id, "_paymentVoucherCode")])) return null;
|
|
43
|
+
return _this.renderPc(undefined, r);
|
|
44
|
+
});
|
|
45
|
+
_defineProperty(this, "getComponentValue", function (r) {
|
|
46
|
+
return r === null || r === void 0 ? void 0 : r["".concat(_this.id, "_paymentVoucherCode")];
|
|
47
|
+
});
|
|
48
|
+
_defineProperty(this, "renderExport", function (value, record) {
|
|
49
|
+
var _record;
|
|
50
|
+
return (_record = record === null || record === void 0 ? void 0 : record["".concat(_this.id, "_paymentVoucherCode")]) !== null && _record !== void 0 ? _record : "--";
|
|
51
|
+
});
|
|
52
|
+
_defineProperty(this, "renderClient", function (record) {
|
|
53
|
+
var _this$effects2;
|
|
54
|
+
return !isNull(record === null || record === void 0 ? void 0 : record[_this.id]) ? /*#__PURE__*/React.createElement(ItemView, {
|
|
55
|
+
id: _this.id,
|
|
56
|
+
label: _this.name,
|
|
57
|
+
value: /*#__PURE__*/React.createElement(AlipayBill, {
|
|
58
|
+
value: record === null || record === void 0 ? void 0 : record[_this.id],
|
|
59
|
+
platform: (_this$effects2 = _this.effects) === null || _this$effects2 === void 0 ? void 0 : _this$effects2.env
|
|
60
|
+
})
|
|
61
|
+
}) : null;
|
|
62
|
+
});
|
|
63
|
+
_defineProperty(this, "editRender", function (p) {
|
|
64
|
+
var _this$componentConfig, _this$componentConfig2;
|
|
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
|
+
display: p === null || p === void 0 ? void 0 : p.display,
|
|
71
|
+
required: (_this$componentConfig = (_this$componentConfig2 = _this.componentConfig) === null || _this$componentConfig2 === void 0 ? void 0 : _this$componentConfig2.required) !== null && _this$componentConfig !== void 0 ? _this$componentConfig : false,
|
|
72
|
+
component: /*#__PURE__*/React.createElement(ApaasInput, _extends({}, _this.componentConfig, {
|
|
73
|
+
placeholder: "\u81EA\u52A8\u83B7\u53D6\u65E0\u9700\u586B\u5199",
|
|
74
|
+
disabled: true
|
|
75
|
+
}))
|
|
76
|
+
});
|
|
77
|
+
});
|
|
78
|
+
_defineProperty(this, "filterConfig", function (item) {
|
|
79
|
+
return {
|
|
80
|
+
searchDefaultConditions: SYMBOL.like,
|
|
81
|
+
type: item.type,
|
|
82
|
+
id: "".concat(item.id, "_paymentVoucherCode"),
|
|
83
|
+
// 过滤组件id
|
|
84
|
+
name: item.name,
|
|
85
|
+
// 过滤组件名称
|
|
86
|
+
filterComponentType: "Input"
|
|
87
|
+
};
|
|
88
|
+
});
|
|
89
|
+
this.name = options.name;
|
|
90
|
+
this.id = options.id;
|
|
91
|
+
this.sortField = "".concat(options.id, "_paymentVoucherCode");
|
|
92
|
+
this.formField = "".concat(options.id, "_paymentVoucherCode");
|
|
93
|
+
this.type = options.type;
|
|
94
|
+
this.templateId = options.templateId;
|
|
95
|
+
this.componentConfig = options.componentConfig;
|
|
96
|
+
this.workOrderUniqueKey = options === null || options === void 0 ? void 0 : options.workOrderUniqueKey;
|
|
97
|
+
this.rules = [];
|
|
98
|
+
this.isCombinationComponent = false;
|
|
99
|
+
this.canSort = false;
|
|
100
|
+
this.children = [];
|
|
101
|
+
this.dataType = "string";
|
|
102
|
+
this.effects = options.effects;
|
|
103
|
+
});
|
|
104
|
+
export default PaymentVoucherCode;
|
package/dist/esm/constant.js
CHANGED
|
@@ -1,19 +1,18 @@
|
|
|
1
1
|
export var SYMBOL = {
|
|
2
|
-
between:
|
|
3
|
-
eq:
|
|
4
|
-
like:
|
|
5
|
-
gt:
|
|
6
|
-
gte:
|
|
7
|
-
lt:
|
|
8
|
-
lte:
|
|
9
|
-
ne:
|
|
10
|
-
in:
|
|
11
|
-
nin:
|
|
12
|
-
non:
|
|
13
|
-
notnull:
|
|
2
|
+
between: "between",
|
|
3
|
+
eq: "eq",
|
|
4
|
+
like: "like",
|
|
5
|
+
gt: "gt",
|
|
6
|
+
gte: "gte",
|
|
7
|
+
lt: "lt",
|
|
8
|
+
lte: "lte",
|
|
9
|
+
ne: "ne",
|
|
10
|
+
in: "in",
|
|
11
|
+
nin: "nin",
|
|
12
|
+
non: "non",
|
|
13
|
+
notnull: "notnull"
|
|
14
14
|
};
|
|
15
15
|
export var batchInput = function batchInput(val) {
|
|
16
|
-
console.log('batchInput', val);
|
|
17
16
|
return val ? val.split(/[,|,|\s|\n|\rn]/).filter(function (t) {
|
|
18
17
|
return !!t;
|
|
19
18
|
}).map(function (t) {
|
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, FlowMarkSelect, FlowTag, Payment, TemplateSelect, WorkOrderId, PlatForm, ShopInput, Submitter, PrevSubmitter, FlowCreator, Handler, CompletedUser, LogisticsInterception, LogisticsTrajectory, LogisticsMoreTrajectory, FlowWorkOrderId, BsGoods, BsExchange, BsReissue, BsReturn, BsSystemOrder, BsLogistics, StatusSelect, CommonSystemOrder, CommonMultiStatus, Calculation, NodeDeadLine, HandlerDeadLine, NodeStayDuration, WlnGoods, BsPosting, MsgStatus, WdtGoods } 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, FlowMarkSelect, FlowTag, Payment, TemplateSelect, WorkOrderId, PlatForm, ShopInput, Submitter, PrevSubmitter, FlowCreator, Handler, CompletedUser, LogisticsInterception, LogisticsMoreInterception, LogisticsTrajectory, LogisticsMoreTrajectory, FlowWorkOrderId, BsGoods, BsExchange, BsReissue, BsReturn, BsSystemOrder, BsLogistics, StatusSelect, CommonSystemOrder, CommonMultiStatus, Calculation, NodeDeadLine, HandlerDeadLine, NodeStayDuration, WlnGoods, BsPosting, MsgStatus, WdtGoods, CommonInput, PaymentVoucherCode } from "./index";
|
|
2
2
|
import { PickOption } from "./type";
|
|
3
|
-
export declare const factory: (type: string, options: PickOption) =>
|
|
3
|
+
export declare const factory: (type: string, options: PickOption) => ActualPayment | BasicAddress | AliPay | BsExchange | BsGoods | BsLogistics | BsPosting | BsReissue | BsReturn | BsSystemOrder | BuyerNick | Calculation | BasicCascader | BasicCheckbox | CommonInput | CommonMultiStatus | CommonSystemOrder | BasicDataTime | ItemEnCode | ItemId | ItemSelect | ErpTradeId | BasicFile | FlowMarkSelect | FlowStatusSelect | FlowTag | FlowWorkOrderId | BasicGrade | BasicInput | JstItemSelect | JstLogistics | JstSendGood | JstSupply | Logistics | LogisticsInterception | LogisticsMoreInterception | LogisticsMoreTrajectory | LogisticsTrajectory | MsgStatus | BasicMultSelect | Ordinary | Payment | PaymentVoucherCode | BasicPicture | BasicPosting | BasicRadio | BasicRate | ReceiverAddress | ReceiverMobile | ReceiverName | ERemark | ReturnLogistics | BasicSelect | ShopName | StatusSelect | SystemOrderNo | BasicTextArea | ThirdItemSelect | TradeDateTime | TradeId | WdtGoods | WlnGoods | WorkOrderId | CommonDataTime | TemplateSelect | PlatForm | ShopInput | Submitter | PrevSubmitter | FlowCreator | Handler | CompletedUser | NodeDeadLine | HandlerDeadLine | NodeStayDuration;
|
package/dist/esm/factory.js
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
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, FlowMarkSelect, FlowTag, Payment, TemplateSelect, WorkOrderId, PlatForm, ShopInput, Submitter, PrevSubmitter, FlowCreator, Handler, CompletedUser, LogisticsInterception, LogisticsTrajectory, LogisticsMoreTrajectory, FlowWorkOrderId, BsGoods, BsExchange, BsReissue, BsReturn, BsSystemOrder, BsLogistics, StatusSelect,
|
|
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, FlowMarkSelect, FlowTag, Payment, TemplateSelect, WorkOrderId, PlatForm, ShopInput, Submitter, PrevSubmitter, FlowCreator, Handler, CompletedUser, LogisticsInterception, LogisticsMoreInterception, LogisticsTrajectory, LogisticsMoreTrajectory, FlowWorkOrderId, BsGoods, BsExchange, BsReissue, BsReturn, BsSystemOrder, BsLogistics, StatusSelect,
|
|
2
2
|
// CommonTradeId,
|
|
3
|
-
CommonSystemOrder, CommonMultiStatus, Calculation, NodeDeadLine, HandlerDeadLine, NodeStayDuration, WlnGoods, BsPosting, MsgStatus, WdtGoods } from "./index";
|
|
3
|
+
CommonSystemOrder, CommonMultiStatus, Calculation, NodeDeadLine, HandlerDeadLine, NodeStayDuration, WlnGoods, BsPosting, MsgStatus, WdtGoods, CommonInput, PaymentVoucherCode } from "./index";
|
|
4
4
|
export var factory = function factory(type, options) {
|
|
5
5
|
var _options$componentCon;
|
|
6
6
|
switch (type) {
|
|
@@ -96,6 +96,8 @@ export var factory = function factory(type, options) {
|
|
|
96
96
|
return new SystemOrderNo(options);
|
|
97
97
|
case "LOGISTICS_INTERCEPTION":
|
|
98
98
|
return new LogisticsInterception(options);
|
|
99
|
+
case "LOGISTICS_INTERCEPTION_MORE":
|
|
100
|
+
return new LogisticsMoreInterception(options);
|
|
99
101
|
case "LOGISTICS_TRAJECTORY":
|
|
100
102
|
return new LogisticsTrajectory(options);
|
|
101
103
|
case "LOGISTICS_TRAJECTORY_MORE":
|
|
@@ -171,23 +173,28 @@ export var factory = function factory(type, options) {
|
|
|
171
173
|
// case "REISSUE_TRADE_ID":
|
|
172
174
|
// case 'EXCHANGE_TRADE_ID':
|
|
173
175
|
// return new CommonTradeId(options);
|
|
174
|
-
case
|
|
176
|
+
case "NUMERICAL_CALCULATION":
|
|
175
177
|
return new Calculation(options);
|
|
176
|
-
case
|
|
178
|
+
case "NODE_DEAD_LINE_INPUT":
|
|
177
179
|
// 工单时效
|
|
178
180
|
return new NodeDeadLine(options);
|
|
179
|
-
case
|
|
181
|
+
case "HANDLER_DEAD_LINE_INPUT":
|
|
180
182
|
// 处理人时效
|
|
181
183
|
return new HandlerDeadLine(options);
|
|
182
|
-
case
|
|
184
|
+
case "NODE_STAY_DURATION_INPUT":
|
|
183
185
|
// 工单停留时长
|
|
184
186
|
return new NodeStayDuration(options);
|
|
185
|
-
case
|
|
187
|
+
case "WLN_GOODS":
|
|
186
188
|
// 万里牛商品
|
|
187
189
|
return new WlnGoods(options);
|
|
188
|
-
case
|
|
190
|
+
case "WDT_GOODS":
|
|
189
191
|
// 万里牛商品
|
|
190
192
|
return new WdtGoods(options);
|
|
193
|
+
case "NEW_PAYMENT_STATUS":
|
|
194
|
+
case "BUSINESS_ORDER_NO":
|
|
195
|
+
return new CommonInput(options);
|
|
196
|
+
case "PAYMENT_VOUCHER_CODE":
|
|
197
|
+
return new PaymentVoucherCode(options);
|
|
191
198
|
default:
|
|
192
199
|
return new BasicInput(options);
|
|
193
200
|
}
|
package/dist/esm/index.d.ts
CHANGED
|
@@ -49,6 +49,7 @@ export { default as FlowTag } from "./components/FlowTag";
|
|
|
49
49
|
export { default as TemplateSelect } from "./components/TemplateSelect";
|
|
50
50
|
export { default as WorkOrderId } from "./components/WorkOrderId";
|
|
51
51
|
export { default as LogisticsInterception } from "./components/LogisticsInterception";
|
|
52
|
+
export { default as LogisticsMoreInterception } from "./components/LogisticsMoreInterception";
|
|
52
53
|
export { default as LogisticsTrajectory } from "./components/LogisticsTrajectory";
|
|
53
54
|
export { default as LogisticsMoreTrajectory } from "./components/LogisticsMoreTrajectory";
|
|
54
55
|
export { default as PlatForm } from "./components/PlatForm";
|
|
@@ -69,8 +70,10 @@ export { default as HandlerDeadLine } from "./components/HandlerDeadLine";
|
|
|
69
70
|
export { default as NodeStayDuration } from "./components/NodeStayDuration";
|
|
70
71
|
export { default as WlnGoods } from "./components/WLN/WlnGoods";
|
|
71
72
|
export { default as BsPosting } from "./components/BS/BsPosting";
|
|
72
|
-
export { default as MsgStatus } from
|
|
73
|
+
export { default as MsgStatus } from "./components/MsgStatus";
|
|
73
74
|
export { default as WdtGoods } from "./components/WDT/WdtGoods";
|
|
75
|
+
export { default as CommonInput } from "./components/CommonInput";
|
|
76
|
+
export { default as PaymentVoucherCode } from "./components/PaymentVoucherCode";
|
|
74
77
|
export { factory } from "./factory";
|
|
75
78
|
export { default as PlatformAvatar } from "./commonComponents/PlatformAvatar";
|
|
76
79
|
export { default as SelectMark } from "./commonComponents/SelectMark";
|
package/dist/esm/index.js
CHANGED
|
@@ -49,6 +49,7 @@ export { default as FlowTag } from "./components/FlowTag";
|
|
|
49
49
|
export { default as TemplateSelect } from "./components/TemplateSelect";
|
|
50
50
|
export { default as WorkOrderId } from "./components/WorkOrderId";
|
|
51
51
|
export { default as LogisticsInterception } from "./components/LogisticsInterception";
|
|
52
|
+
export { default as LogisticsMoreInterception } from "./components/LogisticsMoreInterception";
|
|
52
53
|
export { default as LogisticsTrajectory } from "./components/LogisticsTrajectory";
|
|
53
54
|
export { default as LogisticsMoreTrajectory } from "./components/LogisticsMoreTrajectory";
|
|
54
55
|
export { default as PlatForm } from "./components/PlatForm";
|
|
@@ -71,6 +72,8 @@ export { default as WlnGoods } from "./components/WLN/WlnGoods";
|
|
|
71
72
|
export { default as BsPosting } from "./components/BS/BsPosting";
|
|
72
73
|
export { default as MsgStatus } from "./components/MsgStatus";
|
|
73
74
|
export { default as WdtGoods } from "./components/WDT/WdtGoods";
|
|
75
|
+
export { default as CommonInput } from "./components/CommonInput";
|
|
76
|
+
export { default as PaymentVoucherCode } from "./components/PaymentVoucherCode";
|
|
74
77
|
export { factory } from "./factory";
|
|
75
78
|
export { default as PlatformAvatar } from "./commonComponents/PlatformAvatar";
|
|
76
79
|
export { default as SelectMark } from "./commonComponents/SelectMark";
|
package/dist/esm/service/api.js
CHANGED
|
@@ -6,4 +6,12 @@ export var replaceCheck = function replaceCheck(data) {
|
|
|
6
6
|
method: 'post',
|
|
7
7
|
data: data
|
|
8
8
|
});
|
|
9
|
+
};
|
|
10
|
+
// 获取支付宝电子回单
|
|
11
|
+
export var getAlipayBillReceipt = function getAlipayBillReceipt(data) {
|
|
12
|
+
return request({
|
|
13
|
+
url: '/qy/payment/paymentOrder/getAlipayBillReceipt',
|
|
14
|
+
method: 'post',
|
|
15
|
+
data: data
|
|
16
|
+
});
|
|
9
17
|
};
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@kmkf-fe-packages/services-components",
|
|
3
|
-
"version": "0.26.
|
|
3
|
+
"version": "0.26.1-beta.0",
|
|
4
4
|
"module": "dist/esm/index.js",
|
|
5
5
|
"typings": "dist/esm/index.d.ts",
|
|
6
6
|
"files": [
|
|
@@ -20,8 +20,8 @@
|
|
|
20
20
|
]
|
|
21
21
|
},
|
|
22
22
|
"dependencies": {
|
|
23
|
-
"@kmkf-fe-packages/basic-components": "^0.26.
|
|
24
|
-
"@kmkf-fe-packages/kmkf-utils": "^0.26.
|
|
23
|
+
"@kmkf-fe-packages/basic-components": "^0.26.1-beta.0",
|
|
24
|
+
"@kmkf-fe-packages/kmkf-utils": "^0.26.1-beta.0"
|
|
25
25
|
},
|
|
26
26
|
"devDependencies": {
|
|
27
27
|
"@typescript-eslint/eslint-plugin": "^5.59.2",
|
|
@@ -37,7 +37,7 @@
|
|
|
37
37
|
"publishConfig": {
|
|
38
38
|
"access": "public"
|
|
39
39
|
},
|
|
40
|
-
"gitHead": "
|
|
40
|
+
"gitHead": "6076021dddd379f70de619adfa2217a16b712f14",
|
|
41
41
|
"gitHooks": {
|
|
42
42
|
"pre-commit": "lint-staged"
|
|
43
43
|
}
|