constData.config.js 4.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273
  1. export default {
  2. // app应用名称
  3. appName: '栾城教育局移动办公平台',
  4. // 验证码发送间隔
  5. sendCodeTime: 60,
  6. // 设置-设置中心
  7. setList: [{
  8. title: '个人资料',
  9. url: '/pages/user/userinfo/userinfo',
  10. content: ''
  11. },
  12. {
  13. title: '修改密码',
  14. url: '/pages/public/password?type=1',
  15. content: ''
  16. },
  17. {
  18. title: '清除缓存',
  19. url: 'clearCache',
  20. content: ''
  21. },
  22. /* #ifdef APP-PLUS */
  23. {
  24. title: '检查更新',
  25. url: 'versionUpgrade',
  26. content: ''
  27. },
  28. /* #endif */
  29. ],
  30. //应用中心-公文管理
  31. worksList: [
  32. /* {
  33. icon: 'iconjiabanshixiang',
  34. url: '/pages/gongwen/dblist',
  35. title: '待办公文',
  36. color: '#ff6b81'
  37. }, */
  38. {
  39. icon: 'iconshenpijieshu',
  40. url: '/pages/gongwen/yblist',
  41. title: '已办工作',
  42. color: '#ff6b81'
  43. },
  44. {
  45. icon: 'iconyuangong',
  46. url: '/pages/gongwen/mysend',
  47. title: '我发起件',
  48. color: '#ff6b81'
  49. }
  50. ],
  51. // 通知管理
  52. manageSectionList: [{
  53. icon: 'icondangan',
  54. url: '/pages/notify/send',
  55. title: '已发通知',
  56. color: '#ff6b81'
  57. },
  58. {
  59. icon: 'iconhetong',
  60. url: '/pages/notify/recive',
  61. title: '已收通知',
  62. color: '#ff6b81'
  63. }
  64. ],
  65. // 信息管理
  66. otherSectionList: [{
  67. title: '已发信息',
  68. icon: 'iconrizhi',
  69. url: '/pages/message/send',
  70. color: '#ff6b81'
  71. },
  72. {
  73. title: '已收信息',
  74. icon: 'iconguizhangzhidu',
  75. url: '/pages/message/recive',
  76. color: '#ff6b81'
  77. },
  78. ],
  79. //督导评估
  80. supervisionList: [],
  81. // 消息类型 1:公告;2:提醒;3:私信
  82. notifyTypeList: [{
  83. type: 0,
  84. content: ''
  85. },
  86. {
  87. type: 1,
  88. content: '公告'
  89. },
  90. {
  91. type: 2,
  92. content: '提醒'
  93. },
  94. {
  95. type: 3,
  96. content: '私信'
  97. }
  98. ],
  99. // 主题列表
  100. themeList: [{
  101. title: '官方',
  102. name: 'rf',
  103. color: '#fa436a',
  104. tabList: [
  105. '/static/tab-home-rf.png',
  106. '/static/tab-notify-rf.png',
  107. '/static/tab-cate-rf.png',
  108. '/static/tab-my-rf.png'
  109. ]
  110. },
  111. {
  112. title: '嫣红',
  113. name: 'red',
  114. color: '#e54d42',
  115. tabList: [
  116. '/static/tab-home-red.png',
  117. '/static/tab-notify-red.png',
  118. '/static/tab-cate-red.png',
  119. '/static/tab-my-red.png'
  120. ]
  121. },
  122. {
  123. title: '桔橙',
  124. name: 'orange',
  125. color: '#f37b1d',
  126. tabList: [
  127. '/static/tab-home-orange.png',
  128. '/static/tab-notify-orange.png',
  129. '/static/tab-cate-orange.png',
  130. '/static/tab-my-orange.png'
  131. ]
  132. },
  133. {
  134. title: '明黄',
  135. name: 'yellow',
  136. color: '#fbbd08',
  137. tabList: [
  138. '/static/tab-home-yellow.png',
  139. '/static/tab-notify-yellow.png',
  140. '/static/tab-cate-yellow.png',
  141. '/static/tab-my-yellow.png'
  142. ]
  143. },
  144. {
  145. title: '橄榄',
  146. name: 'olive',
  147. color: '#8dc63f',
  148. tabList: [
  149. '/static/tab-home-olive.png',
  150. '/static/tab-notify-olive.png',
  151. '/static/tab-cate-olive.png',
  152. '/static/tab-my-olive.png'
  153. ]
  154. },
  155. {
  156. title: '森绿',
  157. name: 'green',
  158. color: '#39b54a',
  159. tabList: [
  160. '/static/tab-home-green.png',
  161. '/static/tab-notify-green.png',
  162. '/static/tab-cate-green.png',
  163. '/static/tab-my-green.png'
  164. ]
  165. },
  166. {
  167. title: '天青',
  168. name: 'cyan',
  169. color: '#1cbbb4',
  170. tabList: [
  171. '/static/tab-home-cyan.png',
  172. '/static/tab-notify-cyan.png',
  173. '/static/tab-cate-cyan.png',
  174. '/static/tab-my-cyan.png'
  175. ]
  176. },
  177. {
  178. title: '海蓝',
  179. name: 'blue',
  180. color: '#0081ff',
  181. tabList: [
  182. '/static/tab-home-blue.png',
  183. '/static/tab-notify-blue.png',
  184. '/static/tab-cate-blue.png',
  185. '/static/tab-my-blue.png'
  186. ]
  187. },
  188. {
  189. title: '姹紫',
  190. name: 'purple',
  191. color: '#6739b6',
  192. tabList: [
  193. '/static/tab-home-purple.png',
  194. '/static/tab-notify-purple.png',
  195. '/static/tab-cate-purple.png',
  196. '/static/tab-my-purple.png'
  197. ]
  198. },
  199. {
  200. title: '木槿',
  201. name: 'mauve',
  202. color: '#9c26b0',
  203. tabList: [
  204. '/static/tab-home-mauve.png',
  205. '/static/tab-notify-mauve.png',
  206. '/static/tab-cate-mauve.png',
  207. '/static/tab-my-mauve.png'
  208. ]
  209. },
  210. {
  211. title: '桃粉',
  212. name: 'pink',
  213. color: '#e03997',
  214. tabList: [
  215. '/static/tab-home-pink.png',
  216. '/static/tab-notify-pink.png',
  217. '/static/tab-cate-pink.png',
  218. '/static/tab-my-pink.png'
  219. ]
  220. },
  221. {
  222. title: '棕褐',
  223. name: 'brown',
  224. color: '#a5673f',
  225. tabList: [
  226. '/static/tab-home-brown.png',
  227. '/static/tab-notify-brown.png',
  228. '/static/tab-cate-brown.png',
  229. '/static/tab-my-brown.png'
  230. ]
  231. },
  232. {
  233. title: '玄灰',
  234. name: 'grey',
  235. color: '#8799a3',
  236. tabList: [
  237. '/static/tab-home-grey.png',
  238. '/static/tab-notify-grey.png',
  239. '/static/tab-cate-grey.png',
  240. '/static/tab-my-grey.png'
  241. ]
  242. },
  243. {
  244. title: '草灰',
  245. name: 'gray',
  246. color: '#aaaaaa',
  247. tabList: [
  248. '/static/tab-home-gray.png',
  249. '/static/tab-notify-gray.png',
  250. '/static/tab-cate-gray.png',
  251. '/static/tab-my-gray.png'
  252. ]
  253. },
  254. {
  255. title: '墨黑',
  256. name: 'black',
  257. color: '#333333',
  258. tabList: [
  259. '/static/tab-home-black.png',
  260. '/static/tab-notify-black.png',
  261. '/static/tab-cate-black.png',
  262. '/static/tab-my-black.png'
  263. ]
  264. }
  265. ],
  266. };