移动端
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 

212 line
7.5 KiB

  1. import router from './router'
  2. import store from './store'
  3. import NProgress from 'nprogress'
  4. import 'nprogress/nprogress.css'
  5. import { getToken } from '@/utils/auth'
  6. import Cookies from "js-cookie";
  7. NProgress.configure({ showSpinner: false })
  8. const whiteList = [
  9. '/index',
  10. '/login',
  11. '/auth-redirect',
  12. '/bind',
  13. '/register',
  14. '/news/index',
  15. '/news/newDetail',
  16. '/notice/index',
  17. '/supply/index',
  18. '/interaction/index',
  19. '/register/index',
  20. '/register/registerType',
  21. '/register/userRegister',
  22. '/register/companyRegister',
  23. '/biddingHall',
  24. '/authenticRight',
  25. '/authenticRight/login',
  26. '/project',
  27. '/policy',
  28. '/policyDetail',
  29. '/attestationDetail',
  30. '/noticeDetail',
  31. '/homestead/login',
  32. '/applicationForm',
  33. '/applicationList',
  34. '/certificateList',
  35. '/certificateSee',
  36. '/informationList',
  37. '/circulationList',
  38. '/circulationAdd',
  39. '/onlineHomeLogin',
  40. '/lawEnforcement',
  41. '/lawEnforcement/caseList',
  42. '/lawEnforcement/productsList',
  43. '/lawEnforcement/user',
  44. '/lawEnforcement/programme',
  45. '/lawEnforcement/programmeDetail',
  46. '/lawEnforcement/programmeModify',
  47. '/lawEnforcement/programmeApproval',
  48. '/lawEnforcement/complaint',
  49. '/lawEnforcement/reply',
  50. '/lawEnforcement/changePassword',
  51. '/lawEnforcement/feedback',
  52. '/lawEnforcement/feedbackForm',
  53. '/lawEnforcement/agreement',
  54. '/lawEnforcement/work',
  55. '/lawEnforcement/workDetail',
  56. '/lawEnforcement/caseDetail',
  57. '/lawEnforcement/login',
  58. '/lawEnforcement/indexComplaint',
  59. '/lawEnforcement/schemeDetail',
  60. '/lawEnforcement/waitingProcessing',
  61. '/lawEnforcement/complaintAdd',
  62. '/homesteadLogin',
  63. '/yinnongLogin',
  64. '/lawEnforcement/userRegister',
  65. '/lawEnforcement/companyRegister',
  66. '/sunVillage/login',
  67. //阳光村务公众号 -- 待删
  68. '/sunVillage/index',
  69. '/sunVillage/latestReport', //最新报道列表
  70. '/sunVillage/latestReport/details', //最新报道详情
  71. '/sunVillage/importantItems', //重大事项-列表
  72. '/sunVillage/importantItems/details', //重大事项-详情
  73. '/sunVillage/public', //三务公开
  74. '/sunVillage/public/details', //三务公开-详情
  75. '/sunVillage/financial', //惠民金融
  76. '/sunVillage/financial/details', //惠民金融-详情
  77. '/sunVillage/financial/products', //惠民金融 - 理财产品
  78. '/sunVillage/financial/loan', //惠民金融 - 理财产品
  79. '/sunVillage/injoint', //三资公开-财务公开
  80. '/sunVillage/injoint/details',//三资公开-财务公开-详情
  81. '/sunVillage/injoint/meansOf', //三资公开-清产核资
  82. '/sunVillage/injoint/meansOf_desc', //三资公开-清产核资-详情页
  83. '/sunVillage/injoint/assetsPublic', //三资公开-资产公开
  84. '/sunVillage/injoint/assetsPublic_desc', //三资公开-资产公开-详情
  85. '/sunVillage/injoint/publicResources', //三资公开-资源公开
  86. '/sunVillage/injoint/publicResources_desc', //三资公开-资源公开-详情
  87. '/sunVillage/consulting', //民生直通车
  88. '/sunVillage/consulting/inquiries', //民生直通车-咨询
  89. "/sunVillage/consulting/my_consulting", //民生直通车-我的咨询详情
  90. '/sunVillage/consulting/kanban', //民生直通车-民生看板
  91. '/sunVillage/consulting/kanban/focusList', //民生直通车-民生看板 -关注民生list
  92. '/sunVillage/consulting/kanban/focusDesc', //民生直通车-民生看板 -关注民生详情
  93. '/sunVillage/consulting/kanban/affairsList', //民生直通车-民生看板 - 民生办事list
  94. '/sunVillage/equity', //股权查询-股民信息
  95. '/sunVillage/equity_desc', // 股权查询-股民信息-详情
  96. '/sunVillage/shareBonus', //股权查询-股权分红
  97. '/sunVillage/shareBonus_num', //股权查询-股权分红-股数详情页
  98. '/sunVillage/shareBonus_amount', //股权查询-股权分红-分红详情页
  99. '/sunVillage/user/index', //个人中心
  100. '/sunVillage/user/mobile', //个人中心-修改手机号
  101. '/sunVillage/user/information', //个人中心-修改用户信息
  102. '/sunVillage/user/cooperative', //个人中心-修改所属合作社
  103. //阳光村务公众号 -- 待删
  104. //宅基地
  105. '/zjdLogin',
  106. ]
  107. router.beforeEach((to, from, next) => {
  108. NProgress.start()
  109. if (getToken()) {
  110. /* has token*/
  111. if (to.path === '/login') {
  112. next({ path: '/' })
  113. NProgress.done()
  114. } else {
  115. if (store.getters.roles.length === 0) {
  116. next()
  117. // 判断当前用户是否已拉取完user_info信息
  118. store.dispatch('GetInfo').then(res => {
  119. // 拉取user_info
  120. const roles = res.roles
  121. // store.dispatch('GenerateRoutes', { roles }).then(accessRoutes => {
  122. // // 根据roles权限生成可访问的路由表
  123. // router.addRoutes(accessRoutes) // 动态添加可访问路由表
  124. // next({ ...to, replace: true }) // hack方法 确保addRoutes已完成
  125. // })
  126. next()
  127. }).catch(err => {
  128. store.dispatch('LogOut').then(() => {
  129. try {
  130. let loginUrl = Cookies.get("_Login_url");
  131. if(loginUrl && loginUrl.indexOf("onlineHomeLogin") !== -1)
  132. {
  133. next({ path: '/onlineHomeLogin' })
  134. return;
  135. }
  136. } catch (e) { console.log(e); }
  137. // Message.error(err)
  138. if ('/authenticRight/index'.indexOf(to.path) !== -1) {
  139. next({ path: '/authenticRight/login' })
  140. } else if ('/homestead/index'.indexOf(to.path) !== -1) {
  141. next({ path: '/homestead/login' })
  142. } else if (to.path.indexOf('/onlineHome') !== -1) {
  143. //next(`/onlineHomeLogin`)
  144. next(`/zjdLogin`)
  145. } else if (to.path.indexOf('/yinnong') !== -1) {
  146. next(`/yinnongLogin`)
  147. } else if (to.path.indexOf('/homesteadSurvey') !== -1) {
  148. next(`/homesteadLogin`)
  149. } else if (to.path.indexOf('/lawEnforcement') !== -1) {
  150. next(`//lawEnforcement/login`)
  151. } else if (to.path.indexOf('/sunVillage') !== -1) {
  152. next(`/sunVillage/login`)
  153. }else if (to.path.indexOf('/homestead/') !== -1) {
  154. next(`/homestead/login`)
  155. } else {
  156. next(`/zjdLogin`)
  157. //next({ path: '/' })
  158. }
  159. })
  160. })
  161. } else {
  162. next()
  163. }
  164. }
  165. } else {
  166. // 没有token
  167. if (whiteList.indexOf(to.path) !== -1) {
  168. // 在免登录白名单,直接进入
  169. console.log(to.path)
  170. next()
  171. } else {
  172. try {
  173. let loginUrl = Cookies.get("_Login_url");
  174. if(loginUrl && loginUrl.indexOf("onlineHomeLogin") !== -1)
  175. {
  176. next({ path: `/onlineHomeLogin?redirect=${to.fullPath}` })
  177. return;
  178. }
  179. } catch (e) { console.log(e); }
  180. if ('/authenticRight/index'.indexOf(to.path) !== -1) {
  181. next(`/authenticRight/login?redirect=${to.fullPath}`)
  182. } else if ('/homestead/index'.indexOf(to.path) !== -1) {
  183. next(`/homestead/login?redirect=${to.fullPath}`)
  184. } else if (to.path.indexOf('/onlineHome') !== -1) {
  185. next(`/onlineHomeLogin`)
  186. } else if (to.path.indexOf('/yinnong') !== -1) {
  187. next(`/yinnongLogin`)
  188. } else if (to.path.indexOf('/homesteadSurvey') !== -1) {
  189. next(`/homesteadLogin`)
  190. } else if (to.path.indexOf('/lawEnforcement') !== -1) {
  191. next(`/lawEnforcement/login?redirect=${to.fullPath}`)
  192. } else if (to.path.indexOf('/sunVillage') !== -1) {
  193. next(`/sunVillage/login`)
  194. } else {
  195. next(`/login?redirect=${to.fullPath}`)
  196. }
  197. // // 否则全部重定向到登录页
  198. //next('/index');
  199. NProgress.done()
  200. }
  201. }
  202. })
  203. router.afterEach(() => {
  204. NProgress.done()
  205. })