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
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
|
| // 订单状态
| export const orderStatusList = [
| {
| name: '全部',
| status: 'ALL'
| },
| {
| name: '未付款',
| status: 'UNPAID'
| },
| {
| name: '已付款',
| status: 'PAID'
| },
| {
| name: '待发货',
| status: 'UNDELIVERED'
| },
| {
| name: '已发货',
| status: 'DELIVERED'
| },
| {
| name: '已完成',
| status: 'COMPLETED'
| },
| {
| name: '待核验',
| status: 'TAKE'
| },
| {
| name: '已关闭',
| status: 'CANCELLED'
| },
| {
| name: '待提货',
| status: 'STAY_PICKED_UP'
| }
| ]
| // 订单售后状态
| export const afterSaleStatusList = [
| {
| name: '申请中',
| status: 'APPLY'
| },
| {
| name: '通过',
| status: 'PASS'
| },
| {
| name: '拒绝',
| status: 'REFUSE'
| },
| {
| name: '买家退货,待卖家收货',
| status: 'BUYER_RETURN'
| },
| {
| name: '卖家确认收货',
| status: 'SELLER_CONFIRM'
| },
| {
| name: '卖家终止售后',
| status: 'SELLER_TERMINATION'
| },
| {
| name: '买家确认收货',
| status: 'BUYER_CONFIRM'
| },
| {
| name: '买家取消售后',
| status: 'BUYER_CANCEL'
| },
| {
| name: '完成售后',
| status: 'COMPLETE'
| },
| {
| name: '等待平台退款',
| status: 'WAIT_REFUND'
| }
| ]
|
|