Showing
2 changed files
with
32 additions
and
0 deletions
app/pages/order/configs/index.js
0 → 100644
app/pages/order/configs/order.js
0 → 100644
1 | +export default { | ||
2 | + //订单状态 | ||
3 | + orderStatus: { | ||
4 | + 0: '待审核', | ||
5 | + 20: '已付订金', | ||
6 | + 40: '待付尾款', | ||
7 | + 100: '已审核', | ||
8 | + 200: '备货中', | ||
9 | + 300: '调拨中', | ||
10 | + 400: '已发货', | ||
11 | + 500: '运输中', | ||
12 | + 600: '已交寄', | ||
13 | + 700: '订单完成', | ||
14 | + 900: '用户取消', | ||
15 | + 901: '客服取消', | ||
16 | + 902: '备货中取消', | ||
17 | + 903: '配货中取消', | ||
18 | + 904: '发货后取消', | ||
19 | + 905: '运输中取消', | ||
20 | + 906: '超时取消', | ||
21 | + 907: '拒收', | ||
22 | + }, | ||
23 | + //支付状态 | ||
24 | + paymentStatus: { | ||
25 | + 0: '未支付', | ||
26 | + 1: '已支付', | ||
27 | + 2: '部分支付', | ||
28 | + }, | ||
29 | +}; |
-
Please register or login to post a comment