constant.js 577 B

12345678910111213141516171819202122232425262728293031323334353637383940
  1. export const Constant = {
  2. RoleStatus: {
  3. 1: {
  4. status: 'success',
  5. text: '正常'
  6. },
  7. 2: {
  8. status: 'error',
  9. text: '冻结'
  10. }
  11. },
  12. TaskStatus: {
  13. 0: {
  14. status: 'success',
  15. text: '正常'
  16. },
  17. 1: {
  18. status: 'error',
  19. text: '暂停'
  20. }
  21. },
  22. // 融资
  23. ProjectLoanCapitalChange: {
  24. 1: {
  25. status: 'success',
  26. text: '是'
  27. },
  28. 0: {
  29. status: 'error',
  30. text: '否'
  31. }
  32. },
  33. PROJECT_LOAN_ARRIVAL_ACCOUNT: {
  34. 1: {
  35. status: 'success',
  36. text: '已到账'
  37. }
  38. }
  39. }