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.
Files changed (33) hide show
  1. package/README.md +51 -51
  2. package/dist/{applyEdit-Bcl_bli2.mjs → applyEdit-B0CKdbR2.mjs} +34 -35
  3. package/dist/{confirm-BIHrk7gs.mjs → confirm-HoPA9uSr.mjs} +1 -1
  4. package/dist/{edit-DHXk9uMQ.mjs → edit-CgLvvQy2.mjs} +9 -9
  5. package/dist/{edit-BgQo-uqd.mjs → edit-D2_W7oIL.mjs} +1 -1
  6. package/dist/{index-BWV5njqv.mjs → index-BqwYBqQF.mjs} +1 -1
  7. package/dist/{index-DISDK9IB.mjs → index-C8vnqMMv.mjs} +1 -1
  8. package/dist/{index-BEPJuAyP.mjs → index-CX-7x1SL.mjs} +1 -1
  9. package/dist/{index-TclOpCe_.mjs → index-DspCttgG.mjs} +10 -27
  10. package/dist/{index-BKZPqxLM.mjs → index-DyTbbNUO.mjs} +500 -518
  11. package/dist/index.mjs +2 -2
  12. package/dist/{info-BLkVF0dz.mjs → info-BhjWwF6z.mjs} +2 -2
  13. package/dist/{invoice-N1lsQHhB.mjs → invoice-DppfMFDj.mjs} +2 -2
  14. package/dist/{invoiceEdit-CILq1n3W.mjs → invoiceEdit-BKEb7oNj.mjs} +51 -51
  15. package/dist/{invoiceView-ClfMLUV3.mjs → invoiceView-41EDyu0B.mjs} +3 -3
  16. package/dist/{list-BPfP8vsl.mjs → list-DNIbCic-.mjs} +2 -2
  17. package/dist/{onlineBanking-DfzIYOBF.mjs → onlineBanking-BIjxFuQ5.mjs} +1 -1
  18. package/dist/{orderAddress-CK22n9R3.mjs → orderAddress-BHmLnG9Z.mjs} +10 -10
  19. package/dist/{orderInfo-DKPnxmRD.mjs → orderInfo-CiPVCQxz.mjs} +5 -5
  20. package/dist/{orderPaper-Cscnx-MT.mjs → orderPaper-DLv8c7Hi.mjs} +1 -1
  21. package/dist/{payment-DD_Lhvf0.mjs → payment-B8q1Mpiy.mjs} +7 -7
  22. package/dist/{prompt-DQX4apPU.mjs → prompt-CF5J3V95.mjs} +1 -1
  23. package/dist/{sendDialog-Bf8rP763.mjs → sendDialog-D50t3cjw.mjs} +5 -5
  24. package/dist/style.css +1 -1
  25. package/dist/{userInvoice-S09QEhkA.mjs → userInvoice-DhoqnQE4.mjs} +1 -1
  26. 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
  27. package/dts/api/buyer/lqfp-fp/index.d.ts +1 -3
  28. package/dts/api/buyer/lqfp-fp/types.d.ts +0 -32
  29. package/dts/api/buyer/user_invoice/index.d.ts +9 -0
  30. package/dts/api/buyer/user_invoice/types.d.ts +38 -0
  31. package/package.json +62 -62
  32. package/dts/utils/momentPlugin.d.ts +0 -5
  33. 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.39",
4
- "private": false,
5
- "module": "dist/index.mjs",
6
- "types": "dts/index.d.ts",
7
- "files": [
8
- "dist",
9
- "dts"
10
- ],
11
- "scripts": {
12
- "dev": "vite --host",
13
- "build": "vite build && pnpm build:dts",
14
- "build:dts": "vue-tsc --declaration --emitDeclarationOnly",
15
- "preview": "vite preview",
16
- "build-only": "vite build",
17
- "type-check": "vue-tsc --build --force",
18
- "lint": "eslint . --ext .vue,.js,.jsx,.cjs,.mjs,.ts,.tsx,.cts,.mts --fix --ignore-path .gitignore",
19
- "format": "prettier --write src/"
20
- },
21
- "peerDependencies": {
22
- "axios": "^1.6.7",
23
- "element-plus": "^2.11.5",
24
- "jmash-core": "^0.1.15",
25
- "jmash-dict": "^0.1.2",
26
- "jmash-rbac": "^0.1.17",
27
- "jmash-region": "^0.1.0",
28
- "pinia": "^2.1.7",
29
- "vue": "^3.4.21",
30
- "vue-i18n": "^9.10.1",
31
- "vue-router": "^4.3.0",
32
- "xyvcard-paper-goods": "^0.0.11",
33
- "xyvcard-paper-union": "^0.0.30",
34
- "xyvcard-union": "^0.0.82"
35
- },
36
- "devDependencies": {
37
- "@laynezh/vite-plugin-lib-assets": "^2.1.3",
38
- "@rushstack/eslint-patch": "^1.3.3",
39
- "@tsconfig/node20": "^20.1.2",
40
- "@types/node": "^20.11.10",
41
- "@vitejs/plugin-vue": "^5.0.3",
42
- "@vue/eslint-config-prettier": "^8.0.0",
43
- "@vue/eslint-config-typescript": "^12.0.0",
44
- "@vue/tsconfig": "^0.5.1",
45
- "eslint": "^8.49.0",
46
- "eslint-plugin-vue": "^9.17.0",
47
- "npm-run-all2": "^6.1.1",
48
- "prettier": "^3.0.3",
49
- "sass": "^1.72.0",
50
- "typescript": "~5.3.0",
51
- "unplugin-auto-import": "^0.17.5",
52
- "unplugin-vue-components": "^0.26.0",
53
- "vite": "^5.0.11",
54
- "vue-tsc": "^1.8.27"
55
- },
56
- "dependencies": {
57
- "@element-plus/icons-vue": "^2.3.1",
58
- "@vueuse/core": "^10.9.0",
59
- "file-saver": "^2.0.5",
60
- "nprogress": "^0.2.0",
61
- "qs": "^6.12.0"
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,5 +0,0 @@
1
- import type { App } from "vue";
2
- declare const _default: {
3
- install: (app: App) => void;
4
- };
5
- export default _default;
@@ -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;