xyvcard-paper-buyer 0.0.4 → 0.0.5
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/dts/App.vue.d.ts +2 -0
- package/dts/api/buyer/dict.d.ts +14 -0
- package/dts/api/buyer/index.d.ts +12 -0
- package/dts/api/buyer/lqfp-fp/index.d.ts +13 -0
- package/dts/api/buyer/lqfp-fp/types.d.ts +74 -0
- package/dts/api/buyer/lqfp-fps/index.d.ts +8 -0
- package/dts/api/buyer/lqfp-fps/types.d.ts +72 -0
- package/dts/api/buyer/order-info/index.d.ts +17 -0
- package/dts/api/buyer/order-info/types.d.ts +127 -0
- package/dts/api/buyer/order-newspaper/index.d.ts +18 -0
- package/dts/api/buyer/order-newspaper/types.d.ts +126 -0
- package/dts/api/buyer/order-user-address/index.d.ts +15 -0
- package/dts/api/buyer/order-user-address/types.d.ts +85 -0
- package/dts/constant.d.ts +23 -0
- package/dts/index.d.ts +6 -0
- package/dts/lang/index.d.ts +1 -0
- package/dts/lang/order/en.d.ts +143 -0
- package/dts/lang/order/zh-cn.d.ts +169 -0
- package/dts/main.d.ts +5 -0
- package/dts/permission.d.ts +1 -0
- package/dts/router/index.d.ts +16 -0
- package/dts/views/buyer/order-info/applyEdit.vue.d.ts +2 -0
- package/dts/views/buyer/order-info/index.vue.d.ts +2 -0
- package/dts/views/buyer/order-info/info.vue.d.ts +2 -0
- package/dts/views/buyer/order-info/invoice.vue.d.ts +2 -0
- package/dts/views/buyer/order-info/invoiceView.vue.d.ts +2 -0
- package/dts/views/buyer/order-info/list.vue.d.ts +14 -0
- package/dts/views/buyer/order-info/sendDialog.vue.d.ts +10 -0
- package/dts/views/buyer/order-info/userInvoice.vue.d.ts +10 -0
- package/dts/views/buyer/order-newspaper/edit.vue.d.ts +22 -0
- package/dts/views/buyer/order-newspaper/index.vue.d.ts +2 -0
- package/dts/views/buyer/order-newspaper/orderAddress.vue.d.ts +2 -0
- package/dts/views/buyer/order-newspaper/orderPaper.vue.d.ts +2 -0
- package/dts/views/buyer/order-newspaper/payment copy.vue.d.ts +2 -0
- package/dts/views/buyer/order-newspaper/payment.vue.d.ts +2 -0
- package/dts/views/buyer/order-user-address/edit.vue.d.ts +22 -0
- package/dts/views/buyer/order-user-address/index.vue.d.ts +2 -0
- package/package.json +3 -3
package/dts/App.vue.d.ts
ADDED
|
@@ -0,0 +1,2 @@
|
|
|
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;
|
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
import { BizLayDict, type LayEntry } from "jmash-core";
|
|
2
|
+
import { type UnionOrgModel } from "xyvcard-paper-union";
|
|
3
|
+
export declare class UnionOrgBizLayDict extends BizLayDict {
|
|
4
|
+
useValues(): Promise<LayEntry[]>;
|
|
5
|
+
convertToLayEntryArray(dictLayEntries: UnionOrgModel[]): LayEntry[];
|
|
6
|
+
}
|
|
7
|
+
export declare class UnionOrgPhoneBizLayDict extends BizLayDict {
|
|
8
|
+
useValues(): Promise<LayEntry[]>;
|
|
9
|
+
convertToLayEntryArray(dictLayEntries: UnionOrgModel[]): LayEntry[];
|
|
10
|
+
}
|
|
11
|
+
export declare class UnionOrgPhoneInsBizLayDict extends BizLayDict {
|
|
12
|
+
useValues(): Promise<LayEntry[]>;
|
|
13
|
+
convertToLayEntryArray(dictLayEntries: UnionOrgModel[]): LayEntry[];
|
|
14
|
+
}
|
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
import { CustomBizDict, EnumDict } from "jmash-core";
|
|
2
|
+
import { UnionOrgBizLayDict, UnionOrgPhoneBizLayDict, UnionOrgPhoneInsBizLayDict } from "./dict";
|
|
3
|
+
import { EntryDict } from "jmash-dict";
|
|
4
|
+
export declare class Dict {
|
|
5
|
+
static readonly orderStatusEnum: CustomBizDict;
|
|
6
|
+
static readonly paymentWayEnum: EnumDict;
|
|
7
|
+
static readonly unionOrgBizLayDict: UnionOrgBizLayDict;
|
|
8
|
+
static readonly unionOrgPhoneBizLayDict: UnionOrgPhoneBizLayDict;
|
|
9
|
+
static readonly unionOrgPhoneInsBizLayDict: UnionOrgPhoneInsBizLayDict;
|
|
10
|
+
static readonly fppzDict: EntryDict;
|
|
11
|
+
static readonly invoiceStatusEnum: EnumDict;
|
|
12
|
+
}
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
import type { AxiosPromise } from "axios";
|
|
2
|
+
import type { LqfpFpReq, LqfpFpList, LqfpFpApi, LqfpFpDownloadReq, LqfpFpMyListReq, LqfpUserInvoiceInfoList, LqfpUserInvoiceInfoCreateReq, LqfpUserInvoiceInfoModel } from "./types";
|
|
3
|
+
declare class LqfpFpApiImpl implements LqfpFpApi {
|
|
4
|
+
getKey(): any;
|
|
5
|
+
findList(query?: LqfpFpReq): AxiosPromise<LqfpFpList>;
|
|
6
|
+
sendEmail(query?: LqfpFpReq): AxiosPromise<any>;
|
|
7
|
+
download(query: LqfpFpDownloadReq): AxiosPromise<any>;
|
|
8
|
+
downloadInvoice(query: LqfpFpDownloadReq): AxiosPromise<any>;
|
|
9
|
+
findMyList(query: LqfpFpMyListReq): AxiosPromise<LqfpUserInvoiceInfoList>;
|
|
10
|
+
createUserFp(data: LqfpUserInvoiceInfoCreateReq): AxiosPromise<LqfpUserInvoiceInfoModel>;
|
|
11
|
+
}
|
|
12
|
+
declare const lqfpFpApi: LqfpFpApiImpl;
|
|
13
|
+
export { lqfpFpApi };
|
|
@@ -0,0 +1,74 @@
|
|
|
1
|
+
import type { EntityApi, EntityReq, EntityModel, EntityList, EntityTotal, EntityKeyList } from "jmash-core";
|
|
2
|
+
export interface LqfpFpApi extends EntityApi {
|
|
3
|
+
}
|
|
4
|
+
export interface LqfpFpReq extends EntityReq {
|
|
5
|
+
tenant?: string;
|
|
6
|
+
fpUuid?: string;
|
|
7
|
+
fphm?: string;
|
|
8
|
+
}
|
|
9
|
+
export interface LqfpFpModel extends EntityModel {
|
|
10
|
+
mxUuid?: string;
|
|
11
|
+
fpUuid?: string;
|
|
12
|
+
tenantId?: string;
|
|
13
|
+
mxxh?: number;
|
|
14
|
+
dylzfpmxxh?: string;
|
|
15
|
+
xmmc?: string;
|
|
16
|
+
hwhyslwfwmc?: string;
|
|
17
|
+
spfwjc?: string;
|
|
18
|
+
ggxh?: string;
|
|
19
|
+
dw?: string;
|
|
20
|
+
sl?: string;
|
|
21
|
+
dj?: string;
|
|
22
|
+
je?: string;
|
|
23
|
+
slv?: string;
|
|
24
|
+
se?: string;
|
|
25
|
+
hsje?: string;
|
|
26
|
+
kce?: string;
|
|
27
|
+
sphfwssflhbbm?: string;
|
|
28
|
+
fphxz?: string;
|
|
29
|
+
yhzcbs?: string;
|
|
30
|
+
}
|
|
31
|
+
export interface LqfpFpList extends EntityList {
|
|
32
|
+
results: Array<LqfpFpModel>;
|
|
33
|
+
}
|
|
34
|
+
export interface LqfpFpModelTotal extends EntityTotal {
|
|
35
|
+
totalSize: number;
|
|
36
|
+
}
|
|
37
|
+
export interface LqfpFpKeyList extends EntityKeyList {
|
|
38
|
+
tenant?: string;
|
|
39
|
+
fpUuid?: Array<string>;
|
|
40
|
+
}
|
|
41
|
+
export interface LqfpFpDownloadReq extends EntityReq {
|
|
42
|
+
tenant?: string;
|
|
43
|
+
organId?: string;
|
|
44
|
+
fpName?: string;
|
|
45
|
+
}
|
|
46
|
+
export interface LqfpFpRedReq extends EntityReq {
|
|
47
|
+
tenant?: string;
|
|
48
|
+
requestId?: string;
|
|
49
|
+
orderNo?: string;
|
|
50
|
+
reason?: string;
|
|
51
|
+
fphm?: string;
|
|
52
|
+
}
|
|
53
|
+
export interface LqfpFpMyListReq extends EntityReq {
|
|
54
|
+
tenant?: string;
|
|
55
|
+
}
|
|
56
|
+
export interface LqfpUserInvoiceInfoList extends EntityList {
|
|
57
|
+
results: Array<LqfpUserInvoiceInfoModel>;
|
|
58
|
+
}
|
|
59
|
+
export interface LqfpUserInvoiceInfoModel extends EntityModel {
|
|
60
|
+
tenant?: string;
|
|
61
|
+
infoId?: string;
|
|
62
|
+
userId?: string;
|
|
63
|
+
gmfType?: string;
|
|
64
|
+
gmfmc?: string;
|
|
65
|
+
nsrsbh?: string;
|
|
66
|
+
sendEmail?: string;
|
|
67
|
+
}
|
|
68
|
+
export interface LqfpUserInvoiceInfoCreateReq extends EntityReq {
|
|
69
|
+
gmfmc?: string;
|
|
70
|
+
nsrsbh?: string;
|
|
71
|
+
sendEmail?: string;
|
|
72
|
+
tenant?: string;
|
|
73
|
+
requestId?: string;
|
|
74
|
+
}
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
import type { AxiosPromise } from "axios";
|
|
2
|
+
import type { LqfpFpsApi, LqfpFpsModel, LqfpFpReq } from "./types";
|
|
3
|
+
declare class LqfpFpsApiImpl implements LqfpFpsApi {
|
|
4
|
+
getKey(model: LqfpFpsModel): any;
|
|
5
|
+
findOrderList(query: LqfpFpReq): AxiosPromise<LqfpFpsModel>;
|
|
6
|
+
}
|
|
7
|
+
declare const lqfpFpsApi: LqfpFpsApiImpl;
|
|
8
|
+
export { lqfpFpsApi };
|
|
@@ -0,0 +1,72 @@
|
|
|
1
|
+
import type { EntityApi, EntityReq, EntityModel } from "jmash-core";
|
|
2
|
+
export interface LqfpFpsApi extends EntityApi {
|
|
3
|
+
}
|
|
4
|
+
export interface LqfpFpsModel extends EntityModel {
|
|
5
|
+
fpUuid?: string;
|
|
6
|
+
tenantId?: string;
|
|
7
|
+
lqdwid?: string;
|
|
8
|
+
sq?: string;
|
|
9
|
+
fphm?: string;
|
|
10
|
+
orderNo?: string;
|
|
11
|
+
sendEmail?: string;
|
|
12
|
+
sendEmailIns?: string;
|
|
13
|
+
sllsh?: string;
|
|
14
|
+
lzfpbz?: string;
|
|
15
|
+
ptbh?: string;
|
|
16
|
+
fppz?: string;
|
|
17
|
+
gmfzrrbz?: string;
|
|
18
|
+
tdys?: string;
|
|
19
|
+
qyDm?: string;
|
|
20
|
+
cezslxDm?: string;
|
|
21
|
+
sgfplxDm?: string;
|
|
22
|
+
ckywsyzcDm?: string;
|
|
23
|
+
zzsjzjtDm?: string;
|
|
24
|
+
xsfnsrsbh?: string;
|
|
25
|
+
xsfmc?: string;
|
|
26
|
+
xsfdz?: string;
|
|
27
|
+
xsfdh?: string;
|
|
28
|
+
xsfkhh?: string;
|
|
29
|
+
xsfzh?: string;
|
|
30
|
+
gmfnsrsbh?: string;
|
|
31
|
+
gmfmc?: string;
|
|
32
|
+
zrrzjlxDm?: string;
|
|
33
|
+
zrrzjhm?: string;
|
|
34
|
+
zrrgjDm?: string;
|
|
35
|
+
gmfdz?: string;
|
|
36
|
+
gmfdh?: string;
|
|
37
|
+
gmfkhh?: string;
|
|
38
|
+
gmfzh?: string;
|
|
39
|
+
gmfjbr?: string;
|
|
40
|
+
jbrsfzjhm?: string;
|
|
41
|
+
gmfjbrlxdh?: string;
|
|
42
|
+
hjje?: number;
|
|
43
|
+
hjse?: number;
|
|
44
|
+
jshj?: number;
|
|
45
|
+
skyhmc?: string;
|
|
46
|
+
skyhzh?: string;
|
|
47
|
+
jsfs?: string;
|
|
48
|
+
ysxwfsd?: string;
|
|
49
|
+
kpr?: string;
|
|
50
|
+
kprzjhm?: string;
|
|
51
|
+
kprzjlx?: string;
|
|
52
|
+
dylzfphm?: string;
|
|
53
|
+
hzqrxxdbh?: string;
|
|
54
|
+
hzqrduuid?: string;
|
|
55
|
+
bz?: string;
|
|
56
|
+
kprq?: string;
|
|
57
|
+
skrxm?: string;
|
|
58
|
+
fhrxm?: string;
|
|
59
|
+
status?: boolean;
|
|
60
|
+
redStatus?: boolean;
|
|
61
|
+
isPayFp?: boolean;
|
|
62
|
+
payWay?: string;
|
|
63
|
+
jydh?: string;
|
|
64
|
+
errorMsg?: string;
|
|
65
|
+
createBy?: string;
|
|
66
|
+
createTime?: string;
|
|
67
|
+
jshjDx?: string;
|
|
68
|
+
}
|
|
69
|
+
export interface LqfpFpReq extends EntityReq {
|
|
70
|
+
tenant?: string;
|
|
71
|
+
orderNo?: string;
|
|
72
|
+
}
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
import type { AxiosPromise } from "axios";
|
|
2
|
+
import type { OrderInfoApi, OrderInfoReq, OrderInfoModel, OrderInfoPage, OrderInfoList, OrderInfoKey, OrderInfoExportReq, OrderPostReq, OrderChangeAddressReq, OrderUserAddressList, OrderAddressInfoReq, LqfpApplyReq, OrderPayModel } from "./types";
|
|
3
|
+
declare class OrderInfoApiImpl implements OrderInfoApi {
|
|
4
|
+
getKey(model: OrderInfoModel): OrderInfoKey;
|
|
5
|
+
findPage(query?: OrderInfoReq): AxiosPromise<OrderInfoPage>;
|
|
6
|
+
findList(query?: OrderInfoReq): AxiosPromise<OrderInfoList>;
|
|
7
|
+
findById(query: OrderInfoKey): AxiosPromise<OrderInfoModel>;
|
|
8
|
+
orderPost(data: OrderPostReq): AxiosPromise<boolean>;
|
|
9
|
+
cancel(data: OrderInfoKey): AxiosPromise<boolean>;
|
|
10
|
+
updateAddress(data: OrderChangeAddressReq): AxiosPromise<boolean>;
|
|
11
|
+
exportExcel(queryParams: OrderInfoExportReq): AxiosPromise;
|
|
12
|
+
findOrderAddressList(query?: OrderAddressInfoReq): AxiosPromise<OrderUserAddressList>;
|
|
13
|
+
lqfpApply(query?: LqfpApplyReq): AxiosPromise<boolean>;
|
|
14
|
+
pay(query: OrderInfoKey): AxiosPromise<OrderPayModel>;
|
|
15
|
+
}
|
|
16
|
+
declare const orderInfoApi: OrderInfoApiImpl;
|
|
17
|
+
export { orderInfoApi };
|
|
@@ -0,0 +1,127 @@
|
|
|
1
|
+
import type { EntityApi, EntityReq, EntityModel, EntityList, EntityPage, EntityTotal, EntityKey, EntityKeyList, EntityExportReq } from "jmash-core";
|
|
2
|
+
export interface OrderInfoApi extends EntityApi {
|
|
3
|
+
}
|
|
4
|
+
export interface OrderInfoReq extends EntityReq {
|
|
5
|
+
likeOrderCode?: string;
|
|
6
|
+
likeSpuName?: string;
|
|
7
|
+
orderStatus?: string;
|
|
8
|
+
hasOrderStatus?: boolean;
|
|
9
|
+
startDate?: string;
|
|
10
|
+
endDate?: string;
|
|
11
|
+
invoiceStatus?: string;
|
|
12
|
+
shopBranchId?: string;
|
|
13
|
+
}
|
|
14
|
+
export interface OrderInfoModel extends EntityModel {
|
|
15
|
+
orderId?: string;
|
|
16
|
+
orderCode?: string;
|
|
17
|
+
shopId?: string;
|
|
18
|
+
orderItemList?: OrderItemList;
|
|
19
|
+
createTime?: string;
|
|
20
|
+
orderStatus?: string;
|
|
21
|
+
paymentStatus?: string;
|
|
22
|
+
appraisesStatus?: string;
|
|
23
|
+
salesPrice?: number;
|
|
24
|
+
freightPrice?: number;
|
|
25
|
+
paymentCouponPrice?: number;
|
|
26
|
+
orderPrice?: number;
|
|
27
|
+
paymentWay?: string;
|
|
28
|
+
deliveryWay?: string;
|
|
29
|
+
userMessage?: string;
|
|
30
|
+
userName?: string;
|
|
31
|
+
address?: string;
|
|
32
|
+
mobilePhone?: string;
|
|
33
|
+
mobilePhoneIns?: string;
|
|
34
|
+
mobileEncrypt?: boolean;
|
|
35
|
+
postType?: string;
|
|
36
|
+
}
|
|
37
|
+
export interface OrderItemList extends EntityList {
|
|
38
|
+
results: Array<OrderItemModel>;
|
|
39
|
+
}
|
|
40
|
+
export interface OrderItemModel extends EntityModel {
|
|
41
|
+
orderId?: string;
|
|
42
|
+
itemId?: string;
|
|
43
|
+
spuName?: string;
|
|
44
|
+
salesPrice?: number;
|
|
45
|
+
quantity?: number;
|
|
46
|
+
specInfo?: string;
|
|
47
|
+
picUrl?: string;
|
|
48
|
+
freightPrice?: number;
|
|
49
|
+
paymentCouponPrice?: number;
|
|
50
|
+
paymentPrice?: number;
|
|
51
|
+
}
|
|
52
|
+
export interface OrderInfoList extends EntityList {
|
|
53
|
+
results: Array<OrderInfoModel>;
|
|
54
|
+
}
|
|
55
|
+
export interface OrderInfoPage extends EntityPage {
|
|
56
|
+
results: Array<OrderInfoModel>;
|
|
57
|
+
subTotalDto: OrderInfoModelTotal;
|
|
58
|
+
totalDto: OrderInfoModelTotal;
|
|
59
|
+
}
|
|
60
|
+
export interface OrderInfoModelTotal extends EntityTotal {
|
|
61
|
+
totalSize: number;
|
|
62
|
+
subSize?: number;
|
|
63
|
+
baseSize?: number;
|
|
64
|
+
}
|
|
65
|
+
export interface OrderInfoKey extends EntityKey {
|
|
66
|
+
tenant?: string;
|
|
67
|
+
orderId?: string;
|
|
68
|
+
}
|
|
69
|
+
export interface OrderInfoKeyList extends EntityKeyList {
|
|
70
|
+
tenant?: string;
|
|
71
|
+
orderId?: Array<string>;
|
|
72
|
+
}
|
|
73
|
+
export interface OrderPostReq {
|
|
74
|
+
orderId?: string;
|
|
75
|
+
orderItemId?: string;
|
|
76
|
+
postType?: string;
|
|
77
|
+
logisticsCode?: string;
|
|
78
|
+
logisticsNo?: string;
|
|
79
|
+
}
|
|
80
|
+
export interface OrderChangeAddressReq {
|
|
81
|
+
orderId?: string;
|
|
82
|
+
userName?: string;
|
|
83
|
+
mobilePhone?: string;
|
|
84
|
+
address?: string;
|
|
85
|
+
}
|
|
86
|
+
export interface OrderInfoExportReq extends EntityExportReq {
|
|
87
|
+
tenant: string;
|
|
88
|
+
title?: string;
|
|
89
|
+
fileName?: string;
|
|
90
|
+
req: OrderInfoReq;
|
|
91
|
+
}
|
|
92
|
+
export interface OrderAddressInfoReq extends EntityReq {
|
|
93
|
+
orderId?: string;
|
|
94
|
+
orderItemId?: string;
|
|
95
|
+
}
|
|
96
|
+
export interface OrderUserAddressModel extends EntityModel {
|
|
97
|
+
addressId?: string;
|
|
98
|
+
userId?: string;
|
|
99
|
+
userName?: string;
|
|
100
|
+
postalCode?: string;
|
|
101
|
+
provinceName?: string;
|
|
102
|
+
cityName?: string;
|
|
103
|
+
countyName?: string;
|
|
104
|
+
detailInfo?: string;
|
|
105
|
+
mobilePhone?: string;
|
|
106
|
+
mobilePhoneIns?: string;
|
|
107
|
+
isDefault?: boolean;
|
|
108
|
+
mobileEncrypt?: boolean;
|
|
109
|
+
goodsNum?: number;
|
|
110
|
+
}
|
|
111
|
+
export interface OrderUserAddressList extends EntityList {
|
|
112
|
+
results: Array<OrderUserAddressModel>;
|
|
113
|
+
}
|
|
114
|
+
export interface LqfpApplyReq extends EntityReq {
|
|
115
|
+
tenant?: string;
|
|
116
|
+
requestId?: string;
|
|
117
|
+
orderId?: string;
|
|
118
|
+
infoId?: string;
|
|
119
|
+
fppz?: string;
|
|
120
|
+
email?: string;
|
|
121
|
+
note?: string;
|
|
122
|
+
}
|
|
123
|
+
export interface OrderPayModel extends EntityModel {
|
|
124
|
+
orderId?: string;
|
|
125
|
+
counterUrl?: string;
|
|
126
|
+
orderCode?: number;
|
|
127
|
+
}
|
|
@@ -0,0 +1,18 @@
|
|
|
1
|
+
import type { AxiosPromise } from "axios";
|
|
2
|
+
import type { OrderInfoKey, OrderInfoModel, OrderNewsPaperApi, OrderNewsPaperCreateReq, OrderNewsPaperGoodsModel, OrderNewsPaperGoodsPage, OrderNewsPaperGoodsReq, OrderNewsPaperGoodsSpuKey, OrderNewsPaperPayModel, OrderNewsPaperPayResultModel, OrderNewsPaperPayResultReq, OrderUserAddressModel } from "./types";
|
|
3
|
+
declare class OrderNewsPaperApiImpl implements OrderNewsPaperApi {
|
|
4
|
+
getKey(model: any): any;
|
|
5
|
+
findPage(query: OrderNewsPaperGoodsReq): AxiosPromise<OrderNewsPaperGoodsPage>;
|
|
6
|
+
/**
|
|
7
|
+
* 根据商品SPU的ID进行查询
|
|
8
|
+
* @param query 商品SPU的查询键,包含需要查询的SPU ID
|
|
9
|
+
* @returns 返回一个AxiosPromise对象,解析为商品SPU模型
|
|
10
|
+
*/
|
|
11
|
+
findById(query: OrderNewsPaperGoodsSpuKey): AxiosPromise<OrderNewsPaperGoodsModel>;
|
|
12
|
+
create(data: OrderNewsPaperCreateReq): AxiosPromise<OrderNewsPaperPayModel>;
|
|
13
|
+
queryPayResult(query: OrderNewsPaperPayResultReq): AxiosPromise<OrderNewsPaperPayResultModel>;
|
|
14
|
+
findOrderInfoById(data: OrderInfoKey): AxiosPromise<OrderInfoModel>;
|
|
15
|
+
createOrderAddress(data: OrderUserAddressModel): AxiosPromise<boolean>;
|
|
16
|
+
}
|
|
17
|
+
declare const orderNewsPaperApi: OrderNewsPaperApiImpl;
|
|
18
|
+
export { orderNewsPaperApi };
|
|
@@ -0,0 +1,126 @@
|
|
|
1
|
+
import type { EntityApi, EntityReq, EntityModel, EntityPage, EntityKey, EntityList } from "jmash-core";
|
|
2
|
+
export interface OrderNewsPaperApi extends EntityApi {
|
|
3
|
+
}
|
|
4
|
+
export interface OrderNewsPaperGoodsReq extends EntityReq {
|
|
5
|
+
tenant?: string;
|
|
6
|
+
curPage: number;
|
|
7
|
+
pageSize?: number;
|
|
8
|
+
hasShelf?: boolean;
|
|
9
|
+
shelf?: boolean;
|
|
10
|
+
hasApproval?: boolean;
|
|
11
|
+
approvalStatus?: string;
|
|
12
|
+
categoryIds?: string[];
|
|
13
|
+
brandId?: string;
|
|
14
|
+
labelIds?: string[];
|
|
15
|
+
likeSpuName?: string;
|
|
16
|
+
}
|
|
17
|
+
export interface OrderNewsPaperGoodsModel extends EntityModel {
|
|
18
|
+
spuId?: string;
|
|
19
|
+
shopId?: string;
|
|
20
|
+
categoryId?: string;
|
|
21
|
+
spuCode?: string;
|
|
22
|
+
spuName?: string;
|
|
23
|
+
picUrls: string;
|
|
24
|
+
sellPoint?: string;
|
|
25
|
+
minPrice?: number;
|
|
26
|
+
maxPrice?: number;
|
|
27
|
+
saleNum?: number;
|
|
28
|
+
goodsStartDate?: string;
|
|
29
|
+
goodsEndDate?: string;
|
|
30
|
+
skuList?: {
|
|
31
|
+
results: Array<{
|
|
32
|
+
salePrice: number;
|
|
33
|
+
skuId: string;
|
|
34
|
+
}>;
|
|
35
|
+
};
|
|
36
|
+
}
|
|
37
|
+
export interface OrderNewsPaperGoodsPage extends EntityPage {
|
|
38
|
+
results: Array<OrderNewsPaperGoodsModel>;
|
|
39
|
+
totalSize: number;
|
|
40
|
+
pageCount: number;
|
|
41
|
+
}
|
|
42
|
+
export interface OrderNewsPaperGoodsSpuKey extends EntityKey {
|
|
43
|
+
tenant?: string;
|
|
44
|
+
spuId?: string | Array<string>;
|
|
45
|
+
}
|
|
46
|
+
export interface OrderNewsPaperCreateReq extends EntityReq {
|
|
47
|
+
tenant?: string;
|
|
48
|
+
requestId?: string;
|
|
49
|
+
shopBrancheId?: string;
|
|
50
|
+
deliveryWay?: string;
|
|
51
|
+
freightPrice?: number;
|
|
52
|
+
salesPrice?: number;
|
|
53
|
+
orderPrice: number;
|
|
54
|
+
couponId?: string;
|
|
55
|
+
paymentCouponPrice?: number;
|
|
56
|
+
userMessage?: string;
|
|
57
|
+
userAddressId?: string;
|
|
58
|
+
orderItems?: Array<OrderNewsPaperItemCreateReq>;
|
|
59
|
+
shopId?: string;
|
|
60
|
+
spuId?: string;
|
|
61
|
+
remark?: string;
|
|
62
|
+
}
|
|
63
|
+
export interface OrderNewsPaperItemCreateReq {
|
|
64
|
+
skuId?: string;
|
|
65
|
+
specInfo?: string;
|
|
66
|
+
customInfo?: string;
|
|
67
|
+
quantity?: number;
|
|
68
|
+
paymentCouponPrice?: string;
|
|
69
|
+
}
|
|
70
|
+
export interface OrderNewsPaperPayModel extends EntityModel {
|
|
71
|
+
orderId?: string;
|
|
72
|
+
counterUrl?: string;
|
|
73
|
+
orderCode?: string;
|
|
74
|
+
}
|
|
75
|
+
export interface OrderNewsPaperPayResultReq extends EntityReq {
|
|
76
|
+
tenant?: string;
|
|
77
|
+
orderId?: string;
|
|
78
|
+
}
|
|
79
|
+
export interface OrderNewsPaperPayResultModel extends EntityModel {
|
|
80
|
+
orderId?: string;
|
|
81
|
+
status?: string;
|
|
82
|
+
}
|
|
83
|
+
export interface OrderInfoKey extends EntityKey {
|
|
84
|
+
tenant?: string;
|
|
85
|
+
orderId: string;
|
|
86
|
+
}
|
|
87
|
+
export interface OrderInfoModel extends EntityModel {
|
|
88
|
+
orderId?: string;
|
|
89
|
+
orderCode?: string;
|
|
90
|
+
orderStatus?: string;
|
|
91
|
+
orderStatusName?: string;
|
|
92
|
+
appraisesStatus?: boolean;
|
|
93
|
+
orderItemList?: OrderItemList;
|
|
94
|
+
counterUrl?: string;
|
|
95
|
+
deliveryWay?: string;
|
|
96
|
+
deliveryWayName?: string;
|
|
97
|
+
createTime?: string;
|
|
98
|
+
writeoffQrcode?: string;
|
|
99
|
+
paidPrice?: number;
|
|
100
|
+
salesPrice?: number;
|
|
101
|
+
refundPrice?: number;
|
|
102
|
+
}
|
|
103
|
+
export interface OrderItemList extends EntityList {
|
|
104
|
+
results: Array<OrderItemModel>;
|
|
105
|
+
}
|
|
106
|
+
export interface OrderItemModel {
|
|
107
|
+
picUrl?: string;
|
|
108
|
+
spuName?: string;
|
|
109
|
+
quantity?: number;
|
|
110
|
+
salesPrice?: number;
|
|
111
|
+
paymentCouponPrice?: string;
|
|
112
|
+
orderPrice?: string;
|
|
113
|
+
customInfo?: string;
|
|
114
|
+
orderId?: string;
|
|
115
|
+
itemId?: string;
|
|
116
|
+
}
|
|
117
|
+
export interface OrderUserAddressModel extends EntityModel {
|
|
118
|
+
tenant?: string;
|
|
119
|
+
requestId?: string;
|
|
120
|
+
orderItemId?: string;
|
|
121
|
+
userAddresses?: Array<OrderUserAddressReq>;
|
|
122
|
+
}
|
|
123
|
+
export interface OrderUserAddressReq extends EntityReq {
|
|
124
|
+
addressId?: string;
|
|
125
|
+
goodsNum?: number;
|
|
126
|
+
}
|
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
import type { AxiosPromise } from "axios";
|
|
2
|
+
import type { OrderUserAddressApi, OrderUserAddressReq, OrderUserAddressModel, OrderUserAddressPage, OrderUserAddressList, OrderUserAddressKey, OrderUserAddressCreateReq, OrderUserAddressUpdateReq } from "./types";
|
|
3
|
+
declare class OrderUserAddressApiImpl implements OrderUserAddressApi {
|
|
4
|
+
getKey(model: OrderUserAddressModel): OrderUserAddressKey;
|
|
5
|
+
findPage(query?: OrderUserAddressReq): AxiosPromise<OrderUserAddressPage>;
|
|
6
|
+
findList(query?: OrderUserAddressReq): AxiosPromise<OrderUserAddressList>;
|
|
7
|
+
findById(query: OrderUserAddressKey): AxiosPromise<OrderUserAddressModel>;
|
|
8
|
+
create(data: OrderUserAddressCreateReq): AxiosPromise<OrderUserAddressModel>;
|
|
9
|
+
update(data: OrderUserAddressUpdateReq): AxiosPromise<OrderUserAddressModel>;
|
|
10
|
+
move(key: OrderUserAddressKey, up: boolean): AxiosPromise<boolean>;
|
|
11
|
+
delete(query: OrderUserAddressKey): AxiosPromise<OrderUserAddressModel>;
|
|
12
|
+
batchDelete(keys: OrderUserAddressKey[]): AxiosPromise<number>;
|
|
13
|
+
}
|
|
14
|
+
declare const orderUserAddressApi: OrderUserAddressApiImpl;
|
|
15
|
+
export { orderUserAddressApi };
|
|
@@ -0,0 +1,85 @@
|
|
|
1
|
+
import type { EntityApi, EntityReq, EntityModel, EntityList, EntityPage, EntityTotal, EntityKey, EntityKeyList, EntityCreateReq, EntityUpdateReq, EntityExportReq, EntityImportReq } from "jmash-core";
|
|
2
|
+
export interface OrderUserAddressApi extends EntityApi {
|
|
3
|
+
}
|
|
4
|
+
export interface OrderUserAddressReq extends EntityReq {
|
|
5
|
+
likeUserName?: string;
|
|
6
|
+
note?: string;
|
|
7
|
+
}
|
|
8
|
+
export interface OrderUserAddressModel extends EntityModel {
|
|
9
|
+
addressId?: string;
|
|
10
|
+
userId?: string;
|
|
11
|
+
userName?: string;
|
|
12
|
+
postalCode?: string;
|
|
13
|
+
provinceName?: string;
|
|
14
|
+
cityName?: string;
|
|
15
|
+
countyName?: string;
|
|
16
|
+
detailInfo?: string;
|
|
17
|
+
mobilePhone?: string;
|
|
18
|
+
mobilePhoneIns?: string;
|
|
19
|
+
isDefault?: boolean;
|
|
20
|
+
mobileEncrypt?: boolean;
|
|
21
|
+
goodsNum?: number;
|
|
22
|
+
}
|
|
23
|
+
export interface OrderUserAddressList extends EntityList {
|
|
24
|
+
results: Array<OrderUserAddressModel>;
|
|
25
|
+
}
|
|
26
|
+
export interface OrderUserAddressPage extends EntityPage {
|
|
27
|
+
results: Array<OrderUserAddressModel>;
|
|
28
|
+
subTotalDto: OrderUserAddressModelTotal;
|
|
29
|
+
totalDto: OrderUserAddressModelTotal;
|
|
30
|
+
}
|
|
31
|
+
export interface OrderUserAddressModelTotal extends EntityTotal {
|
|
32
|
+
totalSize: number;
|
|
33
|
+
}
|
|
34
|
+
export interface OrderUserAddressKey extends EntityKey {
|
|
35
|
+
tenant?: string;
|
|
36
|
+
addressId?: string;
|
|
37
|
+
}
|
|
38
|
+
export interface OrderUserAddressKeyList extends EntityKeyList {
|
|
39
|
+
tenant?: string;
|
|
40
|
+
addressId?: Array<string>;
|
|
41
|
+
}
|
|
42
|
+
export interface OrderUserAddressCreateReq extends EntityCreateReq {
|
|
43
|
+
addressId?: string;
|
|
44
|
+
userId?: string;
|
|
45
|
+
userName?: string;
|
|
46
|
+
postalCode?: string;
|
|
47
|
+
provinceName?: string;
|
|
48
|
+
cityName?: string;
|
|
49
|
+
countyName?: string;
|
|
50
|
+
detailInfo?: string;
|
|
51
|
+
mobilePhone?: string;
|
|
52
|
+
mobilePhoneIns?: string;
|
|
53
|
+
isDefault?: boolean;
|
|
54
|
+
note?: string;
|
|
55
|
+
}
|
|
56
|
+
export interface OrderUserAddressUpdateReq extends EntityUpdateReq {
|
|
57
|
+
addressId?: string;
|
|
58
|
+
userId?: string;
|
|
59
|
+
userName?: string;
|
|
60
|
+
postalCode?: string;
|
|
61
|
+
provinceName?: string;
|
|
62
|
+
cityName?: string;
|
|
63
|
+
countyName?: string;
|
|
64
|
+
detailInfo?: string;
|
|
65
|
+
mobilePhone?: string;
|
|
66
|
+
mobilePhoneIns?: string;
|
|
67
|
+
isDefault?: boolean;
|
|
68
|
+
note?: string;
|
|
69
|
+
}
|
|
70
|
+
export type OrderUserAddressFormReq = OrderUserAddressCreateReq | OrderUserAddressUpdateReq;
|
|
71
|
+
export interface OrderUserAddressExportReq extends EntityExportReq {
|
|
72
|
+
req: OrderUserAddressReq;
|
|
73
|
+
}
|
|
74
|
+
export interface OrderUserAddressImportReq extends EntityImportReq {
|
|
75
|
+
}
|
|
76
|
+
export interface OrderUserAddressMoveKey {
|
|
77
|
+
tenant?: string;
|
|
78
|
+
addressId?: string;
|
|
79
|
+
up?: boolean;
|
|
80
|
+
}
|
|
81
|
+
export interface OrderUserAddressEnableKey {
|
|
82
|
+
tenant?: string;
|
|
83
|
+
addressId?: string;
|
|
84
|
+
enable?: boolean;
|
|
85
|
+
}
|
|
@@ -0,0 +1,23 @@
|
|
|
1
|
+
export declare class Constant {
|
|
2
|
+
static readonly PAPER_DICT = "paper";
|
|
3
|
+
static readonly ENUM_ORDER_STATUS: globalThis.Ref<{
|
|
4
|
+
key: string;
|
|
5
|
+
value: string;
|
|
6
|
+
}[], {
|
|
7
|
+
key: string;
|
|
8
|
+
value: string;
|
|
9
|
+
}[] | {
|
|
10
|
+
key: string;
|
|
11
|
+
value: string;
|
|
12
|
+
}[]>;
|
|
13
|
+
static readonly UNPAY = "unpay";
|
|
14
|
+
static readonly UNPOST = "unpost";
|
|
15
|
+
static readonly COMPLETE = "complete";
|
|
16
|
+
static readonly ENUM_PAYMENT_WAY = "xyvcard.order.protobuf.PaymentWay";
|
|
17
|
+
static readonly LQFP_FPPZ = "Fppz";
|
|
18
|
+
static readonly INVOICE_STATUS = "xyvcard.order.protobuf.InvoiceStatus";
|
|
19
|
+
static readonly UNINVOICE = "uninvoice";
|
|
20
|
+
static readonly INVOICING = "invoicing";
|
|
21
|
+
static readonly INVOICED = "invoiced";
|
|
22
|
+
static readonly BASE_UNION = "base";
|
|
23
|
+
}
|
package/dts/index.d.ts
ADDED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export declare function loadLang(i18n: any): void;
|
|
@@ -0,0 +1,143 @@
|
|
|
1
|
+
declare const _default: {
|
|
2
|
+
orderBill: {
|
|
3
|
+
name: string;
|
|
4
|
+
billId: string;
|
|
5
|
+
orderId: string;
|
|
6
|
+
billCode: string;
|
|
7
|
+
billType: string;
|
|
8
|
+
billPrice: string;
|
|
9
|
+
couponPrice: string;
|
|
10
|
+
paymentPrice: string;
|
|
11
|
+
billStatus: string;
|
|
12
|
+
paymentTime: string;
|
|
13
|
+
};
|
|
14
|
+
orderCart: {
|
|
15
|
+
name: string;
|
|
16
|
+
cartId: string;
|
|
17
|
+
shopId: string;
|
|
18
|
+
spuId: string;
|
|
19
|
+
skuId: string;
|
|
20
|
+
spuName: string;
|
|
21
|
+
quantity: string;
|
|
22
|
+
addPrice: string;
|
|
23
|
+
specInfo: string;
|
|
24
|
+
picUrl: string;
|
|
25
|
+
};
|
|
26
|
+
orderInfo: {
|
|
27
|
+
name: string;
|
|
28
|
+
orderId: string;
|
|
29
|
+
shopId: string;
|
|
30
|
+
shopBrancheId: string;
|
|
31
|
+
orderCode: string;
|
|
32
|
+
paymentWay: string;
|
|
33
|
+
deliveryWay: string;
|
|
34
|
+
paymentStatus: string;
|
|
35
|
+
orderStatus: string;
|
|
36
|
+
appraisesStatus: string;
|
|
37
|
+
freightPrice: string;
|
|
38
|
+
salesPrice: string;
|
|
39
|
+
paymentCouponPrice: string;
|
|
40
|
+
orderPrice: string;
|
|
41
|
+
paidPrice: string;
|
|
42
|
+
unpaidPrice: string;
|
|
43
|
+
refundPrice: string;
|
|
44
|
+
surplusPrice: string;
|
|
45
|
+
userMessage: string;
|
|
46
|
+
writeoffQrcode: string;
|
|
47
|
+
isWriteoff: string;
|
|
48
|
+
writeoffTime: string;
|
|
49
|
+
remark: string;
|
|
50
|
+
postalCode: string;
|
|
51
|
+
userName: string;
|
|
52
|
+
mobilePhone: string;
|
|
53
|
+
mobilePhoneIns: string;
|
|
54
|
+
address: string;
|
|
55
|
+
};
|
|
56
|
+
orderItem: {
|
|
57
|
+
name: string;
|
|
58
|
+
itemId: string;
|
|
59
|
+
orderId: string;
|
|
60
|
+
spuId: string;
|
|
61
|
+
skuId: string;
|
|
62
|
+
spuName: string;
|
|
63
|
+
picUrl: string;
|
|
64
|
+
specInfo: string;
|
|
65
|
+
customInfo: string;
|
|
66
|
+
quantity: string;
|
|
67
|
+
salesPrice: string;
|
|
68
|
+
freightPrice: string;
|
|
69
|
+
paymentCouponPrice: string;
|
|
70
|
+
paymentPrice: string;
|
|
71
|
+
remark: string;
|
|
72
|
+
status: string;
|
|
73
|
+
isRefund: string;
|
|
74
|
+
};
|
|
75
|
+
orderLogistics: {
|
|
76
|
+
name: string;
|
|
77
|
+
logisticsId: string;
|
|
78
|
+
orderId: string;
|
|
79
|
+
orderItemId: string;
|
|
80
|
+
logisticsMchCode: string;
|
|
81
|
+
logisticsMchName: string;
|
|
82
|
+
logisticsNo: string;
|
|
83
|
+
deliveryTime: string;
|
|
84
|
+
status: string;
|
|
85
|
+
isCheck: string;
|
|
86
|
+
receiverTime: string;
|
|
87
|
+
message: string;
|
|
88
|
+
};
|
|
89
|
+
orderPayRecord: {
|
|
90
|
+
name: string;
|
|
91
|
+
recordId: string;
|
|
92
|
+
billId: string;
|
|
93
|
+
orderId: string;
|
|
94
|
+
mchId: string;
|
|
95
|
+
payCode: string;
|
|
96
|
+
tradeNo: string;
|
|
97
|
+
paymentMode: string;
|
|
98
|
+
paymentPrice: string;
|
|
99
|
+
status: string;
|
|
100
|
+
paymentTime: string;
|
|
101
|
+
};
|
|
102
|
+
orderRefunds: {
|
|
103
|
+
name: string;
|
|
104
|
+
refundId: string;
|
|
105
|
+
orderId: string;
|
|
106
|
+
shopId: string;
|
|
107
|
+
refundCode: string;
|
|
108
|
+
refundAmount: string;
|
|
109
|
+
status: string;
|
|
110
|
+
refundReson: string;
|
|
111
|
+
refundNote: string;
|
|
112
|
+
refuseRefundReson: string;
|
|
113
|
+
};
|
|
114
|
+
orderRefundRecord: {
|
|
115
|
+
name: string;
|
|
116
|
+
recordId: string;
|
|
117
|
+
refundId: string;
|
|
118
|
+
billId: string;
|
|
119
|
+
orderId: string;
|
|
120
|
+
mchId: string;
|
|
121
|
+
refundCode: string;
|
|
122
|
+
payType: string;
|
|
123
|
+
refundPrice: string;
|
|
124
|
+
refundStatus: string;
|
|
125
|
+
refundTime: string;
|
|
126
|
+
tradeNo: string;
|
|
127
|
+
};
|
|
128
|
+
orderUserAddress: {
|
|
129
|
+
name: string;
|
|
130
|
+
addressId: string;
|
|
131
|
+
userId: string;
|
|
132
|
+
userName: string;
|
|
133
|
+
postalCode: string;
|
|
134
|
+
provinceName: string;
|
|
135
|
+
cityName: string;
|
|
136
|
+
countyName: string;
|
|
137
|
+
detailInfo: string;
|
|
138
|
+
mobilePhone: string;
|
|
139
|
+
mobilePhoneIns: string;
|
|
140
|
+
isDefault: string;
|
|
141
|
+
};
|
|
142
|
+
};
|
|
143
|
+
export default _default;
|
|
@@ -0,0 +1,169 @@
|
|
|
1
|
+
declare const _default: {
|
|
2
|
+
orderUserAddress: {
|
|
3
|
+
name: string;
|
|
4
|
+
addressId: string;
|
|
5
|
+
userId: string;
|
|
6
|
+
userName: string;
|
|
7
|
+
userNameRequired: string;
|
|
8
|
+
postalCode: string;
|
|
9
|
+
provinceName: string;
|
|
10
|
+
cityName: string;
|
|
11
|
+
countyName: string;
|
|
12
|
+
detailInfo: string;
|
|
13
|
+
mobilePhone: string;
|
|
14
|
+
mobilePhoneRequired: string;
|
|
15
|
+
mobilePhoneTrueRequired: string;
|
|
16
|
+
isDefault: string;
|
|
17
|
+
listOrder: string;
|
|
18
|
+
note: string;
|
|
19
|
+
noteRequired: string;
|
|
20
|
+
provinceNameRequired: string;
|
|
21
|
+
detailInfoRequired: string;
|
|
22
|
+
};
|
|
23
|
+
newsPapepr: {
|
|
24
|
+
name: string;
|
|
25
|
+
likeSpuName: string;
|
|
26
|
+
likeSpuNameRequired: string;
|
|
27
|
+
};
|
|
28
|
+
lqfpFpDetail: {
|
|
29
|
+
name: string;
|
|
30
|
+
mxUuid: string;
|
|
31
|
+
fpUuid: string;
|
|
32
|
+
tenantId: string;
|
|
33
|
+
mxxh: string;
|
|
34
|
+
dylzfpmxxh: string;
|
|
35
|
+
lqfpFpDetail: string;
|
|
36
|
+
hwhyslwfwmc: string;
|
|
37
|
+
spfwjc: string;
|
|
38
|
+
ggxh: string;
|
|
39
|
+
dw: string;
|
|
40
|
+
sl: string;
|
|
41
|
+
dj: string;
|
|
42
|
+
je: string;
|
|
43
|
+
slv: string;
|
|
44
|
+
se: string;
|
|
45
|
+
hsje: string;
|
|
46
|
+
kce: string;
|
|
47
|
+
sphfwssflhbbm: string;
|
|
48
|
+
fphxz: string;
|
|
49
|
+
yhzcbs: string;
|
|
50
|
+
};
|
|
51
|
+
lqfpFps: {
|
|
52
|
+
nsrsbh: string;
|
|
53
|
+
nsrsbhRead: string;
|
|
54
|
+
gmfmc: string;
|
|
55
|
+
gmfmcRead: string;
|
|
56
|
+
gmfdz: string;
|
|
57
|
+
gmfdh: string;
|
|
58
|
+
gmfkhh: string;
|
|
59
|
+
gmfzh: string;
|
|
60
|
+
gmfjbr: string;
|
|
61
|
+
jbrsfzjhm: string;
|
|
62
|
+
gmfjbrlxdh: string;
|
|
63
|
+
kpxxpz: string;
|
|
64
|
+
xml: string;
|
|
65
|
+
pdf: string;
|
|
66
|
+
ofd: string;
|
|
67
|
+
moreDropdown: string;
|
|
68
|
+
fplx: string;
|
|
69
|
+
fplxRead: string;
|
|
70
|
+
dwmc: string;
|
|
71
|
+
dwmcRead: string;
|
|
72
|
+
email: string;
|
|
73
|
+
emailRead: string;
|
|
74
|
+
emailFormatError: string;
|
|
75
|
+
remakr: string;
|
|
76
|
+
remakrRead: string;
|
|
77
|
+
zzsjzjtDm: string;
|
|
78
|
+
xsfnsrsbh: string;
|
|
79
|
+
xsfmc: string;
|
|
80
|
+
xsfdz: string;
|
|
81
|
+
xsfdh: string;
|
|
82
|
+
xsfkhh: string;
|
|
83
|
+
xsfzh: string;
|
|
84
|
+
gmfnsrsbh: string;
|
|
85
|
+
gmfnsrsbhRead: string;
|
|
86
|
+
Infogmfmc: string;
|
|
87
|
+
};
|
|
88
|
+
orderInfo: {
|
|
89
|
+
orderCode: string;
|
|
90
|
+
orderCodeRequired: string;
|
|
91
|
+
spuName: string;
|
|
92
|
+
spuNameRequired: string;
|
|
93
|
+
orderStatus: string;
|
|
94
|
+
orderStatuss: string;
|
|
95
|
+
orderStatusRequired: string;
|
|
96
|
+
createTime: string;
|
|
97
|
+
startCreateTime: string;
|
|
98
|
+
endCreateTime: string;
|
|
99
|
+
unitName: string;
|
|
100
|
+
unitNames: string;
|
|
101
|
+
unitNameRequired: string;
|
|
102
|
+
invoiceStatus: string;
|
|
103
|
+
invoiceStatusRequired: string;
|
|
104
|
+
orderCycle: string;
|
|
105
|
+
paperNumber: string;
|
|
106
|
+
unitPrice: string;
|
|
107
|
+
salesPrice: string;
|
|
108
|
+
salesPrices: string;
|
|
109
|
+
invoiceInformation: string;
|
|
110
|
+
viewInvoice: string;
|
|
111
|
+
paymentWay: string;
|
|
112
|
+
paymentTime: string;
|
|
113
|
+
assignAddress: string;
|
|
114
|
+
payment: string;
|
|
115
|
+
apply: string;
|
|
116
|
+
shopName: string;
|
|
117
|
+
shopNameRequired: string;
|
|
118
|
+
likeMobile: string;
|
|
119
|
+
likeMobileRequired: string;
|
|
120
|
+
paymentStatus: string;
|
|
121
|
+
paymentStatusRequired: string;
|
|
122
|
+
orderItemList: string;
|
|
123
|
+
orderCodeAndCreateTime: string;
|
|
124
|
+
status: string;
|
|
125
|
+
customInfo: string;
|
|
126
|
+
appraisesStatus: string;
|
|
127
|
+
appraisesStatusRequired: string;
|
|
128
|
+
salesPriceRequired: string;
|
|
129
|
+
freightPrice: string;
|
|
130
|
+
freightPriceRequired: string;
|
|
131
|
+
paymentCouponPrice: string;
|
|
132
|
+
orderPrice: string;
|
|
133
|
+
deliveryWay: string;
|
|
134
|
+
sellPrice: string;
|
|
135
|
+
sellPriceRequired: string;
|
|
136
|
+
deliver: string;
|
|
137
|
+
cancel: string;
|
|
138
|
+
confirmCancel: string;
|
|
139
|
+
cancelSuccess: string;
|
|
140
|
+
cancelFailed: string;
|
|
141
|
+
userMessage: string;
|
|
142
|
+
picUrl: string;
|
|
143
|
+
specInfo: string;
|
|
144
|
+
goodsPrice: string;
|
|
145
|
+
quantity: string;
|
|
146
|
+
salesPriceAndQuantity: string;
|
|
147
|
+
paymentPrice: string;
|
|
148
|
+
userName: string;
|
|
149
|
+
userNameRequired: string;
|
|
150
|
+
address: string;
|
|
151
|
+
addressRequired: string;
|
|
152
|
+
mobilePhone: string;
|
|
153
|
+
mobilePhoneRequired: string;
|
|
154
|
+
correctPhone: string;
|
|
155
|
+
update: string;
|
|
156
|
+
viewLogist: string;
|
|
157
|
+
postType: string;
|
|
158
|
+
postTypeRequired: string;
|
|
159
|
+
logisticsCode: string;
|
|
160
|
+
logisticCodesRequired: string;
|
|
161
|
+
logisticsNo: string;
|
|
162
|
+
logisticsNoRequired: string;
|
|
163
|
+
moreDropdown: string;
|
|
164
|
+
xml: string;
|
|
165
|
+
pdf: string;
|
|
166
|
+
ofd: string;
|
|
167
|
+
};
|
|
168
|
+
};
|
|
169
|
+
export default _default;
|
package/dts/main.d.ts
ADDED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
import "nprogress/nprogress.css";
|
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
import type { RouteRecordRaw } from "vue-router";
|
|
2
|
+
export declare const DashboardPage: () => Promise<typeof import("@/views/buyer/order-newspaper/index.vue")>;
|
|
3
|
+
export declare const orderPaper: () => Promise<typeof import("@/views/buyer/order-newspaper/orderPaper.vue")>;
|
|
4
|
+
export declare const pay: () => Promise<typeof import("@/views/buyer/order-newspaper/payment.vue")>;
|
|
5
|
+
export declare const address: () => Promise<typeof import("@/views/buyer/order-newspaper/orderAddress.vue")>;
|
|
6
|
+
export declare const orderInvoice: () => Promise<typeof import("@/views/buyer/order-info/invoice.vue")>;
|
|
7
|
+
export declare const orderInvoiceView: () => Promise<typeof import("@/views/buyer/order-info/invoiceView.vue")>;
|
|
8
|
+
export declare const orderInvoiceApply: () => Promise<typeof import("@/views/buyer/order-info/applyEdit.vue")>;
|
|
9
|
+
export declare const orderInfo: () => Promise<typeof import("@/views/buyer/order-info/info.vue")>;
|
|
10
|
+
export declare const buyerRoutes: Array<RouteRecordRaw>;
|
|
11
|
+
export declare const constantRoutes: RouteRecordRaw[];
|
|
12
|
+
/**
|
|
13
|
+
* 创建路由
|
|
14
|
+
*/
|
|
15
|
+
declare const router: import("vue-router").Router;
|
|
16
|
+
export default router;
|
|
@@ -0,0 +1,2 @@
|
|
|
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;
|
|
@@ -0,0 +1,2 @@
|
|
|
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;
|
|
@@ -0,0 +1,2 @@
|
|
|
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;
|
|
@@ -0,0 +1,2 @@
|
|
|
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;
|
|
@@ -0,0 +1,2 @@
|
|
|
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;
|
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
declare const _default: import("vue").DefineComponent<globalThis.ExtractPropTypes<{
|
|
2
|
+
fpUuid: {
|
|
3
|
+
type: StringConstructor;
|
|
4
|
+
default: string;
|
|
5
|
+
};
|
|
6
|
+
}>, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<globalThis.ExtractPropTypes<{
|
|
7
|
+
fpUuid: {
|
|
8
|
+
type: StringConstructor;
|
|
9
|
+
default: string;
|
|
10
|
+
};
|
|
11
|
+
}>> & Readonly<{}>, {
|
|
12
|
+
fpUuid: string;
|
|
13
|
+
}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
|
|
14
|
+
export default _default;
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
declare const _default: import("vue").DefineComponent<globalThis.ExtractPropTypes<{
|
|
2
|
+
modelValue: globalThis.PropType<boolean>;
|
|
3
|
+
}>, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
|
|
4
|
+
refresh: (...args: any[]) => void;
|
|
5
|
+
}, string, import("vue").PublicProps, Readonly<globalThis.ExtractPropTypes<{
|
|
6
|
+
modelValue: globalThis.PropType<boolean>;
|
|
7
|
+
}>> & Readonly<{
|
|
8
|
+
onRefresh?: ((...args: any[]) => any) | undefined;
|
|
9
|
+
}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
|
|
10
|
+
export default _default;
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
declare const _default: import("vue").DefineComponent<globalThis.ExtractPropTypes<{
|
|
2
|
+
modelValue: globalThis.PropType<boolean>;
|
|
3
|
+
}>, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
|
|
4
|
+
refresh: (...args: any[]) => void;
|
|
5
|
+
}, string, import("vue").PublicProps, Readonly<globalThis.ExtractPropTypes<{
|
|
6
|
+
modelValue: globalThis.PropType<boolean>;
|
|
7
|
+
}>> & Readonly<{
|
|
8
|
+
onRefresh?: ((...args: any[]) => any) | undefined;
|
|
9
|
+
}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
|
|
10
|
+
export default _default;
|
|
@@ -0,0 +1,22 @@
|
|
|
1
|
+
import { type PropType } from "vue";
|
|
2
|
+
import type { OrderUserAddressKey } from "@/api/buyer/order-user-address/types";
|
|
3
|
+
declare const _default: import("vue").DefineComponent<globalThis.ExtractPropTypes<{
|
|
4
|
+
modelValue: PropType<boolean>;
|
|
5
|
+
entityKey: {
|
|
6
|
+
type: PropType<OrderUserAddressKey>;
|
|
7
|
+
default: () => void;
|
|
8
|
+
};
|
|
9
|
+
}>, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
|
|
10
|
+
refresh: (...args: any[]) => void;
|
|
11
|
+
}, string, import("vue").PublicProps, Readonly<globalThis.ExtractPropTypes<{
|
|
12
|
+
modelValue: PropType<boolean>;
|
|
13
|
+
entityKey: {
|
|
14
|
+
type: PropType<OrderUserAddressKey>;
|
|
15
|
+
default: () => void;
|
|
16
|
+
};
|
|
17
|
+
}>> & Readonly<{
|
|
18
|
+
onRefresh?: ((...args: any[]) => any) | undefined;
|
|
19
|
+
}>, {
|
|
20
|
+
entityKey: OrderUserAddressKey;
|
|
21
|
+
}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
|
|
22
|
+
export default _default;
|
|
@@ -0,0 +1,2 @@
|
|
|
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;
|
|
@@ -0,0 +1,2 @@
|
|
|
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;
|
|
@@ -0,0 +1,2 @@
|
|
|
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;
|
|
@@ -0,0 +1,2 @@
|
|
|
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;
|
|
@@ -0,0 +1,2 @@
|
|
|
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;
|
|
@@ -0,0 +1,22 @@
|
|
|
1
|
+
import { type PropType } from "vue";
|
|
2
|
+
import type { OrderUserAddressKey } from "@/api/buyer/order-user-address/types";
|
|
3
|
+
declare const _default: import("vue").DefineComponent<globalThis.ExtractPropTypes<{
|
|
4
|
+
modelValue: PropType<boolean>;
|
|
5
|
+
entityKey: {
|
|
6
|
+
type: PropType<OrderUserAddressKey>;
|
|
7
|
+
default: () => void;
|
|
8
|
+
};
|
|
9
|
+
}>, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
|
|
10
|
+
refresh: (...args: any[]) => void;
|
|
11
|
+
}, string, import("vue").PublicProps, Readonly<globalThis.ExtractPropTypes<{
|
|
12
|
+
modelValue: PropType<boolean>;
|
|
13
|
+
entityKey: {
|
|
14
|
+
type: PropType<OrderUserAddressKey>;
|
|
15
|
+
default: () => void;
|
|
16
|
+
};
|
|
17
|
+
}>> & Readonly<{
|
|
18
|
+
onRefresh?: ((...args: any[]) => any) | undefined;
|
|
19
|
+
}>, {
|
|
20
|
+
entityKey: OrderUserAddressKey;
|
|
21
|
+
}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
|
|
22
|
+
export default _default;
|
|
@@ -0,0 +1,2 @@
|
|
|
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;
|
package/package.json
CHANGED
|
@@ -1,12 +1,12 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "xyvcard-paper-buyer",
|
|
3
|
-
"version": "0.0.
|
|
3
|
+
"version": "0.0.5",
|
|
4
4
|
"private": false,
|
|
5
5
|
"module": "dist/index.mjs",
|
|
6
|
-
"types": "dts/
|
|
6
|
+
"types": "dts/index.d.ts",
|
|
7
7
|
"files": [
|
|
8
8
|
"dist",
|
|
9
|
-
"dts
|
|
9
|
+
"dts"
|
|
10
10
|
],
|
|
11
11
|
"scripts": {
|
|
12
12
|
"dev": "vite",
|