Нет описания

constData.config.js 3.2KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138
  1. export default {
  2. // app应用名称
  3. appName: '通用办公',
  4. // 验证码发送间隔
  5. sendCodeTime: 60,
  6. //首页banner图数据
  7. bannnerData: [{
  8. id: "1",
  9. imgPath: "../../static/banner-01.png"
  10. },
  11. {
  12. id: "2",
  13. imgPath: "../../static/banner-02.png"
  14. }
  15. ],
  16. //任务列表数据
  17. roleListData: {
  18. //审核员数据
  19. auditorList: [{
  20. id: "1",
  21. imagePath: "../../static/icon_tosubmit.png",
  22. imageBg: "#fe940a",
  23. text: "待审转办",
  24. navigateToUrl: "/pages/workOrderList/workOrderList",
  25. },
  26. {
  27. id: "2",
  28. imagePath: "../../static/icon_orderBack.png",
  29. imageBg: "#4792f8",
  30. text: "退回待审转办"
  31. },
  32. {
  33. id: "3",
  34. imagePath: "../../static/icon_delayed.png",
  35. imageBg: "#ff7451",
  36. text: "居委延时审核"
  37. },
  38. {
  39. id: "4",
  40. imagePath: "../../static/icon_tosubmit.png",
  41. imageBg: "#ff7451",
  42. text: "居委退回审核"
  43. },
  44. {
  45. id: "5",
  46. imagePath: "../../static/icon_already.png",
  47. imageBg: "#1ccd8d",
  48. text: "已办待回访"
  49. },
  50. {
  51. id: "6",
  52. imagePath: "../../static/icon_backlog.png",
  53. imageBg: "#7068e2",
  54. text: "正在办理"
  55. },
  56. {
  57. id: "7",
  58. imagePath: "../../static/icon_unsuccessful.png",
  59. imageBg: "#f26564",
  60. text: "超期未果"
  61. },
  62. {
  63. id: "8",
  64. imagePath: "../../static/icon_unsuccessful.png",
  65. imageBg: "#f26564",
  66. text: "已办未果"
  67. },
  68. {
  69. id: "9",
  70. imagePath: "../../static/icon_already.png",
  71. imageBg: "#1ccd8d",
  72. text: "已办结"
  73. },
  74. {
  75. id: "10",
  76. imagePath: "../../static/icon_backlog.png",
  77. imageBg: "#1ccd8d",
  78. text: "已转督办"
  79. },
  80. {
  81. id: "11",
  82. imagePath: "../../static/icon_backlog.png",
  83. imageBg: "#1ccd8d",
  84. text: "已退回重办"
  85. },
  86. {
  87. id: "12",
  88. imagePath: "../../static/icon-search.png",
  89. imageBg: "#1ccd8d",
  90. text: "工单查询"
  91. }
  92. ],
  93. //办理人员测试
  94. acceptList: [{
  95. id: "1",
  96. imagePath: "../../static/icon_tosubmit.png",
  97. imageBg: "#fe940a",
  98. text: "待审转办",
  99. navigateToUrl: "/pages/workOrderList/workOrderList?workOrderListType=1&tab=0",
  100. },
  101. {
  102. id: "12",
  103. imagePath: "../../static/icon-search.png",
  104. imageBg: "#1ccd8d",
  105. text: "工单查询",
  106. navigateToUrl: "/pages/workOrderList/workOrderList?workOrderListType=0&tab=''",
  107. }
  108. ]
  109. },
  110. //公告管理数据
  111. noticListData: [{
  112. id: "1",
  113. imagePath: "../../static/icon_noticefi.png",
  114. imageBg: "#4792f8",
  115. textTit: "暂无内容",
  116. textCon: "正在加急赶工中..."
  117. },
  118. {
  119. id: "2",
  120. imagePath: "../../static/icon_warning.png",
  121. imageBg: "#ff0000",
  122. textTit: "暂无内容",
  123. textCon: "正在加急赶工中..."
  124. },
  125. {
  126. id: "3",
  127. imagePath: "../../static/icon_overtime.png",
  128. imageBg: "#ff9600",
  129. textTit: "暂无内容",
  130. textCon: "正在加急赶工中..."
  131. },
  132. ]
  133. };