xyvcard-paper-buyer 0.0.38 → 0.0.40
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/{applyEdit-Dawg7OOU.mjs → applyEdit-B0CKdbR2.mjs} +25 -26
- package/dist/{confirm-2p5e0YTd.mjs → confirm-HoPA9uSr.mjs} +57 -57
- package/dist/index-B90ZLkZ9.mjs +98 -0
- package/dist/{index-VA1xSPHO.mjs → index-BqwYBqQF.mjs} +1 -1
- package/dist/{index-cet93VuQ.mjs → index-CX-7x1SL.mjs} +149 -144
- package/dist/{index-TclOpCe_.mjs → index-DspCttgG.mjs} +10 -27
- package/dist/{index-Ckvv9EJa.mjs → index-DyTbbNUO.mjs} +410 -405
- package/dist/index.mjs +2 -2
- package/dist/{info-BbZDNkKB.mjs → info-BhjWwF6z.mjs} +1 -1
- package/dist/{invoice-1CME5d68.mjs → invoice-DppfMFDj.mjs} +1 -1
- package/dist/{invoiceEdit-BheiUTbA.mjs → invoiceEdit-BKEb7oNj.mjs} +51 -51
- package/dist/{invoiceView-BzauDq3v.mjs → invoiceView-41EDyu0B.mjs} +2 -2
- package/dist/{list-Gi-uC47c.mjs → list-DNIbCic-.mjs} +1 -1
- package/dist/onlineBanking-BIjxFuQ5.mjs +199 -0
- package/dist/{orderAddress-BLmoG7St.mjs → orderAddress-BHmLnG9Z.mjs} +1 -1
- package/dist/orderInfo-CiPVCQxz.mjs +306 -0
- package/dist/{orderPaper-CRqHO_qE.mjs → orderPaper-DLv8c7Hi.mjs} +1 -1
- package/dist/{payment-Bj2wv7Zf.mjs → payment-B8q1Mpiy.mjs} +1 -1
- package/dist/{prompt-D3JrKZHk.mjs → prompt-CF5J3V95.mjs} +4 -4
- package/dist/{sendDialog-DQhLGAf_.mjs → sendDialog-D50t3cjw.mjs} +1 -1
- package/dist/style.css +1 -1
- package/dist/{userInvoice-S09QEhkA.mjs → userInvoice-DhoqnQE4.mjs} +1 -1
- package/dist/{userInvoice.vue_vue_type_script_setup_true_lang-cUHb_KPE.mjs → userInvoice.vue_vue_type_script_setup_true_lang-DV5JSa_i.mjs} +119 -100
- package/dts/api/buyer/lqfp-fp/index.d.ts +1 -3
- package/dts/api/buyer/lqfp-fp/types.d.ts +0 -32
- package/dts/api/buyer/order-info/index.d.ts +1 -0
- package/dts/api/buyer/order-newspaper/index.d.ts +2 -6
- package/dts/api/buyer/order-newspaper/types.d.ts +6 -10
- package/dts/api/buyer/user_invoice/index.d.ts +9 -0
- package/dts/api/buyer/user_invoice/types.d.ts +38 -0
- package/dts/views/buyer/order-newspaper/confirm.vue.d.ts +4 -4
- package/dts/views/buyer/order-newspaper/prompt.vue.d.ts +4 -4
- package/package.json +3 -7
- package/dist/index-Dph_ktOL.mjs +0 -9456
- package/dist/onlineBanking-D40v8MD7.mjs +0 -208
- package/dist/orderInfo-CIOWPF8V.mjs +0 -309
|
@@ -1,8 +1,8 @@
|
|
|
1
|
-
import type {
|
|
1
|
+
import type { PayResultReq } from "@/api/buyer/order-newspaper/types";
|
|
2
2
|
declare const _default: import("vue").DefineComponent<globalThis.ExtractPropTypes<{
|
|
3
3
|
modelValue: globalThis.PropType<boolean>;
|
|
4
4
|
promptKey: {
|
|
5
|
-
type: globalThis.PropType<
|
|
5
|
+
type: globalThis.PropType<PayResultReq>;
|
|
6
6
|
default: () => {};
|
|
7
7
|
};
|
|
8
8
|
title: {
|
|
@@ -21,7 +21,7 @@ declare const _default: import("vue").DefineComponent<globalThis.ExtractPropType
|
|
|
21
21
|
}, string, import("vue").PublicProps, Readonly<globalThis.ExtractPropTypes<{
|
|
22
22
|
modelValue: globalThis.PropType<boolean>;
|
|
23
23
|
promptKey: {
|
|
24
|
-
type: globalThis.PropType<
|
|
24
|
+
type: globalThis.PropType<PayResultReq>;
|
|
25
25
|
default: () => {};
|
|
26
26
|
};
|
|
27
27
|
title: {
|
|
@@ -40,6 +40,6 @@ declare const _default: import("vue").DefineComponent<globalThis.ExtractPropType
|
|
|
40
40
|
}>, {
|
|
41
41
|
title: string;
|
|
42
42
|
width: string;
|
|
43
|
-
promptKey:
|
|
43
|
+
promptKey: PayResultReq;
|
|
44
44
|
}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
|
|
45
45
|
export default _default;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "xyvcard-paper-buyer",
|
|
3
|
-
"version": "0.0.
|
|
3
|
+
"version": "0.0.40",
|
|
4
4
|
"private": false,
|
|
5
5
|
"module": "dist/index.mjs",
|
|
6
6
|
"types": "dts/index.d.ts",
|
|
@@ -19,16 +19,14 @@
|
|
|
19
19
|
"vue": "^3.4.21",
|
|
20
20
|
"vue-i18n": "^9.10.1",
|
|
21
21
|
"vue-router": "^4.3.0",
|
|
22
|
-
"xyvcard-paper-goods": "^0.0.
|
|
23
|
-
"xyvcard-paper-union": "^0.0.
|
|
22
|
+
"xyvcard-paper-goods": "^0.0.12",
|
|
23
|
+
"xyvcard-paper-union": "^0.0.34",
|
|
24
24
|
"xyvcard-union": "^0.0.82"
|
|
25
25
|
},
|
|
26
26
|
"devDependencies": {
|
|
27
27
|
"@laynezh/vite-plugin-lib-assets": "^2.1.3",
|
|
28
28
|
"@rushstack/eslint-patch": "^1.3.3",
|
|
29
29
|
"@tsconfig/node20": "^20.1.2",
|
|
30
|
-
"@types/js-base64": "^3.3.1",
|
|
31
|
-
"@types/jsrsasign": "^10.5.15",
|
|
32
30
|
"@types/node": "^20.11.10",
|
|
33
31
|
"@vitejs/plugin-vue": "^5.0.3",
|
|
34
32
|
"@vue/eslint-config-prettier": "^8.0.0",
|
|
@@ -36,8 +34,6 @@
|
|
|
36
34
|
"@vue/tsconfig": "^0.5.1",
|
|
37
35
|
"eslint": "^8.49.0",
|
|
38
36
|
"eslint-plugin-vue": "^9.17.0",
|
|
39
|
-
"js-base64": "^3.7.8",
|
|
40
|
-
"jsrsasign": "^11.1.0",
|
|
41
37
|
"npm-run-all2": "^6.1.1",
|
|
42
38
|
"prettier": "^3.0.3",
|
|
43
39
|
"sass": "^1.72.0",
|