|
@@ -12,46 +12,49 @@ const routes = [
|
|
|
{
|
|
|
path: '/404',
|
|
|
name: '404',
|
|
|
- component: _import('page/404/index')
|
|
|
+ component: _import('page/404/index'),
|
|
|
+ meta: {
|
|
|
+ isUseVanTabbar: false
|
|
|
+ }
|
|
|
},
|
|
|
{
|
|
|
path: '/',
|
|
|
name: 'index',
|
|
|
- component: _import('views/index/index')
|
|
|
+ component: _import('views/index/index'),
|
|
|
+ meta: {
|
|
|
+ isUseVanTabbar: true
|
|
|
+ }
|
|
|
},
|
|
|
{
|
|
|
path: '/login',
|
|
|
name: 'login',
|
|
|
component: _import('login/index'),
|
|
|
meta: {
|
|
|
- title: '登录'
|
|
|
+ title: '登录',
|
|
|
+ isUseVanTabbar: false
|
|
|
}
|
|
|
},
|
|
|
{
|
|
|
- path: '/place', // 订座入口
|
|
|
- component: _import('views/place/index'),
|
|
|
- children: [
|
|
|
- {
|
|
|
- path: '',
|
|
|
- name: 'PlaceList',
|
|
|
- component: _import('views/place/list/index'),
|
|
|
- meta: {
|
|
|
- title: '订座',
|
|
|
- isUseCache: false,
|
|
|
- keepAlive: false
|
|
|
- }
|
|
|
- },
|
|
|
- {
|
|
|
- path: 'reserve',
|
|
|
- name: 'PlaceReserve',
|
|
|
- component: _import('views/place/reserve/index'),
|
|
|
- meta: {
|
|
|
- title: '我的订座',
|
|
|
- isUseCache: false,
|
|
|
- keepAlive: true
|
|
|
- }
|
|
|
- }
|
|
|
- ]
|
|
|
+ path: '/place/list',
|
|
|
+ name: 'PlaceList',
|
|
|
+ component: _import('views/place/list/index'),
|
|
|
+ meta: {
|
|
|
+ title: '订座',
|
|
|
+ isUseCache: false,
|
|
|
+ keepAlive: false,
|
|
|
+ isUseVanTabbar: true
|
|
|
+ }
|
|
|
+ },
|
|
|
+ {
|
|
|
+ path: '/place/reserve',
|
|
|
+ name: 'PlaceReserve',
|
|
|
+ component: _import('views/place/reserve/index'),
|
|
|
+ meta: {
|
|
|
+ title: '我的订座',
|
|
|
+ isUseCache: false,
|
|
|
+ keepAlive: false,
|
|
|
+ isUseVanTabbar: true
|
|
|
+ }
|
|
|
}
|
|
|
]
|
|
|
|