6ed9faf1
wuxw
开发完成优惠下的积分功能
|
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
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
|
export const messages = {
en: {
communityIntegral: {
title: 'Community Points',
accountId: 'Account ID:',
accountName: 'Account Name:',
points: 'Points:',
withdraw: 'Withdraw',
transactionDetails: 'Transaction Details',
pointsWithdrawal: 'Points Withdrawal'
},
communityIntegralDetail: {
id: 'ID',
integralAccount: 'Points Account',
type: 'Type',
transferIn: 'Transfer In',
transferOut: 'Transfer Out',
transactionAmount: 'Amount',
currentAmount: 'Balance',
transactionNo: 'Transaction No',
remark: 'Remark',
time: 'Time'
},
applyWithholdIntegral: {
id: 'ID',
integralId: 'Points ID',
integralName: 'Points Name',
withdrawAmount: 'Amount',
applicant: 'Applicant',
applicantPhone: 'Phone',
bankAccount: 'Bank Account',
accountName: 'Account Name',
bank: 'Bank',
applicationNote: 'Note',
status: 'Status',
reviewNote: 'Review Note'
},
deleteApplyWithholdIntegral: {
confirmTitle: 'Confirm Operation',
confirmText: 'Are you sure to delete this withdrawal application?',
cancel: 'Cancel',
confirmDelete: 'Confirm Delete',
deleteSuccess: 'Delete successfully',
deleteFailed: 'Delete failed'
},
withholdIntegral: {
applyWithdraw: 'Apply Withdrawal',
totalPoints: 'Total Points',
withdrawPoints: 'Withdraw Points',
withdrawPointsPlaceholder: 'Required, please enter withdraw points',
withdrawPointsRequired: 'Withdraw points is required',
applicant: 'Applicant',
applicantPlaceholder: 'Required, please enter applicant name',
applicantRequired: 'Applicant is required',
applicantPhone: 'Phone',
applicantPhonePlaceholder: 'Required, please enter phone number',
applicantPhoneRequired: 'Phone is required',
bankAccount: 'Bank Account',
bankAccountPlaceholder: 'Required, please enter bank account',
bankAccountRequired: 'Bank account is required',
accountName: 'Account Name',
accountNamePlaceholder: 'Required, please enter account name',
accountNameRequired: 'Account name is required',
bank: 'Bank',
bankPlaceholder: 'Required, please enter bank name',
bankRequired: 'Bank is required',
applicationNote: 'Note',
applicationNotePlaceholder: 'Required, please enter application note',
applySuccess: 'Apply successfully',
applyFailed: 'Apply failed'
}
},
zh: {
communityIntegral: {
title: '小区积分',
accountId: '账户ID:',
accountName: '账户名称:',
points: '积分数:',
withdraw: '提现',
transactionDetails: '交易明细',
pointsWithdrawal: '积分提现'
},
communityIntegralDetail: {
id: '编号',
integralAccount: '金币账户',
type: '类型',
transferIn: '转入',
transferOut: '转出',
transactionAmount: '交易金额',
currentAmount: '当前金额',
transactionNo: '交易单号',
remark: '备注',
time: '时间'
},
applyWithholdIntegral: {
id: '编号',
integralId: '积分ID',
integralName: '积分名称',
withdrawAmount: '提现金额',
applicant: '申请人',
applicantPhone: '申请人电话',
bankAccount: '银行账户',
accountName: '账号名称',
bank: '开户行',
applicationNote: '申请说明',
status: '状态',
reviewNote: '审核说明'
},
deleteApplyWithholdIntegral: {
confirmTitle: '请确认您的操作!',
confirmText: '确定删除申请',
cancel: '点错了',
confirmDelete: '确认删除',
deleteSuccess: '删除成功',
deleteFailed: '删除失败'
},
withholdIntegral: {
applyWithdraw: '申请提现',
totalPoints: '总积分数',
withdrawPoints: '提现积分',
withdrawPointsPlaceholder: '必填,请填写提现积分',
withdrawPointsRequired: '提现积分不能为空',
applicant: '申请人',
applicantPlaceholder: '必填,请填写申请人',
applicantRequired: '申请人不能为空',
applicantPhone: '申请人电话',
applicantPhonePlaceholder: '必填,请填写申请人电话',
applicantPhoneRequired: '申请人电话不能为空',
bankAccount: '银行账户',
bankAccountPlaceholder: '必填,请填写银行账户',
bankAccountRequired: '银行账户不能为空',
accountName: '账号名称',
accountNamePlaceholder: '必填,请填写账号名称',
accountNameRequired: '账号名称不能为空',
bank: '开户行',
bankPlaceholder: '必填,请填写开户行',
bankRequired: '开户行不能为空',
applicationNote: '申请说明',
applicationNotePlaceholder: '必填,请填写申请说明',
applySuccess: '申请成功',
applyFailed: '申请失败'
}
}
}
|