47 lines
1.0 KiB
JavaScript
47 lines
1.0 KiB
JavaScript
;
|
|
export const IActionDef = {
|
|
stm: {
|
|
succeed: ['withdrawing', 'successful'],
|
|
fail: ['withdrawing', 'failed'],
|
|
},
|
|
is: 'withdrawing',
|
|
};
|
|
export const entityDesc = {
|
|
locales: {
|
|
zh_CN: {
|
|
name: '提现',
|
|
attr: {
|
|
account: '帐户',
|
|
price: '金额',
|
|
channel: '途径',
|
|
iState: '状态',
|
|
opers: '被关联帐户操作',
|
|
},
|
|
v: {
|
|
iState: {
|
|
withdrawing: '提现中',
|
|
successful: '成功的',
|
|
failed: '失败的',
|
|
},
|
|
},
|
|
action: {
|
|
succeed: '成功',
|
|
fail: '失败',
|
|
},
|
|
},
|
|
},
|
|
style: {
|
|
icon: {
|
|
succeed: '',
|
|
fail: '',
|
|
},
|
|
color: {
|
|
iState: {
|
|
withdrawing: '#D2B4DE',
|
|
successful: '#2E86C1',
|
|
failed: '#D6DBDF',
|
|
}
|
|
}
|
|
}
|
|
};
|