|
|
@@ -14,363 +14,363 @@ const router = new Router({
|
|
|
path: '/',
|
|
|
redirect: 'dashboard'
|
|
|
},
|
|
|
- {
|
|
|
- path: '/404',
|
|
|
- name: '404',
|
|
|
- component: () =>
|
|
|
- import('../pages/404')
|
|
|
- },
|
|
|
- {
|
|
|
- path: '/dashboard',
|
|
|
- name: 'dashboard',
|
|
|
- component: () =>
|
|
|
- import('../pages/Dashboard')
|
|
|
- },
|
|
|
- {
|
|
|
- path: '/users',
|
|
|
- name: 'users',
|
|
|
- component: () =>
|
|
|
- import('../pages/Users')
|
|
|
- },
|
|
|
- {
|
|
|
- path: '/user',
|
|
|
- name: 'user',
|
|
|
- component: () =>
|
|
|
- import('../pages/User')
|
|
|
- },
|
|
|
- {
|
|
|
- path: '/menus',
|
|
|
- name: 'menus',
|
|
|
- component: () =>
|
|
|
- import('../pages/Menus')
|
|
|
- },
|
|
|
- {
|
|
|
- path: '/roles',
|
|
|
- name: 'roles',
|
|
|
- component: () =>
|
|
|
- import('../pages/Roles')
|
|
|
- },
|
|
|
- {
|
|
|
- path: '/role',
|
|
|
- name: 'role',
|
|
|
- component: () =>
|
|
|
- import('../pages/Role')
|
|
|
- },
|
|
|
- {
|
|
|
- path: '/api',
|
|
|
- name: 'api',
|
|
|
- component: () =>
|
|
|
- import('../pages/Api')
|
|
|
- },
|
|
|
- {
|
|
|
- path: '/genCodes',
|
|
|
- name: 'genCodes',
|
|
|
- component: () =>
|
|
|
- import('../pages/GenCodes')
|
|
|
- },
|
|
|
- {
|
|
|
- path: '/genCode',
|
|
|
- name: 'genCode',
|
|
|
- component: () =>
|
|
|
- import('../pages/GenCode')
|
|
|
- },
|
|
|
- {
|
|
|
- path: '/permissions',
|
|
|
- name: 'permissions',
|
|
|
- component: () =>
|
|
|
- import('../pages/Permissions')
|
|
|
- },
|
|
|
- {
|
|
|
- path: '/permission',
|
|
|
- name: 'permission',
|
|
|
- component: () =>
|
|
|
- import('../pages/Permission')
|
|
|
- },
|
|
|
- {
|
|
|
- path: '/departs',
|
|
|
- name: 'departs',
|
|
|
- component: () =>
|
|
|
- import('../pages/Departs')
|
|
|
- },
|
|
|
- {
|
|
|
- path: '/lineChart',
|
|
|
- name: 'lineChart',
|
|
|
- component: () =>
|
|
|
- import('../pages/LineChart')
|
|
|
- },
|
|
|
- {
|
|
|
- path: '/barChart',
|
|
|
- name: 'barChart',
|
|
|
- component: () =>
|
|
|
- import('../pages/BarChart')
|
|
|
- },
|
|
|
- {
|
|
|
- path: '/polarAreaChart',
|
|
|
- name: 'polarAreaChart',
|
|
|
- component: () =>
|
|
|
- import('../pages/PolarAreaChart')
|
|
|
- },
|
|
|
- {
|
|
|
- path: '/pieChart',
|
|
|
- name: 'pieChart',
|
|
|
- component: () =>
|
|
|
- import('../pages/PieChart')
|
|
|
- },
|
|
|
- {
|
|
|
- path: '/radarChart',
|
|
|
- name: 'radarChart',
|
|
|
- component: () =>
|
|
|
- import('../pages/RadarChart')
|
|
|
- },
|
|
|
- {
|
|
|
- path: '/bubbleChart',
|
|
|
- name: 'bubbleChart',
|
|
|
- component: () =>
|
|
|
- import('../pages/BubbleChart')
|
|
|
- },
|
|
|
- {
|
|
|
- path: '/processModels',
|
|
|
- name: 'processModels',
|
|
|
- component: () =>
|
|
|
- import('../pages/ProcessModels')
|
|
|
- },
|
|
|
- {
|
|
|
- path: '/processDefinitions',
|
|
|
- name: 'processDefinitions',
|
|
|
- component: () =>
|
|
|
- import('../pages/ProcessDefinitions')
|
|
|
- },
|
|
|
- {
|
|
|
- path: '/myProcesses',
|
|
|
- name: 'myProcesses',
|
|
|
- component: () =>
|
|
|
- import('../pages/MyProcesses')
|
|
|
- },
|
|
|
- {
|
|
|
- path: '/myTasks',
|
|
|
- name: 'myTasks',
|
|
|
- component: () =>
|
|
|
- import('../pages/MyTasks')
|
|
|
- },
|
|
|
- {
|
|
|
- path: '/completeTaskDynamic',
|
|
|
- name: 'CompleteTaskDynamic',
|
|
|
- component: () =>
|
|
|
- import('../pages/CompleteTaskDynamic')
|
|
|
- },
|
|
|
- {
|
|
|
- path: '/commonQuerys',
|
|
|
- name: 'commonQuerys',
|
|
|
- component: () =>
|
|
|
- import('../pages/CommonQuerys')
|
|
|
- },
|
|
|
- {
|
|
|
- path: '/commonQuery',
|
|
|
- name: 'commonQuery',
|
|
|
- component: () =>
|
|
|
- import('../pages/CommonQuery')
|
|
|
- },
|
|
|
- {
|
|
|
- path: '/commonIframe',
|
|
|
- name: 'commonIframe',
|
|
|
- component: () =>
|
|
|
- import('../pages/CommonIframe')
|
|
|
- },
|
|
|
- {
|
|
|
- path: '/queryConfigs',
|
|
|
- name: 'queryConfigs',
|
|
|
- component: () =>
|
|
|
- import('../pages/QueryConfigs')
|
|
|
- },
|
|
|
- {
|
|
|
- path: '/queryConfig',
|
|
|
- name: 'queryConfig',
|
|
|
- component: () =>
|
|
|
- import('../pages/QueryConfig')
|
|
|
- },
|
|
|
- {
|
|
|
- path: '/dataSourceInfos',
|
|
|
- name: 'dataSourceInfos',
|
|
|
- component: () =>
|
|
|
- import('../pages/DataSourceInfos')
|
|
|
- },
|
|
|
- {
|
|
|
- path: '/dataSourceInfo',
|
|
|
- name: 'dataSourceInfo',
|
|
|
- component: () =>
|
|
|
- import('../pages/DataSourceInfo')
|
|
|
- },
|
|
|
- {
|
|
|
- path: '/deploySystem',
|
|
|
- name: 'DeploySystem',
|
|
|
- component: () =>
|
|
|
- import('../pages/DeploySystem')
|
|
|
- },
|
|
|
- {
|
|
|
- path: '/myCanvas',
|
|
|
- name: 'MyCanvas',
|
|
|
- component: () =>
|
|
|
- import('../pages/MyCanvas')
|
|
|
- },
|
|
|
- {
|
|
|
- path: '/houseInfo',
|
|
|
- name: 'HouseInfo',
|
|
|
- component: () => import('../pages/HouseInfo')
|
|
|
- },
|
|
|
- {
|
|
|
- path: '/houseInfos',
|
|
|
- name: 'HouseInfos',
|
|
|
- component: () => import('../pages/HouseInfos')
|
|
|
- },
|
|
|
- {
|
|
|
- path: '/houseLevel',
|
|
|
- name: 'HouseLevel',
|
|
|
- component: () => import('../pages/HouseLevel')
|
|
|
- },
|
|
|
- {
|
|
|
- path: '/houseLevels',
|
|
|
- name: 'HouseLevels',
|
|
|
- component: () => import('../pages/HouseLevels')
|
|
|
- },
|
|
|
- {
|
|
|
- path: '/bannerInfo',
|
|
|
- name: 'BannerInfo',
|
|
|
- component: () => import('../pages/BannerInfo')
|
|
|
- },
|
|
|
- {
|
|
|
- path: '/bannerInfos',
|
|
|
- name: 'BannerInfos',
|
|
|
- component: () => import('../pages/BannerInfos')
|
|
|
- },
|
|
|
- {
|
|
|
- path: '/gameInfo',
|
|
|
- name: 'GameInfo',
|
|
|
- component: () => import('../pages/GameInfo')
|
|
|
- },
|
|
|
- {
|
|
|
- path: '/gameInfos',
|
|
|
- name: 'GameInfos',
|
|
|
- component: () => import('../pages/GameInfos')
|
|
|
- },
|
|
|
- {
|
|
|
- path: '/playerInfo',
|
|
|
- name: 'PlayerInfo',
|
|
|
- component: () => import('../pages/PlayerInfo')
|
|
|
- },
|
|
|
- {
|
|
|
- path: '/playerInfos',
|
|
|
- name: 'PlayerInfos',
|
|
|
- component: () => import('../pages/PlayerInfos')
|
|
|
- },
|
|
|
- {
|
|
|
- path: '/memberCoin',
|
|
|
- name: 'MemberCoin',
|
|
|
- component: () => import('../pages/MemberCoin')
|
|
|
- },
|
|
|
- {
|
|
|
- path: '/memberCoinSong',
|
|
|
- name: 'MemberCoinSong',
|
|
|
- component: () => import('../pages/MemberCoinSong')
|
|
|
- },
|
|
|
- {
|
|
|
- path: '/memberCoins',
|
|
|
- name: 'MemberCoins',
|
|
|
- component: () => import('../pages/MemberCoins')
|
|
|
- },
|
|
|
- {
|
|
|
- path: '/platformIncomeRecord',
|
|
|
- name: 'PlatformIncomeRecord',
|
|
|
- component: () => import('../pages/PlatformIncomeRecord')
|
|
|
- },
|
|
|
- {
|
|
|
- path: '/platformIncomeRecords',
|
|
|
- name: 'PlatformIncomeRecords',
|
|
|
- component: () => import('../pages/PlatformIncomeRecords')
|
|
|
- },
|
|
|
- {
|
|
|
- path: '/systemNotice',
|
|
|
- name: 'SystemNotice',
|
|
|
- component: () => import('../pages/SystemNotice')
|
|
|
- },
|
|
|
- {
|
|
|
- path: '/systemNotices',
|
|
|
- name: 'SystemNotices',
|
|
|
- component: () => import('../pages/SystemNotices')
|
|
|
- },
|
|
|
- {
|
|
|
- path: '/rechargeRecord',
|
|
|
- name: 'RechargeRecord',
|
|
|
- component: () => import('../pages/RechargeRecord')
|
|
|
- },
|
|
|
- {
|
|
|
- path: '/rechargeRecords',
|
|
|
- name: 'RechargeRecords',
|
|
|
- component: () => import('../pages/RechargeRecords')
|
|
|
- },
|
|
|
- {
|
|
|
- path: '/memberCoinTixian',
|
|
|
- name: 'MemberCoinTixian',
|
|
|
- component: () => import('../pages/MemberCoinTixian')
|
|
|
- },
|
|
|
- {
|
|
|
- path: '/memberCoinTixians',
|
|
|
- name: 'MemberCoinTixians',
|
|
|
- component: () => import('../pages/MemberCoinTixians')
|
|
|
- },
|
|
|
- {
|
|
|
- path: '/competitionSeason',
|
|
|
- name: 'CompetitionSeason',
|
|
|
- component: () => import('../pages/CompetitionSeason')
|
|
|
- },
|
|
|
- {
|
|
|
- path: '/competitionSeasons',
|
|
|
- name: 'CompetitionSeasons',
|
|
|
- component: () => import('../pages/CompetitionSeasons')
|
|
|
- },
|
|
|
- {
|
|
|
- path: '/bonusRecord',
|
|
|
- name: 'BonusRecord',
|
|
|
- component: () => import('../pages/BonusRecord')
|
|
|
- },
|
|
|
- {
|
|
|
- path: '/bonusRecords',
|
|
|
- name: 'BonusRecords',
|
|
|
- component: () => import('../pages/BonusRecords')
|
|
|
- },
|
|
|
- {
|
|
|
- path: '/videoTest',
|
|
|
- name: 'VideoTest',
|
|
|
- component: () => import('../pages/VideoTest')
|
|
|
- },
|
|
|
- {
|
|
|
- path: '/bindGame',
|
|
|
- name: 'BindGame',
|
|
|
- component: () => import('../pages/BindGame')
|
|
|
- },
|
|
|
- {
|
|
|
- path: '/bindGames',
|
|
|
- name: 'BindGames',
|
|
|
- component: () => import('../pages/BindGames')
|
|
|
- },
|
|
|
{
|
|
|
- path: '/productInfo',
|
|
|
- name: 'ProductInfo',
|
|
|
- component: () => import('../pages/ProductInfo')
|
|
|
+ path: '/404',
|
|
|
+ name: '404',
|
|
|
+ component: () =>
|
|
|
+ import('../pages/404')
|
|
|
+ },
|
|
|
+ {
|
|
|
+ path: '/dashboard',
|
|
|
+ name: 'dashboard',
|
|
|
+ component: () =>
|
|
|
+ import('../pages/Dashboard')
|
|
|
+ },
|
|
|
+ {
|
|
|
+ path: '/users',
|
|
|
+ name: 'users',
|
|
|
+ component: () =>
|
|
|
+ import('../pages/Users')
|
|
|
+ },
|
|
|
+ {
|
|
|
+ path: '/user',
|
|
|
+ name: 'user',
|
|
|
+ component: () =>
|
|
|
+ import('../pages/User')
|
|
|
+ },
|
|
|
+ {
|
|
|
+ path: '/menus',
|
|
|
+ name: 'menus',
|
|
|
+ component: () =>
|
|
|
+ import('../pages/Menus')
|
|
|
+ },
|
|
|
+ {
|
|
|
+ path: '/roles',
|
|
|
+ name: 'roles',
|
|
|
+ component: () =>
|
|
|
+ import('../pages/Roles')
|
|
|
+ },
|
|
|
+ {
|
|
|
+ path: '/role',
|
|
|
+ name: 'role',
|
|
|
+ component: () =>
|
|
|
+ import('../pages/Role')
|
|
|
+ },
|
|
|
+ {
|
|
|
+ path: '/api',
|
|
|
+ name: 'api',
|
|
|
+ component: () =>
|
|
|
+ import('../pages/Api')
|
|
|
+ },
|
|
|
+ {
|
|
|
+ path: '/genCodes',
|
|
|
+ name: 'genCodes',
|
|
|
+ component: () =>
|
|
|
+ import('../pages/GenCodes')
|
|
|
+ },
|
|
|
+ {
|
|
|
+ path: '/genCode',
|
|
|
+ name: 'genCode',
|
|
|
+ component: () =>
|
|
|
+ import('../pages/GenCode')
|
|
|
+ },
|
|
|
+ {
|
|
|
+ path: '/permissions',
|
|
|
+ name: 'permissions',
|
|
|
+ component: () =>
|
|
|
+ import('../pages/Permissions')
|
|
|
+ },
|
|
|
+ {
|
|
|
+ path: '/permission',
|
|
|
+ name: 'permission',
|
|
|
+ component: () =>
|
|
|
+ import('../pages/Permission')
|
|
|
+ },
|
|
|
+ {
|
|
|
+ path: '/departs',
|
|
|
+ name: 'departs',
|
|
|
+ component: () =>
|
|
|
+ import('../pages/Departs')
|
|
|
+ },
|
|
|
+ {
|
|
|
+ path: '/lineChart',
|
|
|
+ name: 'lineChart',
|
|
|
+ component: () =>
|
|
|
+ import('../pages/LineChart')
|
|
|
+ },
|
|
|
+ {
|
|
|
+ path: '/barChart',
|
|
|
+ name: 'barChart',
|
|
|
+ component: () =>
|
|
|
+ import('../pages/BarChart')
|
|
|
+ },
|
|
|
+ {
|
|
|
+ path: '/polarAreaChart',
|
|
|
+ name: 'polarAreaChart',
|
|
|
+ component: () =>
|
|
|
+ import('../pages/PolarAreaChart')
|
|
|
+ },
|
|
|
+ {
|
|
|
+ path: '/pieChart',
|
|
|
+ name: 'pieChart',
|
|
|
+ component: () =>
|
|
|
+ import('../pages/PieChart')
|
|
|
+ },
|
|
|
+ {
|
|
|
+ path: '/radarChart',
|
|
|
+ name: 'radarChart',
|
|
|
+ component: () =>
|
|
|
+ import('../pages/RadarChart')
|
|
|
+ },
|
|
|
+ {
|
|
|
+ path: '/bubbleChart',
|
|
|
+ name: 'bubbleChart',
|
|
|
+ component: () =>
|
|
|
+ import('../pages/BubbleChart')
|
|
|
+ },
|
|
|
+ {
|
|
|
+ path: '/processModels',
|
|
|
+ name: 'processModels',
|
|
|
+ component: () =>
|
|
|
+ import('../pages/ProcessModels')
|
|
|
+ },
|
|
|
+ {
|
|
|
+ path: '/processDefinitions',
|
|
|
+ name: 'processDefinitions',
|
|
|
+ component: () =>
|
|
|
+ import('../pages/ProcessDefinitions')
|
|
|
+ },
|
|
|
+ {
|
|
|
+ path: '/myProcesses',
|
|
|
+ name: 'myProcesses',
|
|
|
+ component: () =>
|
|
|
+ import('../pages/MyProcesses')
|
|
|
+ },
|
|
|
+ {
|
|
|
+ path: '/myTasks',
|
|
|
+ name: 'myTasks',
|
|
|
+ component: () =>
|
|
|
+ import('../pages/MyTasks')
|
|
|
+ },
|
|
|
+ {
|
|
|
+ path: '/completeTaskDynamic',
|
|
|
+ name: 'CompleteTaskDynamic',
|
|
|
+ component: () =>
|
|
|
+ import('../pages/CompleteTaskDynamic')
|
|
|
+ },
|
|
|
+ {
|
|
|
+ path: '/commonQuerys',
|
|
|
+ name: 'commonQuerys',
|
|
|
+ component: () =>
|
|
|
+ import('../pages/CommonQuerys')
|
|
|
+ },
|
|
|
+ {
|
|
|
+ path: '/commonQuery',
|
|
|
+ name: 'commonQuery',
|
|
|
+ component: () =>
|
|
|
+ import('../pages/CommonQuery')
|
|
|
+ },
|
|
|
+ {
|
|
|
+ path: '/commonIframe',
|
|
|
+ name: 'commonIframe',
|
|
|
+ component: () =>
|
|
|
+ import('../pages/CommonIframe')
|
|
|
+ },
|
|
|
+ {
|
|
|
+ path: '/queryConfigs',
|
|
|
+ name: 'queryConfigs',
|
|
|
+ component: () =>
|
|
|
+ import('../pages/QueryConfigs')
|
|
|
+ },
|
|
|
+ {
|
|
|
+ path: '/queryConfig',
|
|
|
+ name: 'queryConfig',
|
|
|
+ component: () =>
|
|
|
+ import('../pages/QueryConfig')
|
|
|
+ },
|
|
|
+ {
|
|
|
+ path: '/dataSourceInfos',
|
|
|
+ name: 'dataSourceInfos',
|
|
|
+ component: () =>
|
|
|
+ import('../pages/DataSourceInfos')
|
|
|
+ },
|
|
|
+ {
|
|
|
+ path: '/dataSourceInfo',
|
|
|
+ name: 'dataSourceInfo',
|
|
|
+ component: () =>
|
|
|
+ import('../pages/DataSourceInfo')
|
|
|
+ },
|
|
|
+ {
|
|
|
+ path: '/deploySystem',
|
|
|
+ name: 'DeploySystem',
|
|
|
+ component: () =>
|
|
|
+ import('../pages/DeploySystem')
|
|
|
+ },
|
|
|
+ {
|
|
|
+ path: '/myCanvas',
|
|
|
+ name: 'MyCanvas',
|
|
|
+ component: () =>
|
|
|
+ import('../pages/MyCanvas')
|
|
|
+ },
|
|
|
+ {
|
|
|
+ path: '/houseInfo',
|
|
|
+ name: 'HouseInfo',
|
|
|
+ component: () => import('../pages/HouseInfo')
|
|
|
+ },
|
|
|
+ {
|
|
|
+ path: '/houseInfos',
|
|
|
+ name: 'HouseInfos',
|
|
|
+ component: () => import('../pages/HouseInfos')
|
|
|
+ },
|
|
|
+ {
|
|
|
+ path: '/houseLevel',
|
|
|
+ name: 'HouseLevel',
|
|
|
+ component: () => import('../pages/HouseLevel')
|
|
|
+ },
|
|
|
+ {
|
|
|
+ path: '/houseLevels',
|
|
|
+ name: 'HouseLevels',
|
|
|
+ component: () => import('../pages/HouseLevels')
|
|
|
+ },
|
|
|
+ {
|
|
|
+ path: '/bannerInfo',
|
|
|
+ name: 'BannerInfo',
|
|
|
+ component: () => import('../pages/BannerInfo')
|
|
|
+ },
|
|
|
+ {
|
|
|
+ path: '/bannerInfos',
|
|
|
+ name: 'BannerInfos',
|
|
|
+ component: () => import('../pages/BannerInfos')
|
|
|
+ },
|
|
|
+ {
|
|
|
+ path: '/gameInfo',
|
|
|
+ name: 'GameInfo',
|
|
|
+ component: () => import('../pages/GameInfo')
|
|
|
+ },
|
|
|
+ {
|
|
|
+ path: '/gameInfos',
|
|
|
+ name: 'GameInfos',
|
|
|
+ component: () => import('../pages/GameInfos')
|
|
|
+ },
|
|
|
+ {
|
|
|
+ path: '/playerInfo',
|
|
|
+ name: 'PlayerInfo',
|
|
|
+ component: () => import('../pages/PlayerInfo')
|
|
|
+ },
|
|
|
+ {
|
|
|
+ path: '/playerInfos',
|
|
|
+ name: 'PlayerInfos',
|
|
|
+ component: () => import('../pages/PlayerInfos')
|
|
|
+ },
|
|
|
+ {
|
|
|
+ path: '/memberCoin',
|
|
|
+ name: 'MemberCoin',
|
|
|
+ component: () => import('../pages/MemberCoin')
|
|
|
+ },
|
|
|
+ {
|
|
|
+ path: '/memberCoinSong',
|
|
|
+ name: 'MemberCoinSong',
|
|
|
+ component: () => import('../pages/MemberCoinSong')
|
|
|
+ },
|
|
|
+ {
|
|
|
+ path: '/memberCoins',
|
|
|
+ name: 'MemberCoins',
|
|
|
+ component: () => import('../pages/MemberCoins')
|
|
|
+ },
|
|
|
+ {
|
|
|
+ path: '/platformIncomeRecord',
|
|
|
+ name: 'PlatformIncomeRecord',
|
|
|
+ component: () => import('../pages/PlatformIncomeRecord')
|
|
|
+ },
|
|
|
+ {
|
|
|
+ path: '/platformIncomeRecords',
|
|
|
+ name: 'PlatformIncomeRecords',
|
|
|
+ component: () => import('../pages/PlatformIncomeRecords')
|
|
|
+ },
|
|
|
+ {
|
|
|
+ path: '/systemNotice',
|
|
|
+ name: 'SystemNotice',
|
|
|
+ component: () => import('../pages/SystemNotice')
|
|
|
+ },
|
|
|
+ {
|
|
|
+ path: '/systemNotices',
|
|
|
+ name: 'SystemNotices',
|
|
|
+ component: () => import('../pages/SystemNotices')
|
|
|
+ },
|
|
|
+ {
|
|
|
+ path: '/rechargeRecord',
|
|
|
+ name: 'RechargeRecord',
|
|
|
+ component: () => import('../pages/RechargeRecord')
|
|
|
+ },
|
|
|
+ {
|
|
|
+ path: '/rechargeRecords',
|
|
|
+ name: 'RechargeRecords',
|
|
|
+ component: () => import('../pages/RechargeRecords')
|
|
|
+ },
|
|
|
+ {
|
|
|
+ path: '/memberCoinTixian',
|
|
|
+ name: 'MemberCoinTixian',
|
|
|
+ component: () => import('../pages/MemberCoinTixian')
|
|
|
+ },
|
|
|
+ {
|
|
|
+ path: '/memberCoinTixians',
|
|
|
+ name: 'MemberCoinTixians',
|
|
|
+ component: () => import('../pages/MemberCoinTixians')
|
|
|
+ },
|
|
|
+ {
|
|
|
+ path: '/competitionSeason',
|
|
|
+ name: 'CompetitionSeason',
|
|
|
+ component: () => import('../pages/CompetitionSeason')
|
|
|
+ },
|
|
|
+ {
|
|
|
+ path: '/competitionSeasons',
|
|
|
+ name: 'CompetitionSeasons',
|
|
|
+ component: () => import('../pages/CompetitionSeasons')
|
|
|
+ },
|
|
|
+ {
|
|
|
+ path: '/bonusRecord',
|
|
|
+ name: 'BonusRecord',
|
|
|
+ component: () => import('../pages/BonusRecord')
|
|
|
+ },
|
|
|
+ {
|
|
|
+ path: '/bonusRecords',
|
|
|
+ name: 'BonusRecords',
|
|
|
+ component: () => import('../pages/BonusRecords')
|
|
|
+ },
|
|
|
+ {
|
|
|
+ path: '/videoTest',
|
|
|
+ name: 'VideoTest',
|
|
|
+ component: () => import('../pages/VideoTest')
|
|
|
+ },
|
|
|
+ {
|
|
|
+ path: '/bindGame',
|
|
|
+ name: 'BindGame',
|
|
|
+ component: () => import('../pages/BindGame')
|
|
|
+ },
|
|
|
+ {
|
|
|
+ path: '/bindGames',
|
|
|
+ name: 'BindGames',
|
|
|
+ component: () => import('../pages/BindGames')
|
|
|
+ },
|
|
|
+ {
|
|
|
+ path: '/systemVariable',
|
|
|
+ name: 'SystemVariable',
|
|
|
+ component: () => import('../pages/SystemVariable')
|
|
|
},
|
|
|
{
|
|
|
- path: '/productInfos',
|
|
|
- name: 'ProductInfos',
|
|
|
- component: () => import('../pages/ProductInfos')
|
|
|
+ path: '/systemVariables',
|
|
|
+ name: 'SystemVariables',
|
|
|
+ component: () => import('../pages/SystemVariables')
|
|
|
}
|
|
|
/**INSERT_LOCATION**/
|
|
|
]
|
|
|
},
|
|
|
- {
|
|
|
- path: '/login',
|
|
|
- name: 'login',
|
|
|
- component: () =>
|
|
|
- import('../pages/Login')
|
|
|
- }
|
|
|
+ {
|
|
|
+ path: '/login',
|
|
|
+ name: 'login',
|
|
|
+ component: () =>
|
|
|
+ import('../pages/Login')
|
|
|
+ }
|
|
|
]
|
|
|
});
|
|
|
router.beforeEach((to, from, next) => {
|