-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathinterface.ts
More file actions
52 lines (49 loc) · 1.04 KB
/
interface.ts
File metadata and controls
52 lines (49 loc) · 1.04 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
import CartView from './src/views/CartView/CartView';
import SettlementView from './src/views/SettlementView/SettlementView';
import AddressView from './src/views/AddressView/AddressView';
// CartView
export interface CartListItem {
id: string;
img: string;
name: string;
property: string;
price: number;
amount: number;
maxAmount: number;
isSelected: boolean;
}
export interface MayLikeListItem {
id: string;
img: string;
name: string;
place: string;
price: number;
}
// SettlementView
export interface OrderListItem {
id: string;
name: string;
property: string;
price: number;
amount: number;
freight: number;
maxAmount: number;
img: string;
}
export interface VoucherListItem {
limit: number;
price: number;
isSelected: boolean;
}
export interface CouponListItem {
price: number;
isSelected: boolean;
}
// AddressView
export interface AddressListItem {
name: string;
tel: string;
remarks: string;
address: string;
isDefault: boolean;
}