order-constants.js
1.2 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
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
// 订单来源, 接口对应查询参数: tabType
export const ownType = {
BUY: 'buy', // 买家
SELL: 'sell', // 卖家
};
// 卖家订单状态, 接口对应查询参数: type
export const sellerOrderStatus = {
IN_SALE: 1, // 出售中
TO_BE_DELIVERED: 2, // 待发货
SHIPPED: 3, // 已发货
DONE: 5, // 交易完成
FAILED: 6, // 交易失败
};
// 买家订单状态,接口对应查询参数: type
export const buyerOrderStatus = {
UNPAID: 2, // 未付款
TO_BE_DELIVERED: 3, // 待发货
PENDING_RECEIPT: 4, // 待收货
DONE: 5, // 交易成功
FAILED: 6, // 交易失败
};
// 卖家订单状态, 接口对应查询参数: type
export const sellerOrderStatusList = [
{
value: 1,
text: '出售中',
},
{
value: 2,
text: '待发货',
},
{
value: 3,
text: '已发货',
},
{
value: 5,
text: '交易完成',
},
{
value: 6,
text: '交易失败',
},
];
// 买家订单状态,接口对应查询参数: type
export const buyerOrderStatusList = [
{
value: 1,
text: '全部',
},
{
value: 2,
text: '待付款',
},
{
value: 3,
text: '待发货',
},
{
value: 4,
text: '待收货',
},
];