73 lines
2.7 KiB
TypeScript
73 lines
2.7 KiB
TypeScript
|
|
// CommissionTypeEnum
|
||
|
|
export const CommissionTypeEnum= {
|
||
|
|
'Platform': {"text":"平台","color":"#1890ff","value":"Platform"},
|
||
|
|
'Agent': {"text":"代理","color":"#722ed1","value":"Agent"},
|
||
|
|
'Repayment': {"text":"还款","color":"#f5222d","value":"Repayment"},
|
||
|
|
'Merchant': {"text":"商家","color":"#52c41a","value":"Merchant"},
|
||
|
|
'Other': {"text":"其他","color":"#bfbfbf","value":"Other"},
|
||
|
|
};
|
||
|
|
|
||
|
|
// LoanCompaniesTypeEnum
|
||
|
|
export const LoanCompaniesTypeEnum= {
|
||
|
|
'DeviceManufacturer': {"text":"设备商","color":"#459423","value":"DeviceManufacturer"},
|
||
|
|
'CapitalProvider': {"text":"资金方","color":"#13952d","value":"CapitalProvider"},
|
||
|
|
'SupplyChain': {"text":"供应链","color":"#033fcc","value":"SupplyChain"},
|
||
|
|
};
|
||
|
|
|
||
|
|
// LoansOrderStatusEnum
|
||
|
|
export const LoansOrderStatusEnum= {
|
||
|
|
'NotStart': {"text":"未开始","color":"#983054","value":"NotStart"},
|
||
|
|
'OnGoing': {"text":"进行中","color":"#a36451","value":"OnGoing"},
|
||
|
|
'Finished': {"text":"已完成","color":"#0ce4b6","value":"Finished"},
|
||
|
|
'Overdue': {"text":"逾期","color":"#7723f8","value":"Overdue"},
|
||
|
|
};
|
||
|
|
|
||
|
|
// LoansTypeEnum
|
||
|
|
export const LoansTypeEnum= {
|
||
|
|
'Daily': {"text":"每日还款(等本等息)","color":"#e847d5","value":"Daily"},
|
||
|
|
};
|
||
|
|
|
||
|
|
// OrgUserTypeEnum
|
||
|
|
export const OrgUsersTypeEnum= {
|
||
|
|
'Agent': {"text":"代理","color":"#bd1087","value":"Agent"},
|
||
|
|
'Bosses': {"text":"老板","color":"#5892ea","value":"Bosses"},
|
||
|
|
'LoanCompanies': {"text":"资金方","color":"#7e2070","value":"LoanCompanies"},
|
||
|
|
};
|
||
|
|
|
||
|
|
// PayOrderStatusEnum
|
||
|
|
export const PayOrderStatusEnum= {
|
||
|
|
'1': {"text":"待支付","color":"#faad14","value":"1"},
|
||
|
|
'2': {"text":"支付成功","color":"#52c41a","value":"2"},
|
||
|
|
'3': {"text":"支付失败","color":"#f5222d","value":"3"},
|
||
|
|
'9': {"text":"待轮询","color":"#1890ff","value":"9"},
|
||
|
|
'0': {"text":"其他","color":"#bfbfbf","value":"0"},
|
||
|
|
};
|
||
|
|
|
||
|
|
// PayOrdersTypeEnum
|
||
|
|
export const PayOrdersTypeEnum= {
|
||
|
|
'1': {"text":"支付","color":"#52c41a","value":"1"},
|
||
|
|
'2': {"text":"退款","color":"#faad14","value":"2"},
|
||
|
|
};
|
||
|
|
|
||
|
|
// SysModuleEnum
|
||
|
|
export const SysModuleEnum= {
|
||
|
|
'Admin': {"text":"管理员","color":"#cf1322","value":"Admin"},
|
||
|
|
'Customer': {"text":"客户","color":"#d4b106","value":"Customer"},
|
||
|
|
};
|
||
|
|
|
||
|
|
// SysPermissionsTypeEnum
|
||
|
|
export const SysPermissionsTypeEnum= {
|
||
|
|
'Directory': {"text":"目录","color":"#6d7e14","value":"Directory"},
|
||
|
|
'Page': {"text":"页面","color":"#4d9a13","value":"Page"},
|
||
|
|
'Button': {"text":"按钮","color":"#97224f","value":"Button"},
|
||
|
|
};
|
||
|
|
|
||
|
|
// SysTasksStatusEnum
|
||
|
|
export const SysTasksStatusEnum= {
|
||
|
|
'1': {"text":"未开始","color":"#bfbfbf","value":"1"},
|
||
|
|
'2': {"text":"未开始","color":"#1890ff","value":"2"},
|
||
|
|
'3': {"text":"已完成","color":"#a0d911","value":"3"},
|
||
|
|
'4': {"text":"错误","color":"#f5222d","value":"4"},
|
||
|
|
};
|
||
|
|
|