index.js 3.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179
  1. import Vue from 'vue'
  2. import VueRouter from 'vue-router'
  3. import { updateWechatToken } from '../utils'
  4. Vue.use(VueRouter)
  5. const _import = require('./import-' + process.env.NODE_ENV)
  6. const routes = [
  7. // {
  8. // path: '*',
  9. // redirect: '/404'
  10. // },
  11. {
  12. path: '/404',
  13. name: '404',
  14. component: _import('page/404/index'),
  15. meta: {
  16. isUseVanTabbar: false
  17. }
  18. },
  19. {
  20. path: '/login',
  21. name: 'Login',
  22. component: _import('login/index'),
  23. meta: {
  24. title: '登录',
  25. isUseVanTabbar: false
  26. }
  27. },
  28. {
  29. path: '/',
  30. name: 'Index',
  31. component: _import('views/index/index'),
  32. meta: {
  33. isUseVanTabbar: true
  34. },
  35. redirect: '/place/list'
  36. },
  37. {
  38. path: '/place/list',
  39. name: 'PlaceList',
  40. component: _import('views/place/list/index'),
  41. meta: {
  42. title: '订座',
  43. isUseCache: false,
  44. keepAlive: false,
  45. isUseVanTabbar: true
  46. }
  47. },
  48. {
  49. path: '/place/reserve',
  50. name: 'PlaceReserve',
  51. component: _import('views/place/reserve/index'),
  52. meta: {
  53. title: '我的订座',
  54. isUseCache: false,
  55. keepAlive: false,
  56. isUseVanTabbar: true
  57. }
  58. },
  59. {
  60. path: '/place/check',
  61. name: 'PlaceCheck',
  62. component: _import('views/place/check/index'),
  63. meta: {
  64. title: '我的订座二维码',
  65. isUseCache: false,
  66. keepAlive: false,
  67. isUseVanTabbar: false
  68. }
  69. },
  70. {
  71. path: '/payBridge',
  72. name: 'PayBridge',
  73. component: _import('views/payBridge/index'),
  74. meta: {
  75. title: '支付方式',
  76. isUseCache: false,
  77. keepAlive: false,
  78. isUseVanTabbar: false
  79. },
  80. props: route => ({
  81. alipayForm: route.query.alipayForm,
  82. wxpayHref: route.query.wxpayHref
  83. })
  84. },
  85. {
  86. path: '/show/plan',
  87. name: 'ShowPlan',
  88. component: _import('views/show/plan/index'),
  89. meta: {
  90. title: '演出计划',
  91. isUseCache: false,
  92. keepAlive: true,
  93. isUseVanTabbar: false
  94. },
  95. props: route => ({
  96. alipayForm: route.query.alipayForm,
  97. wxpayHref: route.query.wxpayHref
  98. })
  99. },
  100. {
  101. path: '/orderList',
  102. component: _import('views/orderList/index'),
  103. children: [
  104. {
  105. path: '',
  106. name: 'Order',
  107. component: _import('views/orderList/order'),
  108. meta: {
  109. title: '订单',
  110. isUseCache: false,
  111. keepAlive: false,
  112. isUseVanTabbar: false
  113. },
  114. }
  115. ]
  116. },
  117. {
  118. path: '/orderDetail',
  119. name: 'OrderDetail',
  120. component: _import('views/orderDetail/index'),
  121. meta: {
  122. title: '订单已支付',
  123. isUseCache: false,
  124. keepAlive: false
  125. }
  126. },
  127. {
  128. path: '/refundList',
  129. name: 'RefundList',
  130. component: _import('views/refundList/index'),
  131. meta: {
  132. title: '退款记录',
  133. isUseCache: false,
  134. keepAlive: false
  135. }
  136. },
  137. {
  138. path: '/sell/goods',
  139. name: 'SellGoods',
  140. component: _import('views/sell/goods/index'),
  141. meta: {
  142. title: '点单',
  143. isUseCache: false,
  144. keepAlive: true,
  145. isUseVanTabbar: false
  146. }
  147. }
  148. ]
  149. const router = new VueRouter({
  150. mode: 'history',
  151. routes,
  152. scrollBehavior (to, from, savedPosition) {
  153. if (to.hash) {
  154. return {
  155. selector: to.hash
  156. }
  157. }
  158. // keep-alive 返回缓存页面后记录浏览位置
  159. if (savedPosition && to.meta.keepAlive) {
  160. return savedPosition
  161. }
  162. // 异步滚动操作
  163. return new Promise((resolve) => {
  164. setTimeout(() => {
  165. resolve({ x: 0, y: 1 })
  166. }, 0)
  167. })
  168. }
  169. })
  170. router.beforeEach((to, from, next) => {
  171. updateWechatToken()
  172. next()
  173. })
  174. export default router