50 lines
1.2 KiB
JavaScript
50 lines
1.2 KiB
JavaScript
export const IActionDef = {
|
|
stm: {
|
|
succeed: ['transferring', 'successful'],
|
|
fail: ['transferring', 'failed'],
|
|
},
|
|
is: 'transferring',
|
|
};
|
|
;
|
|
export const entityDesc = {
|
|
locales: {
|
|
zh_CN: {
|
|
name: '提现转账',
|
|
attr: {
|
|
withdraw: '提现申请',
|
|
withdrawAccount: '提现账户',
|
|
price: '金额',
|
|
loss: '手续费',
|
|
operator: '操作者',
|
|
iState: '状态',
|
|
meta: 'metadata',
|
|
reason: '原因',
|
|
},
|
|
v: {
|
|
iState: {
|
|
transferring: '待转账',
|
|
failed: '已失败',
|
|
successful: '已成功',
|
|
},
|
|
},
|
|
action: {
|
|
succeed: '提现成功',
|
|
fail: '提现失败',
|
|
},
|
|
},
|
|
},
|
|
style: {
|
|
color: {
|
|
iState: {
|
|
transferring: '#D2B4DE',
|
|
successful: '#2E86C1',
|
|
failed: '#D6DBDF',
|
|
}
|
|
},
|
|
icon: {
|
|
succeed: '',
|
|
fail: '',
|
|
}
|
|
}
|
|
};
|