|
@@ -93,27 +93,64 @@ export const asyncRoutes = [
|
|
|
name: 'StatisticsComplaint',
|
|
name: 'StatisticsComplaint',
|
|
|
component: () => import('@/views/statistics/complaint'),
|
|
component: () => import('@/views/statistics/complaint'),
|
|
|
meta: { title: '文旅投诉', authorities: ['complaint.find'] }
|
|
meta: { title: '文旅投诉', authorities: ['complaint.find'] }
|
|
|
|
|
+ },
|
|
|
|
|
+ {
|
|
|
|
|
+ path: 'travel',
|
|
|
|
|
+ component: { render(c) { return c('router-view') } },
|
|
|
|
|
+ name: 'travel',
|
|
|
|
|
+ meta: {
|
|
|
|
|
+ title: '文旅行业招徕系统',
|
|
|
|
|
+ // icon: 'el-icon-warning-outline',
|
|
|
|
|
+ // authorities: ['travel.find']
|
|
|
|
|
+ },
|
|
|
|
|
+ // redirect: '/category/travel',
|
|
|
|
|
+ children: [
|
|
|
|
|
+ {
|
|
|
|
|
+ path: 'index',
|
|
|
|
|
+ name: 'travelIndex',
|
|
|
|
|
+ component: () => import('@/views/travel/index'),
|
|
|
|
|
+ meta: {
|
|
|
|
|
+ title: '招徕奖励申报',
|
|
|
|
|
+ level: 3
|
|
|
|
|
+ // authorities: ['travel.index.find']
|
|
|
|
|
+ }
|
|
|
|
|
+ },
|
|
|
|
|
+ {
|
|
|
|
|
+ path: 'hotel',
|
|
|
|
|
+ name: 'travelHotel',
|
|
|
|
|
+ component: () => import('@/views/travel/hotel'),
|
|
|
|
|
+ meta: {
|
|
|
|
|
+ title: '酒店申报记录',
|
|
|
|
|
+ level: 3
|
|
|
|
|
+ // authorities: ['sentiment.spider.rule.find']
|
|
|
|
|
+ }
|
|
|
|
|
+ },
|
|
|
|
|
+ {
|
|
|
|
|
+ path: 'scenic',
|
|
|
|
|
+ name: 'travelScenic',
|
|
|
|
|
+ component: () => import('@/views/travel/scenic'),
|
|
|
|
|
+ meta: {
|
|
|
|
|
+ title: '景区申报记录',
|
|
|
|
|
+ level: 3
|
|
|
|
|
+ // authorities: ['sentiment.spider.event.find']
|
|
|
|
|
+ }
|
|
|
|
|
+ },
|
|
|
|
|
+ {
|
|
|
|
|
+ path: 'hotel/record',
|
|
|
|
|
+ name: 'travelHotelRecord',
|
|
|
|
|
+ hidden: true,
|
|
|
|
|
+ component: () => import('@/views/travel/index_hotel'),
|
|
|
|
|
+ meta: { title: '酒店申报记录', level: 3 }
|
|
|
|
|
+ },
|
|
|
|
|
+ {
|
|
|
|
|
+ path: 'scenic/record',
|
|
|
|
|
+ name: 'travelScenicRecord',
|
|
|
|
|
+ hidden: true,
|
|
|
|
|
+ component: () => import('@/views/travel/index_scenic'),
|
|
|
|
|
+ meta: { title: '景区申报记录', level: 3 }
|
|
|
|
|
+ }
|
|
|
|
|
+ ]
|
|
|
}
|
|
}
|
|
|
- // {
|
|
|
|
|
- // path: 'solicitRewardsTravelReport',
|
|
|
|
|
- // name: 'SolicitRewardsTravelReport',
|
|
|
|
|
- // component: () => import('@/views/equipment/passenger/Detail'),
|
|
|
|
|
- // meta: { title: '招徕奖励申报' }
|
|
|
|
|
- // },
|
|
|
|
|
- //
|
|
|
|
|
- // {
|
|
|
|
|
- // path: 'solicitRewardsHotelReport',
|
|
|
|
|
- // name: 'solicitRewardsHotelReport',
|
|
|
|
|
- // component: () => import('@/views/statistics/complaint'),
|
|
|
|
|
- // meta: { title: '酒店申报记录' }
|
|
|
|
|
- // },
|
|
|
|
|
- //
|
|
|
|
|
- // {
|
|
|
|
|
- // path: 'solicitRewardsScenicReport',
|
|
|
|
|
- // name: 'solicitRewardsScenicReport',
|
|
|
|
|
- // component: () => import('@/views/statistics/complaint'),
|
|
|
|
|
- // meta: { title: '景区申报记录' }
|
|
|
|
|
- // }
|
|
|
|
|
]
|
|
]
|
|
|
},
|
|
},
|
|
|
{
|
|
{
|
|
@@ -200,60 +237,6 @@ export const asyncRoutes = [
|
|
|
]
|
|
]
|
|
|
},
|
|
},
|
|
|
{
|
|
{
|
|
|
- path: '/travel',
|
|
|
|
|
- component: Layout,
|
|
|
|
|
- name: 'travel',
|
|
|
|
|
- meta: {
|
|
|
|
|
- title: '文旅行业招徕系统',
|
|
|
|
|
- icon: 'el-icon-warning-outline',
|
|
|
|
|
- // authorities: ['travel.find']
|
|
|
|
|
- },
|
|
|
|
|
- redirect: '/travel',
|
|
|
|
|
- children: [
|
|
|
|
|
- {
|
|
|
|
|
- path: 'index',
|
|
|
|
|
- name: 'travelIndex',
|
|
|
|
|
- component: () => import('@/views/travel/index'),
|
|
|
|
|
- meta: {
|
|
|
|
|
- title: '招徕奖励申报',
|
|
|
|
|
- // authorities: ['travel.index.find']
|
|
|
|
|
- }
|
|
|
|
|
- },
|
|
|
|
|
- {
|
|
|
|
|
- path: 'hotel',
|
|
|
|
|
- name: 'travelHotel',
|
|
|
|
|
- component: () => import('@/views/travel/hotel'),
|
|
|
|
|
- meta: {
|
|
|
|
|
- title: '酒店申报记录',
|
|
|
|
|
- // authorities: ['sentiment.spider.rule.find']
|
|
|
|
|
- }
|
|
|
|
|
- },
|
|
|
|
|
- {
|
|
|
|
|
- path: 'scenic',
|
|
|
|
|
- name: 'travelScenic',
|
|
|
|
|
- component: () => import('@/views/travel/scenic'),
|
|
|
|
|
- meta: {
|
|
|
|
|
- title: '景区申报记录',
|
|
|
|
|
- // authorities: ['sentiment.spider.event.find']
|
|
|
|
|
- }
|
|
|
|
|
- },
|
|
|
|
|
- {
|
|
|
|
|
- path: 'hotel/record',
|
|
|
|
|
- name: 'travelHotelRecord',
|
|
|
|
|
- hidden: true,
|
|
|
|
|
- component: () => import('@/views/travel/index_hotel'),
|
|
|
|
|
- meta: { title: '酒店申报记录' }
|
|
|
|
|
- },
|
|
|
|
|
- {
|
|
|
|
|
- path: 'scenic/record',
|
|
|
|
|
- name: 'travelScenicRecord',
|
|
|
|
|
- hidden: true,
|
|
|
|
|
- component: () => import('@/views/travel/index_scenic'),
|
|
|
|
|
- meta: { title: '景区申报记录' }
|
|
|
|
|
- }
|
|
|
|
|
- ]
|
|
|
|
|
- },
|
|
|
|
|
- {
|
|
|
|
|
path: '/bz',
|
|
path: '/bz',
|
|
|
component: Layout,
|
|
component: Layout,
|
|
|
name: 'Bz',
|
|
name: 'Bz',
|