移动端
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.
 
 

225 line
8.2 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. '/sunVillage_info/login', //登录
  108. '/sunVillage_info/index', //首页
  109. '/sunVillage_info/list_tourists', //二页列表-游客
  110. '/sunVillage_info/fixedAssets', //固定资产
  111. '/sunVillage_info/information', //合同信息
  112. '/sunVillage_info/details', //详情页
  113. '/sunVillage_info/index_code', //详情页
  114. '/sunVillage_info/list_finance', //详情页
  115. '/sunVillage_info/list_issues', //详情页
  116. ]
  117. router.beforeEach((to, from, next) => {
  118. NProgress.start()
  119. if (getToken()) {
  120. /* has token*/
  121. if (to.path === '/login') {
  122. next({ path: '/' })
  123. NProgress.done()
  124. } else {
  125. if (store.getters.roles.length === 0) {
  126. next()
  127. // 判断当前用户是否已拉取完user_info信息
  128. store.dispatch('GetInfo').then(res => {
  129. // 拉取user_info
  130. const roles = res.roles
  131. // store.dispatch('GenerateRoutes', { roles }).then(accessRoutes => {
  132. // // 根据roles权限生成可访问的路由表
  133. // router.addRoutes(accessRoutes) // 动态添加可访问路由表
  134. // next({ ...to, replace: true }) // hack方法 确保addRoutes已完成
  135. // })
  136. next()
  137. }).catch(err => {
  138. store.dispatch('LogOut').then(() => {
  139. try {
  140. let loginUrl = Cookies.get("_Login_url");
  141. if (loginUrl && loginUrl.indexOf("onlineHomeLogin") !== -1) {
  142. next({ path: '/onlineHomeLogin' })
  143. return;
  144. }
  145. } catch (e) { console.log(e); }
  146. // Message.error(err)
  147. if ('/authenticRight/index'.indexOf(to.path) !== -1) {
  148. next({ path: '/authenticRight/login' })
  149. } else if ('/homestead/index'.indexOf(to.path) !== -1) {
  150. next({ path: '/homestead/login' })
  151. } else if (to.path.indexOf('/onlineHome') !== -1) {
  152. //next(`/onlineHomeLogin`)
  153. next(`/zjdLogin`)
  154. } else if (to.path.indexOf('/yinnong') !== -1) {
  155. next(`/yinnongLogin`)
  156. } else if (window.location.href.indexOf('/sunVillage_info/') != -1) {
  157. window.location.href = '/sunVillage_info/login';
  158. } else if (to.path.indexOf('/homesteadSurvey') !== -1) {
  159. next(`/homesteadLogin`)
  160. } else if (to.path.indexOf('/lawEnforcement') !== -1) {
  161. next(`//lawEnforcement/login`)
  162. } else if (to.path.indexOf('/sunVillage') !== -1) {
  163. next(`/sunVillage/login`)
  164. } else if (to.path.indexOf('/homestead/') !== -1) {
  165. next(`/homestead/login`)
  166. } else {
  167. next(`/yinnongLogin`)
  168. //next({ path: '/' })
  169. }
  170. })
  171. })
  172. } else {
  173. next()
  174. }
  175. }
  176. } else {
  177. // 没有token
  178. if (whiteList.indexOf(to.path) !== -1) {
  179. // 在免登录白名单,直接进入
  180. console.log(to.path)
  181. next()
  182. } else {
  183. try {
  184. let loginUrl = Cookies.get("_Login_url");
  185. if (loginUrl && loginUrl.indexOf("onlineHomeLogin") !== -1) {
  186. next({ path: `/onlineHomeLogin?redirect=${to.fullPath}` })
  187. return;
  188. }
  189. } catch (e) { console.log(e); }
  190. if ('/authenticRight/index'.indexOf(to.path) !== -1) {
  191. next(`/authenticRight/login?redirect=${to.fullPath}`)
  192. } else if ('/homestead/index'.indexOf(to.path) !== -1) {
  193. next(`/homestead/login?redirect=${to.fullPath}`)
  194. } else if (to.path.indexOf('/onlineHome') !== -1) {
  195. next(`/onlineHomeLogin`)
  196. } else if (to.path.indexOf('/yinnong') !== -1) {
  197. next(`/yinnongLogin`)
  198. } else if (window.location.href.indexOf('/sunVillage_info/') != -1) {
  199. window.location.href = '/sunVillage_info/login';
  200. } else if (to.path.indexOf('/homesteadSurvey') !== -1) {
  201. next(`/homesteadLogin`)
  202. } else if (to.path.indexOf('/lawEnforcement') !== -1) {
  203. next(`/lawEnforcement/login?redirect=${to.fullPath}`)
  204. } else if (to.path.indexOf('/sunVillage') !== -1) {
  205. next(`/sunVillage/login`)
  206. } else {
  207. next(`/login?redirect=${to.fullPath}`)
  208. }
  209. // // 否则全部重定向到登录页
  210. //next('/index');
  211. NProgress.done()
  212. }
  213. }
  214. })
  215. router.afterEach(() => {
  216. NProgress.done()
  217. })