xyvcard-paper-buyer 0.0.39 → 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/README.md +51 -51
- package/dist/{applyEdit-Bcl_bli2.mjs → applyEdit-B0CKdbR2.mjs} +34 -35
- package/dist/{confirm-BIHrk7gs.mjs → confirm-HoPA9uSr.mjs} +1 -1
- package/dist/{edit-DHXk9uMQ.mjs → edit-CgLvvQy2.mjs} +9 -9
- package/dist/{edit-BgQo-uqd.mjs → edit-D2_W7oIL.mjs} +1 -1
- package/dist/{index-BWV5njqv.mjs → index-BqwYBqQF.mjs} +1 -1
- package/dist/{index-DISDK9IB.mjs → index-C8vnqMMv.mjs} +1 -1
- package/dist/{index-BEPJuAyP.mjs → index-CX-7x1SL.mjs} +1 -1
- package/dist/{index-TclOpCe_.mjs → index-DspCttgG.mjs} +10 -27
- package/dist/{index-BKZPqxLM.mjs → index-DyTbbNUO.mjs} +500 -518
- package/dist/index.mjs +2 -2
- package/dist/{info-BLkVF0dz.mjs → info-BhjWwF6z.mjs} +2 -2
- package/dist/{invoice-N1lsQHhB.mjs → invoice-DppfMFDj.mjs} +2 -2
- package/dist/{invoiceEdit-CILq1n3W.mjs → invoiceEdit-BKEb7oNj.mjs} +51 -51
- package/dist/{invoiceView-ClfMLUV3.mjs → invoiceView-41EDyu0B.mjs} +3 -3
- package/dist/{list-BPfP8vsl.mjs → list-DNIbCic-.mjs} +2 -2
- package/dist/{onlineBanking-DfzIYOBF.mjs → onlineBanking-BIjxFuQ5.mjs} +1 -1
- package/dist/{orderAddress-CK22n9R3.mjs → orderAddress-BHmLnG9Z.mjs} +10 -10
- package/dist/{orderInfo-DKPnxmRD.mjs → orderInfo-CiPVCQxz.mjs} +5 -5
- package/dist/{orderPaper-Cscnx-MT.mjs → orderPaper-DLv8c7Hi.mjs} +1 -1
- package/dist/{payment-DD_Lhvf0.mjs → payment-B8q1Mpiy.mjs} +7 -7
- package/dist/{prompt-DQX4apPU.mjs → prompt-CF5J3V95.mjs} +1 -1
- package/dist/{sendDialog-Bf8rP763.mjs → sendDialog-D50t3cjw.mjs} +5 -5
- 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/user_invoice/index.d.ts +9 -0
- package/dts/api/buyer/user_invoice/types.d.ts +38 -0
- package/package.json +62 -62
- package/dts/utils/momentPlugin.d.ts +0 -5
- package/dts/views/buyer/order-newspaper/payment copy.vue.d.ts +0 -2
|
@@ -0,0 +1,38 @@
|
|
|
1
|
+
import type { EntityApi, EntityReq, EntityModel, EntityList } from "jmash-core";
|
|
2
|
+
export interface UserInvoiceApi extends EntityApi {
|
|
3
|
+
}
|
|
4
|
+
export interface UserInvoiceReq extends EntityReq {
|
|
5
|
+
tenant?: string;
|
|
6
|
+
}
|
|
7
|
+
export interface UserInvoiceInfoList extends EntityList {
|
|
8
|
+
results: Array<UserInvoiceInfoModel>;
|
|
9
|
+
}
|
|
10
|
+
export interface UserInvoiceInfoModel extends EntityModel {
|
|
11
|
+
tenant?: string;
|
|
12
|
+
infoId?: string;
|
|
13
|
+
userId?: string;
|
|
14
|
+
gmfType?: string;
|
|
15
|
+
gmfmc?: string;
|
|
16
|
+
nsrsbh?: string;
|
|
17
|
+
sendEmail?: string;
|
|
18
|
+
}
|
|
19
|
+
export interface UserInvoiceInfoCreateReq extends EntityReq {
|
|
20
|
+
tenant?: string;
|
|
21
|
+
requestId?: string;
|
|
22
|
+
infoId?: string;
|
|
23
|
+
gmfType?: string;
|
|
24
|
+
gmfmc?: string;
|
|
25
|
+
nsrsbh?: string;
|
|
26
|
+
gmfdz?: string;
|
|
27
|
+
gmfdh?: string;
|
|
28
|
+
gmfkhh?: string;
|
|
29
|
+
gmfzh?: string;
|
|
30
|
+
sendEmail?: string;
|
|
31
|
+
xsfkhh?: string;
|
|
32
|
+
xsfzh?: string;
|
|
33
|
+
xsfdz?: string;
|
|
34
|
+
xsfdh?: string;
|
|
35
|
+
noticeEmail?: string;
|
|
36
|
+
zrrzjlxDm?: string;
|
|
37
|
+
zrrzjhm?: string;
|
|
38
|
+
}
|
package/package.json
CHANGED
|
@@ -1,63 +1,63 @@
|
|
|
1
|
-
{
|
|
2
|
-
"name": "xyvcard-paper-buyer",
|
|
3
|
-
"version": "0.0.
|
|
4
|
-
"private": false,
|
|
5
|
-
"module": "dist/index.mjs",
|
|
6
|
-
"types": "dts/index.d.ts",
|
|
7
|
-
"files": [
|
|
8
|
-
"dist",
|
|
9
|
-
"dts"
|
|
10
|
-
],
|
|
11
|
-
"
|
|
12
|
-
"
|
|
13
|
-
"
|
|
14
|
-
"
|
|
15
|
-
"
|
|
16
|
-
"
|
|
17
|
-
"
|
|
18
|
-
"
|
|
19
|
-
"
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
"
|
|
23
|
-
"
|
|
24
|
-
"
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
"
|
|
28
|
-
"
|
|
29
|
-
"
|
|
30
|
-
"
|
|
31
|
-
"vue
|
|
32
|
-
"
|
|
33
|
-
"
|
|
34
|
-
"
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
"
|
|
38
|
-
"
|
|
39
|
-
"
|
|
40
|
-
"
|
|
41
|
-
"
|
|
42
|
-
"
|
|
43
|
-
"
|
|
44
|
-
"
|
|
45
|
-
|
|
46
|
-
|
|
47
|
-
"
|
|
48
|
-
"
|
|
49
|
-
"
|
|
50
|
-
"
|
|
51
|
-
"
|
|
52
|
-
|
|
53
|
-
|
|
54
|
-
"
|
|
55
|
-
|
|
56
|
-
|
|
57
|
-
"
|
|
58
|
-
"
|
|
59
|
-
"
|
|
60
|
-
"
|
|
61
|
-
"
|
|
62
|
-
}
|
|
1
|
+
{
|
|
2
|
+
"name": "xyvcard-paper-buyer",
|
|
3
|
+
"version": "0.0.40",
|
|
4
|
+
"private": false,
|
|
5
|
+
"module": "dist/index.mjs",
|
|
6
|
+
"types": "dts/index.d.ts",
|
|
7
|
+
"files": [
|
|
8
|
+
"dist",
|
|
9
|
+
"dts"
|
|
10
|
+
],
|
|
11
|
+
"peerDependencies": {
|
|
12
|
+
"axios": "^1.6.7",
|
|
13
|
+
"element-plus": "^2.11.5",
|
|
14
|
+
"jmash-core": "^0.1.15",
|
|
15
|
+
"jmash-dict": "^0.1.2",
|
|
16
|
+
"jmash-rbac": "^0.1.17",
|
|
17
|
+
"jmash-region": "^0.1.0",
|
|
18
|
+
"pinia": "^2.1.7",
|
|
19
|
+
"vue": "^3.4.21",
|
|
20
|
+
"vue-i18n": "^9.10.1",
|
|
21
|
+
"vue-router": "^4.3.0",
|
|
22
|
+
"xyvcard-paper-goods": "^0.0.12",
|
|
23
|
+
"xyvcard-paper-union": "^0.0.34",
|
|
24
|
+
"xyvcard-union": "^0.0.82"
|
|
25
|
+
},
|
|
26
|
+
"devDependencies": {
|
|
27
|
+
"@laynezh/vite-plugin-lib-assets": "^2.1.3",
|
|
28
|
+
"@rushstack/eslint-patch": "^1.3.3",
|
|
29
|
+
"@tsconfig/node20": "^20.1.2",
|
|
30
|
+
"@types/node": "^20.11.10",
|
|
31
|
+
"@vitejs/plugin-vue": "^5.0.3",
|
|
32
|
+
"@vue/eslint-config-prettier": "^8.0.0",
|
|
33
|
+
"@vue/eslint-config-typescript": "^12.0.0",
|
|
34
|
+
"@vue/tsconfig": "^0.5.1",
|
|
35
|
+
"eslint": "^8.49.0",
|
|
36
|
+
"eslint-plugin-vue": "^9.17.0",
|
|
37
|
+
"npm-run-all2": "^6.1.1",
|
|
38
|
+
"prettier": "^3.0.3",
|
|
39
|
+
"sass": "^1.72.0",
|
|
40
|
+
"typescript": "~5.3.0",
|
|
41
|
+
"unplugin-auto-import": "^0.17.5",
|
|
42
|
+
"unplugin-vue-components": "^0.26.0",
|
|
43
|
+
"vite": "^5.0.11",
|
|
44
|
+
"vue-tsc": "^1.8.27"
|
|
45
|
+
},
|
|
46
|
+
"dependencies": {
|
|
47
|
+
"@element-plus/icons-vue": "^2.3.1",
|
|
48
|
+
"@vueuse/core": "^10.9.0",
|
|
49
|
+
"file-saver": "^2.0.5",
|
|
50
|
+
"nprogress": "^0.2.0",
|
|
51
|
+
"qs": "^6.12.0"
|
|
52
|
+
},
|
|
53
|
+
"scripts": {
|
|
54
|
+
"dev": "vite --host",
|
|
55
|
+
"build": "vite build && pnpm build:dts",
|
|
56
|
+
"build:dts": "vue-tsc --declaration --emitDeclarationOnly",
|
|
57
|
+
"preview": "vite preview",
|
|
58
|
+
"build-only": "vite build",
|
|
59
|
+
"type-check": "vue-tsc --build --force",
|
|
60
|
+
"lint": "eslint . --ext .vue,.js,.jsx,.cjs,.mjs,.ts,.tsx,.cts,.mts --fix --ignore-path .gitignore",
|
|
61
|
+
"format": "prettier --write src/"
|
|
62
|
+
}
|
|
63
63
|
}
|
|
@@ -1,2 +0,0 @@
|
|
|
1
|
-
declare const _default: import("vue").DefineComponent<{}, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
|
|
2
|
-
export default _default;
|