config.js 873 B

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768
  1. //详情申请状态
  2. export const clockState = [
  3. {
  4. title: '驳回',
  5. id: 0,
  6. color: '#f31212'
  7. },
  8. {
  9. title: '审核中',
  10. id: 1,
  11. color: '#1d4fea'
  12. },
  13. {
  14. title: '通过',
  15. id: 2,
  16. color: '#34de38'
  17. },
  18. {
  19. title: '已撤销',
  20. id: 3,
  21. color: '#242424'
  22. },
  23. {
  24. title: '技术驳回',
  25. id: 4,
  26. color: '#f31212'
  27. },
  28. ];
  29. //审核日志状态
  30. export const clockJournalState = [
  31. {
  32. title: '审核发起(打卡)',
  33. id: 1,
  34. color: '#1d4fea'
  35. },
  36. {
  37. title: '通过',
  38. id: 2,
  39. color: '#34de38'
  40. },
  41. {
  42. title: '驳回',
  43. id: 3,
  44. color: '#f31212'
  45. },
  46. ];
  47. export const stageList = [
  48. {
  49. lable: '市场调研',
  50. value: 0,
  51. },
  52. {
  53. lable: '立项阶段',
  54. value: 1,
  55. },
  56. {
  57. lable: '研发中',
  58. value: 2,
  59. },
  60. {
  61. lable: '项目验收阶段',
  62. value: 3,
  63. },
  64. ];