storeOrderCartManageLang.js
2.1 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
68
69
70
71
72
73
74
75
76
77
78
79
80
export const messages = {
en: {
storeOrderCartManage: {
search: {
title: 'Search Conditions',
cartId: 'Order Number',
state: 'Select Status',
prodName: 'Enter Product Name',
shop: 'Select Shop'
},
list: {
title: 'Order Information'
},
table: {
cartId: 'Order Number',
appName: 'Platform',
shopName: 'Shop',
cartType: 'Type',
service: 'Service',
goods: 'Goods',
prodName: 'Name',
cartNum: 'Quantity',
personName: 'User Name',
payPrice: 'Payment Amount',
stateName: 'Order Status',
createTime: 'Creation Time'
},
state: {
unpurchased: 'Unpurchased',
waitingDelivery: 'Waiting Delivery',
waitingReceive: 'Waiting Receive',
waitingComment: 'Waiting Comment',
applyRefund: 'Apply Refund',
refundSuccess: 'Refund Success',
refunded: 'Refunded'
},
fetchError: 'Failed to fetch order list',
fetchShopsError: 'Failed to fetch shops'
}
},
zh: {
storeOrderCartManage: {
search: {
title: '查询条件',
cartId: '订单编号',
state: '请选择状态',
prodName: '请输入商品名称',
shop: '请选择商铺'
},
list: {
title: '订单信息'
},
table: {
cartId: '订单号',
appName: '平台',
shopName: '商铺',
cartType: '类型',
service: '服务',
goods: '商品',
prodName: '名称',
cartNum: '数量',
personName: '用户名称',
payPrice: '支付金额',
stateName: '订单状态',
createTime: '创建时间'
},
state: {
unpurchased: '未购买',
waitingDelivery: '待发货',
waitingReceive: '待收货',
waitingComment: '待评价',
applyRefund: '申请退款',
refundSuccess: '退货成功',
refunded: '已退款'
},
fetchError: '获取订单列表失败',
fetchShopsError: '获取商铺列表失败'
}
}
}