index.js 9.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191
  1. import Vue from 'vue'
  2. import Router from 'vue-router'
  3. import {Message} from 'element-ui'
  4. const Login = () => { return import(`@/views/Login`) }
  5. const Home = () => { return import(`@/views/Home`) }
  6. // 首页
  7. const Main = () => { return import(`@/views/main/main`) }
  8. // 个人中心
  9. const Personal = () => { return import(`@/views/personal/personal`) }
  10. // 充值记录
  11. const customerRechargeMoney = () => { return import(`@/views/customerRechargeMoney/customerRechargeMoney`) }
  12. // 个人中心
  13. const Customer = () => {
  14. return import(`@/views/customer/Customer`)
  15. }
  16. const CustomerComPanyDetail = () => {
  17. return import(`@/views/customer/customerComPanyDetail`)
  18. }
  19. const CustomerRecharge = () => {
  20. return import(`@/views/customer/customerRecharge`)
  21. }
  22. const custRecTime = () => { return import(`@/views/customer/custRecTime`) }
  23. const custRecMoney = () => { return import(`@/views/customer/custRecMoney`) }
  24. const customerEtcChangeInfo = () => { return import(`@/views/customer/customerEtcChangeInfo`) }
  25. // 系统管理部分
  26. const User = () => { return import(`@/views/sys/user`) }
  27. // 无车部分
  28. const nocarRec = () => { return import(`@/views/noCar/nocarRec.vue`) }
  29. const billway = () => { return import(`@/views/noCar/billway.vue`) }
  30. const billwayHis = () => { return import(`@/views/noCar/billwayHis.vue`) }
  31. const noCarWaybillFile = () => { return import(`@/views/noCar/WaybillFile.vue`) }
  32. const nocarInvoice = () => { return import(`@/views/noCar/invoice.vue`) }
  33. const nocarInvoiceHis = () => { return import(`@/views/noCar/invoiceHis.vue`) }
  34. const billwayException = () => { return import(`@/views/noCar/billwayException.vue`) }
  35. const noCarCalculateInfo = () => { return import(`@/views/noCar/calculateInfo.vue`) }
  36. const noCarCalculateInfoStatis = () => { return import(`@/views/noCar/calculateInfostatis.vue`) }
  37. const hcInvoice = () => { return import(`@/views/noCar/hcInvoice.vue`) }
  38. const mothaccount = () => { return import(`@/views/noCar/mothaccount.vue`) }
  39. // 自有车部分
  40. const selfcarRec = () => { return import(`@/views/selfCar/selfcarRec.vue`) }
  41. const selfCarTrade = () => { return import(`@/views/selfCar/selfCarTrade.vue`) }
  42. const selfInvoice = () => { return import(`@/views/selfCar/invoice.vue`) }
  43. const selfCarTradeException = () => { return import(`@/views/selfCar/selfCarTradeException.vue`) }
  44. const SelfCalculateInfo = () => { return import(`@/views/selfCar/calculateInfo.vue`) }
  45. const selfCarApply = () => { return import(`@/views/selfCar/selfCarApply`) }
  46. const tradeCarApply = () => { return import(`@/views/selfCar/tradeCarApply`) }
  47. // 平台菜单部分
  48. // 发票管理部分(企业注册部分)
  49. const Check = () => { return import(`@/views/platform/check/check`) }
  50. const CustJb = () => { return import(`@/views/platform/check/customerComPanyDetailCust`) }
  51. // 自有车
  52. const Apply = () => { return import(`@/views/platform/apply/apply`) }
  53. const Already = () => { return import(`@/views/platform/apply/already`) }
  54. const Packaging = () => { return import(`@/views/platform/apply/packaging`) }
  55. const selfCarTradeP = () => { return import(`@/views/platform/apply/selfCarTrade`) }
  56. const Carbinding = () => { return import(`@/views/platform/carbinding/carbinding`) }
  57. const Carbindinglist = () => { return import(`@/views/platform/carbinding/carbindinglist`) }
  58. const Carupload = () => { return import(`@/views/platform/car/carupload`) }
  59. const Carsuccess = () => { return import(`@/views/platform/car/carsuccess`) }
  60. const Waybill = () => { return import(`@/views/platform/waybill/waybill`) }
  61. const WaybillFile = () => { return import(`@/views/platform/waybill/WaybillFile`) }
  62. const Over = () => { return import(`@/views/platform/waybill/over`) }
  63. const History = () => { return import(`@/views/platform/waybill/history`) }
  64. const WaybillList = () => { return import(`@/views/platform/waybillmanagement/waybillList`) }
  65. const Noinvoice = () => { return import(`@/views/platform/waybillmanagement/noinvoice`) }
  66. const Trueinvoice = () => { return import(`@/views/platform/waybillmanagement/trueinvoice`) }
  67. const Invoice = () => { return import(`@/views/platform/invoice/invoice`) }
  68. const List = () => { return import(`@/views/platform/invoice/list`) }
  69. // 参数管理
  70. const paramMagager = () => { return import(`@/views/manager/paramMagager.vue`) }
  71. Vue.use(Router)
  72. const router = new Router({
  73. base: `/jkcredit/`,
  74. mode: `history`,
  75. routes: [
  76. { name: `Login`, path: `/login`, component: Login },
  77. {
  78. name: `Home`,
  79. path: `/`,
  80. component: Home,
  81. redirect: `/main`,
  82. children: [
  83. // 首页
  84. {name: `Main`, path: `/main`, component: Main},
  85. // 个人中心
  86. {name: `Personal`, path: `/personal`, component: Personal},
  87. // 充值记录
  88. {name: `customerRechargeMoney`, path: `/customerRechargeMoney`, component: customerRechargeMoney},
  89. // 客户管理
  90. {name: `Customer`, path: `/customer`, component: Customer},
  91. {name: `customerComPanyDetail`, path: `/customerComPanyDetail`, component: CustomerComPanyDetail},
  92. {name: `customerRecharge`, path: `/CustomerRecharge`, component: CustomerRecharge},
  93. {name: `custRecTime`, path: `/custRecTime`, component: custRecTime},
  94. {name: `custRecMoney`, path: `/custRecMoney`, component: custRecMoney},
  95. {name: `customerEtcChangeInfo`, path: `/customerEtcChangeInfo`, component: customerEtcChangeInfo},
  96. {name: `selfCarApply`, path: `/selfCarApply`, component: selfCarApply},
  97. {name: `tradeCarApply`, path: `/tradeCarApply`, component: tradeCarApply},
  98. // 系统管理部分
  99. {name: `User`, path: `/user`, component: User},
  100. // 无车部分
  101. {name: `nocarRec`, path: `/nocarRec`, component: nocarRec},
  102. { name: `billway`, path: `/billway`, component: billway },
  103. { name: `billwayHis`, path: `/billwayHis`, component: billwayHis },
  104. { name: `noCarWaybillFile`, path: `/noCarWaybillFile`, component: noCarWaybillFile },
  105. { name: `nocarInvoice`, path: `/nocarInvoice`, component: nocarInvoice },
  106. { name: `nocarInvoiceHis`, path: `/nocarInvoiceHis`, component: nocarInvoiceHis },
  107. { name: `billwayException`, path: `/billwayException`, component: billwayException },
  108. { name: `noCarCalculateInfo`, path: `/noCarCalculateInfo`, component: noCarCalculateInfo },
  109. { name: `noCarCalculateInfoStatis`, path: `/noCarCalculateInfoStatis`, component: noCarCalculateInfoStatis },
  110. { name: `hcInvoice`, path: `/hcInvoice`, component: hcInvoice },
  111. { name: `mothaccount`, path: `/mothaccount`, component: mothaccount },
  112. // 自有车部分
  113. { name: `selfcarRec`, path: `/selfcarRec`, component: selfcarRec },
  114. { name: `selfInvoice`, path: `/selfInvoice`, component: selfInvoice },
  115. { name: `selfCarTrade`, path: `/selfCarTrade`, component: selfCarTrade },
  116. { name: `selfCarTradeException`, path: `/selfCarTradeException`, component: selfCarTradeException },
  117. { name: `SelfCalculateInfo`, path: `/SelfCalculateInfo`, component: SelfCalculateInfo },
  118. // 平台菜单部分
  119. { name: `Check`, path: `/check`, component: Check },
  120. { name: `CustJb`, path: `/custJb`, component: CustJb },
  121. { name: `Apply`, path: `/apply`, component: Apply },
  122. { name: `Already`, path: `/already`, component: Already },
  123. { name: `Packaging`, path: `/packaging`, component: Packaging },
  124. { name: `selfCarTradeP`, path: `/selfCarTradeP`, component: selfCarTradeP },
  125. { name: `Carbinding`, path: `/carbinding`, component: Carbinding },
  126. { name: `Carbindinglist`, path: `/carbindinglist`, component: Carbindinglist },
  127. { name: `Carupload`, path: `/carupload`, component: Carupload },
  128. { name: `Carsuccess`, path: `/carsuccess`, component: Carsuccess },
  129. { name: `Waybill`, path: `/waybill`, component: Waybill },
  130. { name: `WaybillFile`, path: `/WaybillFile`, component: WaybillFile },
  131. { name: `Over`, path: `/over`, component: Over },
  132. { name: `History`, path: `/history`, component: History },
  133. { name: `WaybillList`, path: `/waybillList`, component: WaybillList },
  134. { name: `Noinvoice`, path: `/noinvoice`, component: Noinvoice },
  135. { name: `Trueinvoice`, path: `/trueinvoice`, component: Trueinvoice },
  136. { name: `Invoice`, path: `/invoice`, component: Invoice },
  137. { name: `List`, path: `/list`, component: List },
  138. // 参数管理
  139. { name: `paramMagager`, path: `/paramMagager`, component: paramMagager }
  140. ]
  141. }
  142. ]
  143. })
  144. router.beforeEach((to, from, next) => {
  145. // console.log(to);
  146. // console.log(from);
  147. // next();
  148. // 如果是登录的时候不判断token ,不是登录才判断token
  149. // console.log(to);
  150. if (to.name && to.name.toLocaleLowerCase() !== `login`) {
  151. // 判断token
  152. const token = sessionStorage.getItem(`token`)
  153. if (!token) {
  154. // 没有token,跳转到登录页面
  155. // this.$router.push('/login')
  156. router.push(`/login`)
  157. // 提示
  158. // this.$message.warning('请先登录');
  159. Message.warning(`请先登录`)
  160. return
  161. }
  162. }
  163. next()
  164. })
  165. export default router