12345678910111213141516171819202122232425262728293031323334353637383940 |
- export const Constant = {
- RoleStatus: {
- 1: {
- status: 'success',
- text: '正常'
- },
- 2: {
- status: 'error',
- text: '冻结'
- }
- },
- TaskStatus: {
- 0: {
- status: 'success',
- text: '正常'
- },
- 1: {
- status: 'error',
- text: '暂停'
- }
- },
- // 融资
- ProjectLoanCapitalChange: {
- 1: {
- status: 'success',
- text: '是'
- },
- 0: {
- status: 'error',
- text: '否'
- }
- },
- PROJECT_LOAN_ARRIVAL_ACCOUNT: {
- 1: {
- status: 'success',
- text: '已到账'
- }
- }
- }
|