移动端
Nie możesz wybrać więcej, niż 25 tematów Tematy muszą się zaczynać od litery lub cyfry, mogą zawierać myślniki ('-') i mogą mieć do 35 znaków.
 
 

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