@das-fed/ui 6.4.0-dev.70 → 6.4.0-dev.71
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/esm-map.json +5 -1
- package/package.json +6 -5
- package/packages/business-components/index.d.ts +1 -0
- package/packages/business-components/index.js +1 -0
- package/packages/business-components/payment/api.d.ts +8 -0
- package/packages/business-components/payment/i18n/index.d.ts +68 -0
- package/packages/business-components/payment/index.d.ts +52 -0
- package/packages/business-components/payment/index.js +1818 -0
- package/packages/business-components/payment/index.js.gz +0 -0
- package/packages/business-components/payment/src/Index.vue.d.ts +7 -0
- package/packages/business-components/payment/style.css +1 -0
- package/packages/business-components/payment/type.d.ts +41 -0
- package/packages/business-components/process-log/index.js +289 -289
- package/packages/business-components/process-log/index.js.gz +0 -0
package/esm-map.json
CHANGED
|
@@ -391,5 +391,9 @@
|
|
|
391
391
|
"DasIconPasswordLock2": "/packages/icons/password-lock2/index",
|
|
392
392
|
"DasIconInputSelect": "/packages/icons/input-select/index",
|
|
393
393
|
"DasTreeV2": "/packages/components/tree-v2/index",
|
|
394
|
-
"DasTreeV2Ref": "/packages/components/tree-v2/index"
|
|
394
|
+
"DasTreeV2Ref": "/packages/components/tree-v2/index",
|
|
395
|
+
"DasPaymentRef": "/packages/business-components/payment/index",
|
|
396
|
+
"DasPayment": "/packages/business-components/payment/index",
|
|
397
|
+
"ProviderMenu": "/packages/business-components/payment/index",
|
|
398
|
+
"PayStatusCode": "/packages/business-components/payment/index"
|
|
395
399
|
}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@das-fed/ui",
|
|
3
|
-
"version": "6.4.0-dev.
|
|
3
|
+
"version": "6.4.0-dev.71",
|
|
4
4
|
"description": "",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"main": "./index.js",
|
|
@@ -26,7 +26,7 @@
|
|
|
26
26
|
"@antv/x6-plugin-snapline": "^2.1.7",
|
|
27
27
|
"@antv/x6-plugin-transform": "^2.1.8",
|
|
28
28
|
"@antv/x6-vue-shape": "^2.1.2",
|
|
29
|
-
"@das-fed/cli": "6.4.0-dev.
|
|
29
|
+
"@das-fed/cli": "6.4.0-dev.71",
|
|
30
30
|
"@element-plus/icons-vue": "^2.3.1",
|
|
31
31
|
"@types/lodash": "^4.14.194",
|
|
32
32
|
"@types/lodash-es": "^4.17.9",
|
|
@@ -56,9 +56,9 @@
|
|
|
56
56
|
"vue-tsc": "^2.0.29"
|
|
57
57
|
},
|
|
58
58
|
"dependencies": {
|
|
59
|
-
"@das-fed/ui": "6.4.0-dev.
|
|
60
|
-
"@das-fed/utils": "6.4.0-dev.
|
|
61
|
-
"@das-fed/web": "6.4.0-dev.
|
|
59
|
+
"@das-fed/ui": "6.4.0-dev.71",
|
|
60
|
+
"@das-fed/utils": "6.4.0-dev.71",
|
|
61
|
+
"@das-fed/web": "6.4.0-dev.71",
|
|
62
62
|
"@wangeditor/editor": "^5.1.23",
|
|
63
63
|
"@wangeditor/editor-for-vue": "^5.1.12",
|
|
64
64
|
"@wangeditor/plugin-upload-attachment": "^1.1.0",
|
|
@@ -74,6 +74,7 @@
|
|
|
74
74
|
"nanoid": "3.2.0",
|
|
75
75
|
"overlayscrollbars": "2.6.1",
|
|
76
76
|
"pinia": "^2.1.7",
|
|
77
|
+
"qrcode": "^1.5.4",
|
|
77
78
|
"sortablejs": "^1.15.2",
|
|
78
79
|
"vue-virtual-scroller": "2.0.0-beta.8"
|
|
79
80
|
},
|
|
@@ -8,6 +8,7 @@ export * from './export-button';
|
|
|
8
8
|
export * from './import-button';
|
|
9
9
|
export * from './layout-breadcrumb';
|
|
10
10
|
export * from './model-table-dialog';
|
|
11
|
+
export * from './payment';
|
|
11
12
|
export * from './process-configuration';
|
|
12
13
|
export * from './process-form';
|
|
13
14
|
export * from './process-log';
|
|
@@ -8,6 +8,7 @@ export * from './export-button'
|
|
|
8
8
|
export * from './import-button'
|
|
9
9
|
export * from './layout-breadcrumb'
|
|
10
10
|
export * from './model-table-dialog'
|
|
11
|
+
export * from './payment'
|
|
11
12
|
export * from './process-configuration'
|
|
12
13
|
export * from './process-form'
|
|
13
14
|
export * from './process-log'
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
export declare const payService: {
|
|
2
|
+
get: (url: string | import("vue").Ref | import("vue").ComputedRef, urlConfig?: import("@das-fed/utils/curring-http/type").CurringConfigFun) => (payload?: any, payloadConfig?: import("@das-fed/utils/curring-http/type").CurringConfig) => import("@das-fed/utils/curring-http/type").CurringRes;
|
|
3
|
+
post: (url: string | import("vue").Ref | import("vue").ComputedRef, urlConfig?: import("@das-fed/utils/curring-http/type").CurringConfigFun) => (payload?: any, payloadConfig?: import("@das-fed/utils/curring-http/type").CurringConfig) => import("@das-fed/utils/curring-http/type").CurringRes;
|
|
4
|
+
put: (url: string | import("vue").Ref | import("vue").ComputedRef, urlConfig?: import("@das-fed/utils/curring-http/type").CurringConfigFun) => (payload?: any, payloadConfig?: import("@das-fed/utils/curring-http/type").CurringConfig) => import("@das-fed/utils/curring-http/type").CurringRes;
|
|
5
|
+
patch: (url: string | import("vue").Ref | import("vue").ComputedRef, urlConfig?: import("@das-fed/utils/curring-http/type").CurringConfigFun) => (payload?: any, payloadConfig?: import("@das-fed/utils/curring-http/type").CurringConfig) => import("@das-fed/utils/curring-http/type").CurringRes;
|
|
6
|
+
delete: (url: string | import("vue").Ref | import("vue").ComputedRef, urlConfig?: import("@das-fed/utils/curring-http/type").CurringConfigFun) => (payload?: any, payloadConfig?: import("@das-fed/utils/curring-http/type").CurringConfig) => import("@das-fed/utils/curring-http/type").CurringRes;
|
|
7
|
+
};
|
|
8
|
+
export declare const getOrderState: (payload?: any, payloadConfig?: import("@das-fed/utils/curring-http/type").CurringConfig) => import("@das-fed/utils/curring-http/type").CurringRes;
|
|
@@ -0,0 +1,68 @@
|
|
|
1
|
+
declare const _default: {
|
|
2
|
+
请选择支付方式: {
|
|
3
|
+
'zh-CN': string;
|
|
4
|
+
en: string;
|
|
5
|
+
_appCode: string;
|
|
6
|
+
};
|
|
7
|
+
订单金额: {
|
|
8
|
+
'zh-CN': string;
|
|
9
|
+
en: string;
|
|
10
|
+
_appCode: string;
|
|
11
|
+
};
|
|
12
|
+
支付方式: {
|
|
13
|
+
'zh-CN': string;
|
|
14
|
+
en: string;
|
|
15
|
+
_appCode: string;
|
|
16
|
+
};
|
|
17
|
+
剩余交易时间: {
|
|
18
|
+
'zh-CN': string;
|
|
19
|
+
en: string;
|
|
20
|
+
_appCode: string;
|
|
21
|
+
};
|
|
22
|
+
关闭: {
|
|
23
|
+
'zh-CN': string;
|
|
24
|
+
en: string;
|
|
25
|
+
_appCode: string;
|
|
26
|
+
};
|
|
27
|
+
提示: {
|
|
28
|
+
'zh-CN': string;
|
|
29
|
+
en: string;
|
|
30
|
+
_appCode: string;
|
|
31
|
+
};
|
|
32
|
+
支付成功: {
|
|
33
|
+
'zh-CN': string;
|
|
34
|
+
en: string;
|
|
35
|
+
_appCode: string;
|
|
36
|
+
};
|
|
37
|
+
我知道了: {
|
|
38
|
+
'zh-CN': string;
|
|
39
|
+
en: string;
|
|
40
|
+
_appCode: string;
|
|
41
|
+
};
|
|
42
|
+
'\u652F\u4ED8\u5931\u8D25\uFF0C\u8BF7\u91CD\u65B0\u652F\u4ED8\u3002': {
|
|
43
|
+
'zh-CN': string;
|
|
44
|
+
en: string;
|
|
45
|
+
_appCode: string;
|
|
46
|
+
};
|
|
47
|
+
支付宝: {
|
|
48
|
+
'zh-CN': string;
|
|
49
|
+
en: string;
|
|
50
|
+
_appCode: string;
|
|
51
|
+
};
|
|
52
|
+
微信: {
|
|
53
|
+
'zh-CN': string;
|
|
54
|
+
en: string;
|
|
55
|
+
_appCode: string;
|
|
56
|
+
};
|
|
57
|
+
订单超时: {
|
|
58
|
+
'zh-CN': string;
|
|
59
|
+
en: string;
|
|
60
|
+
_appCode: string;
|
|
61
|
+
};
|
|
62
|
+
支付失败: {
|
|
63
|
+
'zh-CN': string;
|
|
64
|
+
en: string;
|
|
65
|
+
_appCode: string;
|
|
66
|
+
};
|
|
67
|
+
};
|
|
68
|
+
export default _default;
|
|
@@ -0,0 +1,52 @@
|
|
|
1
|
+
import '@das-fed/ui/packages/global/theme';
|
|
2
|
+
declare const DasPaymentRef: () => import("vue").Ref<import("vue").CreateComponentPublicInstanceWithMixins<Readonly<import("./type.js").DasPaymentProps> & Readonly<{
|
|
3
|
+
"onUpdate:show"?: ((...args: any[]) => any) | undefined;
|
|
4
|
+
}>, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
|
|
5
|
+
"update:show": (...args: any[]) => void;
|
|
6
|
+
}, import("vue").PublicProps, {}, false, {}, {}, import("vue").GlobalComponents, import("vue").GlobalDirectives, string, {}, any, import("vue").ComponentProvideOptions, {
|
|
7
|
+
P: {};
|
|
8
|
+
B: {};
|
|
9
|
+
D: {};
|
|
10
|
+
C: {};
|
|
11
|
+
M: {};
|
|
12
|
+
Defaults: {};
|
|
13
|
+
}, Readonly<import("./type.js").DasPaymentProps> & Readonly<{
|
|
14
|
+
"onUpdate:show"?: ((...args: any[]) => any) | undefined;
|
|
15
|
+
}>, {}, {}, {}, {}, {}> | null, import("vue").CreateComponentPublicInstanceWithMixins<Readonly<import("./type.js").DasPaymentProps> & Readonly<{
|
|
16
|
+
"onUpdate:show"?: ((...args: any[]) => any) | undefined;
|
|
17
|
+
}>, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
|
|
18
|
+
"update:show": (...args: any[]) => void;
|
|
19
|
+
}, import("vue").PublicProps, {}, false, {}, {}, import("vue").GlobalComponents, import("vue").GlobalDirectives, string, {}, any, import("vue").ComponentProvideOptions, {
|
|
20
|
+
P: {};
|
|
21
|
+
B: {};
|
|
22
|
+
D: {};
|
|
23
|
+
C: {};
|
|
24
|
+
M: {};
|
|
25
|
+
Defaults: {};
|
|
26
|
+
}, Readonly<import("./type.js").DasPaymentProps> & Readonly<{
|
|
27
|
+
"onUpdate:show"?: ((...args: any[]) => any) | undefined;
|
|
28
|
+
}>, {}, {}, {}, {}, {}> | null>;
|
|
29
|
+
declare const DasPayment: import("@das-fed/utils").SFCWithInstall<import("vue").DefineComponent<import("./type.js").DasPaymentProps, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
|
|
30
|
+
"update:show": (...args: any[]) => void;
|
|
31
|
+
}, string, import("vue").PublicProps, Readonly<import("./type.js").DasPaymentProps> & Readonly<{
|
|
32
|
+
"onUpdate:show"?: ((...args: any[]) => any) | undefined;
|
|
33
|
+
}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>>;
|
|
34
|
+
declare enum ProviderMenu {
|
|
35
|
+
'wechat' = "wechat",
|
|
36
|
+
'alipay' = "alipay"
|
|
37
|
+
}
|
|
38
|
+
declare enum PayStatusCode {
|
|
39
|
+
NOTPAY = 0,
|
|
40
|
+
USERPAYING = 1,
|
|
41
|
+
ACCEPT = 2,
|
|
42
|
+
PAYERROR = 3,
|
|
43
|
+
REVOKED = 64,
|
|
44
|
+
SUCCESS = 65,
|
|
45
|
+
CLOSED = 66,
|
|
46
|
+
REFUND = 67
|
|
47
|
+
}
|
|
48
|
+
export { DasPaymentRef, DasPayment, ProviderMenu, PayStatusCode };
|
|
49
|
+
declare const _default: {
|
|
50
|
+
name: string;
|
|
51
|
+
};
|
|
52
|
+
export default _default;
|