|
@@ -6,354 +6,421 @@ import axios from 'axios'
|
|
|
Vue.use(Router);
|
|
Vue.use(Router);
|
|
|
|
|
|
|
|
const router = new Router({
|
|
const router = new Router({
|
|
|
- routes: [
|
|
|
|
|
- {
|
|
|
|
|
|
|
+ routes: [{
|
|
|
path: '/',
|
|
path: '/',
|
|
|
- component: () => import('../pages/App'),
|
|
|
|
|
- children: [
|
|
|
|
|
- {
|
|
|
|
|
|
|
+ component: () =>
|
|
|
|
|
+ import ('../pages/App'),
|
|
|
|
|
+ children: [{
|
|
|
path: '/',
|
|
path: '/',
|
|
|
redirect: 'dashboard'
|
|
redirect: 'dashboard'
|
|
|
},
|
|
},
|
|
|
{
|
|
{
|
|
|
path: '/404',
|
|
path: '/404',
|
|
|
name: '404',
|
|
name: '404',
|
|
|
- component: () => import('../pages/404')
|
|
|
|
|
|
|
+ component: () =>
|
|
|
|
|
+ import ('../pages/404')
|
|
|
},
|
|
},
|
|
|
{
|
|
{
|
|
|
path: '/dashboard',
|
|
path: '/dashboard',
|
|
|
name: 'dashboard',
|
|
name: 'dashboard',
|
|
|
- component: () => import('../pages/Dashboard')
|
|
|
|
|
|
|
+ component: () =>
|
|
|
|
|
+ import ('../pages/Dashboard')
|
|
|
},
|
|
},
|
|
|
{
|
|
{
|
|
|
path: '/users',
|
|
path: '/users',
|
|
|
name: 'users',
|
|
name: 'users',
|
|
|
- component: () => import('../pages/Users')
|
|
|
|
|
|
|
+ component: () =>
|
|
|
|
|
+ import ('../pages/Users')
|
|
|
},
|
|
},
|
|
|
{
|
|
{
|
|
|
path: '/user',
|
|
path: '/user',
|
|
|
name: 'user',
|
|
name: 'user',
|
|
|
- component: () => import('../pages/User')
|
|
|
|
|
|
|
+ component: () =>
|
|
|
|
|
+ import ('../pages/User')
|
|
|
},
|
|
},
|
|
|
{
|
|
{
|
|
|
path: '/menus',
|
|
path: '/menus',
|
|
|
name: 'menus',
|
|
name: 'menus',
|
|
|
- component: () => import('../pages/Menus')
|
|
|
|
|
|
|
+ component: () =>
|
|
|
|
|
+ import ('../pages/Menus')
|
|
|
},
|
|
},
|
|
|
{
|
|
{
|
|
|
path: '/roles',
|
|
path: '/roles',
|
|
|
name: 'roles',
|
|
name: 'roles',
|
|
|
- component: () => import('../pages/Roles')
|
|
|
|
|
|
|
+ component: () =>
|
|
|
|
|
+ import ('../pages/Roles')
|
|
|
},
|
|
},
|
|
|
{
|
|
{
|
|
|
path: '/role',
|
|
path: '/role',
|
|
|
name: 'role',
|
|
name: 'role',
|
|
|
- component: () => import('../pages/Role')
|
|
|
|
|
|
|
+ component: () =>
|
|
|
|
|
+ import ('../pages/Role')
|
|
|
},
|
|
},
|
|
|
{
|
|
{
|
|
|
path: '/api',
|
|
path: '/api',
|
|
|
name: 'api',
|
|
name: 'api',
|
|
|
- component: () => import('../pages/Api')
|
|
|
|
|
|
|
+ component: () =>
|
|
|
|
|
+ import ('../pages/Api')
|
|
|
},
|
|
},
|
|
|
{
|
|
{
|
|
|
path: '/genCodes',
|
|
path: '/genCodes',
|
|
|
name: 'genCodes',
|
|
name: 'genCodes',
|
|
|
- component: () => import('../pages/GenCodes')
|
|
|
|
|
|
|
+ component: () =>
|
|
|
|
|
+ import ('../pages/GenCodes')
|
|
|
},
|
|
},
|
|
|
{
|
|
{
|
|
|
path: '/genCode',
|
|
path: '/genCode',
|
|
|
name: 'genCode',
|
|
name: 'genCode',
|
|
|
- component: () => import('../pages/GenCode')
|
|
|
|
|
|
|
+ component: () =>
|
|
|
|
|
+ import ('../pages/GenCode')
|
|
|
},
|
|
},
|
|
|
{
|
|
{
|
|
|
path: '/permissions',
|
|
path: '/permissions',
|
|
|
name: 'permissions',
|
|
name: 'permissions',
|
|
|
- component: () => import('../pages/Permissions')
|
|
|
|
|
|
|
+ component: () =>
|
|
|
|
|
+ import ('../pages/Permissions')
|
|
|
},
|
|
},
|
|
|
{
|
|
{
|
|
|
path: '/permission',
|
|
path: '/permission',
|
|
|
name: 'permission',
|
|
name: 'permission',
|
|
|
- component: () => import('../pages/Permission')
|
|
|
|
|
|
|
+ component: () =>
|
|
|
|
|
+ import ('../pages/Permission')
|
|
|
},
|
|
},
|
|
|
{
|
|
{
|
|
|
path: '/departs',
|
|
path: '/departs',
|
|
|
name: 'departs',
|
|
name: 'departs',
|
|
|
- component: () => import('../pages/Departs')
|
|
|
|
|
|
|
+ component: () =>
|
|
|
|
|
+ import ('../pages/Departs')
|
|
|
},
|
|
},
|
|
|
{
|
|
{
|
|
|
path: '/lineChart',
|
|
path: '/lineChart',
|
|
|
name: 'lineChart',
|
|
name: 'lineChart',
|
|
|
- component: () => import('../pages/LineChart')
|
|
|
|
|
|
|
+ component: () =>
|
|
|
|
|
+ import ('../pages/LineChart')
|
|
|
},
|
|
},
|
|
|
{
|
|
{
|
|
|
path: '/barChart',
|
|
path: '/barChart',
|
|
|
name: 'barChart',
|
|
name: 'barChart',
|
|
|
- component: () => import('../pages/BarChart')
|
|
|
|
|
|
|
+ component: () =>
|
|
|
|
|
+ import ('../pages/BarChart')
|
|
|
},
|
|
},
|
|
|
{
|
|
{
|
|
|
path: '/polarAreaChart',
|
|
path: '/polarAreaChart',
|
|
|
name: 'polarAreaChart',
|
|
name: 'polarAreaChart',
|
|
|
- component: () => import('../pages/PolarAreaChart')
|
|
|
|
|
|
|
+ component: () =>
|
|
|
|
|
+ import ('../pages/PolarAreaChart')
|
|
|
},
|
|
},
|
|
|
{
|
|
{
|
|
|
path: '/pieChart',
|
|
path: '/pieChart',
|
|
|
name: 'pieChart',
|
|
name: 'pieChart',
|
|
|
- component: () => import('../pages/PieChart')
|
|
|
|
|
|
|
+ component: () =>
|
|
|
|
|
+ import ('../pages/PieChart')
|
|
|
},
|
|
},
|
|
|
{
|
|
{
|
|
|
path: '/radarChart',
|
|
path: '/radarChart',
|
|
|
name: 'radarChart',
|
|
name: 'radarChart',
|
|
|
- component: () => import('../pages/RadarChart')
|
|
|
|
|
|
|
+ component: () =>
|
|
|
|
|
+ import ('../pages/RadarChart')
|
|
|
},
|
|
},
|
|
|
{
|
|
{
|
|
|
path: '/bubbleChart',
|
|
path: '/bubbleChart',
|
|
|
name: 'bubbleChart',
|
|
name: 'bubbleChart',
|
|
|
- component: () => import('../pages/BubbleChart')
|
|
|
|
|
|
|
+ component: () =>
|
|
|
|
|
+ import ('../pages/BubbleChart')
|
|
|
},
|
|
},
|
|
|
{
|
|
{
|
|
|
path: '/processModels',
|
|
path: '/processModels',
|
|
|
name: 'processModels',
|
|
name: 'processModels',
|
|
|
- component: () => import('../pages/ProcessModels')
|
|
|
|
|
|
|
+ component: () =>
|
|
|
|
|
+ import ('../pages/ProcessModels')
|
|
|
},
|
|
},
|
|
|
{
|
|
{
|
|
|
path: '/processDefinitions',
|
|
path: '/processDefinitions',
|
|
|
name: 'processDefinitions',
|
|
name: 'processDefinitions',
|
|
|
- component: () => import('../pages/ProcessDefinitions')
|
|
|
|
|
|
|
+ component: () =>
|
|
|
|
|
+ import ('../pages/ProcessDefinitions')
|
|
|
},
|
|
},
|
|
|
{
|
|
{
|
|
|
path: '/myProcesses',
|
|
path: '/myProcesses',
|
|
|
name: 'myProcesses',
|
|
name: 'myProcesses',
|
|
|
- component: () => import('../pages/MyProcesses')
|
|
|
|
|
|
|
+ component: () =>
|
|
|
|
|
+ import ('../pages/MyProcesses')
|
|
|
},
|
|
},
|
|
|
{
|
|
{
|
|
|
path: '/myTasks',
|
|
path: '/myTasks',
|
|
|
name: 'myTasks',
|
|
name: 'myTasks',
|
|
|
- component: () => import('../pages/MyTasks')
|
|
|
|
|
|
|
+ component: () =>
|
|
|
|
|
+ import ('../pages/MyTasks')
|
|
|
},
|
|
},
|
|
|
{
|
|
{
|
|
|
path: '/completeTaskDynamic',
|
|
path: '/completeTaskDynamic',
|
|
|
name: 'CompleteTaskDynamic',
|
|
name: 'CompleteTaskDynamic',
|
|
|
- component: () => import('../pages/CompleteTaskDynamic')
|
|
|
|
|
|
|
+ component: () =>
|
|
|
|
|
+ import ('../pages/CompleteTaskDynamic')
|
|
|
},
|
|
},
|
|
|
{
|
|
{
|
|
|
path: '/commonQuerys',
|
|
path: '/commonQuerys',
|
|
|
name: 'commonQuerys',
|
|
name: 'commonQuerys',
|
|
|
- component: () => import('../pages/CommonQuerys')
|
|
|
|
|
|
|
+ component: () =>
|
|
|
|
|
+ import ('../pages/CommonQuerys')
|
|
|
},
|
|
},
|
|
|
{
|
|
{
|
|
|
path: '/commonQuery',
|
|
path: '/commonQuery',
|
|
|
name: 'commonQuery',
|
|
name: 'commonQuery',
|
|
|
- component: () => import('../pages/CommonQuery')
|
|
|
|
|
|
|
+ component: () =>
|
|
|
|
|
+ import ('../pages/CommonQuery')
|
|
|
},
|
|
},
|
|
|
{
|
|
{
|
|
|
path: '/commonIframe',
|
|
path: '/commonIframe',
|
|
|
name: 'commonIframe',
|
|
name: 'commonIframe',
|
|
|
- component: () => import('../pages/CommonIframe')
|
|
|
|
|
|
|
+ component: () =>
|
|
|
|
|
+ import ('../pages/CommonIframe')
|
|
|
},
|
|
},
|
|
|
{
|
|
{
|
|
|
path: '/queryConfigs',
|
|
path: '/queryConfigs',
|
|
|
name: 'queryConfigs',
|
|
name: 'queryConfigs',
|
|
|
- component: () => import('../pages/QueryConfigs')
|
|
|
|
|
|
|
+ component: () =>
|
|
|
|
|
+ import ('../pages/QueryConfigs')
|
|
|
},
|
|
},
|
|
|
{
|
|
{
|
|
|
path: '/queryConfig',
|
|
path: '/queryConfig',
|
|
|
name: 'queryConfig',
|
|
name: 'queryConfig',
|
|
|
- component: () => import('../pages/QueryConfig')
|
|
|
|
|
|
|
+ component: () =>
|
|
|
|
|
+ import ('../pages/QueryConfig')
|
|
|
},
|
|
},
|
|
|
{
|
|
{
|
|
|
path: '/dataSourceInfos',
|
|
path: '/dataSourceInfos',
|
|
|
name: 'dataSourceInfos',
|
|
name: 'dataSourceInfos',
|
|
|
- component: () => import('../pages/DataSourceInfos')
|
|
|
|
|
|
|
+ component: () =>
|
|
|
|
|
+ import ('../pages/DataSourceInfos')
|
|
|
},
|
|
},
|
|
|
{
|
|
{
|
|
|
path: '/dataSourceInfo',
|
|
path: '/dataSourceInfo',
|
|
|
name: 'dataSourceInfo',
|
|
name: 'dataSourceInfo',
|
|
|
- component: () => import('../pages/DataSourceInfo')
|
|
|
|
|
|
|
+ component: () =>
|
|
|
|
|
+ import ('../pages/DataSourceInfo')
|
|
|
},
|
|
},
|
|
|
{
|
|
{
|
|
|
path: '/deploySystem',
|
|
path: '/deploySystem',
|
|
|
name: 'DeploySystem',
|
|
name: 'DeploySystem',
|
|
|
- component: () => import('../pages/DeploySystem')
|
|
|
|
|
|
|
+ component: () =>
|
|
|
|
|
+ import ('../pages/DeploySystem')
|
|
|
},
|
|
},
|
|
|
{
|
|
{
|
|
|
path: '/myCanvas',
|
|
path: '/myCanvas',
|
|
|
name: 'MyCanvas',
|
|
name: 'MyCanvas',
|
|
|
- component: () => import('../pages/MyCanvas')
|
|
|
|
|
|
|
+ component: () =>
|
|
|
|
|
+ import ('../pages/MyCanvas')
|
|
|
},
|
|
},
|
|
|
{
|
|
{
|
|
|
path: '/arContentTemplate',
|
|
path: '/arContentTemplate',
|
|
|
- name: 'ArContentTemplate',
|
|
|
|
|
- component: () => import('../pages/ArContentTemplate')
|
|
|
|
|
|
|
+ name: 'arContentTemplate',
|
|
|
|
|
+ component: () =>
|
|
|
|
|
+ import ('../pages/ArContentTemplate')
|
|
|
},
|
|
},
|
|
|
{
|
|
{
|
|
|
path: '/marketMap',
|
|
path: '/marketMap',
|
|
|
name: 'MarketMap',
|
|
name: 'MarketMap',
|
|
|
- component: () => import('../pages/MarketMap')
|
|
|
|
|
|
|
+ component: () =>
|
|
|
|
|
+ import ('../pages/MarketMap')
|
|
|
},
|
|
},
|
|
|
{
|
|
{
|
|
|
path: '/marketMaps',
|
|
path: '/marketMaps',
|
|
|
name: 'MarketMaps',
|
|
name: 'MarketMaps',
|
|
|
- component: () => import('../pages/MarketMaps')
|
|
|
|
|
|
|
+ component: () =>
|
|
|
|
|
+ import ('../pages/MarketMaps')
|
|
|
},
|
|
},
|
|
|
{
|
|
{
|
|
|
path: '/marketMapBox',
|
|
path: '/marketMapBox',
|
|
|
name: 'MarketMapBox',
|
|
name: 'MarketMapBox',
|
|
|
- component: () => import('../pages/MarketMapBox')
|
|
|
|
|
|
|
+ component: () =>
|
|
|
|
|
+ import ('../pages/MarketMapBox')
|
|
|
},
|
|
},
|
|
|
{
|
|
{
|
|
|
path: '/marketMapBoxs',
|
|
path: '/marketMapBoxs',
|
|
|
name: 'MarketMapBoxs',
|
|
name: 'MarketMapBoxs',
|
|
|
- component: () => import('../pages/MarketMapBoxs')
|
|
|
|
|
|
|
+ component: () =>
|
|
|
|
|
+ import ('../pages/MarketMapBoxs')
|
|
|
},
|
|
},
|
|
|
{
|
|
{
|
|
|
path: '/marketMapBoxDes',
|
|
path: '/marketMapBoxDes',
|
|
|
name: 'MarketMapBoxDes',
|
|
name: 'MarketMapBoxDes',
|
|
|
- component: () => import('../pages/MarketMapBoxDes')
|
|
|
|
|
|
|
+ component: () =>
|
|
|
|
|
+ import ('../pages/MarketMapBoxDes')
|
|
|
},
|
|
},
|
|
|
{
|
|
{
|
|
|
path: '/marketMapBoxDess',
|
|
path: '/marketMapBoxDess',
|
|
|
name: 'MarketMapBoxDess',
|
|
name: 'MarketMapBoxDess',
|
|
|
- component: () => import('../pages/MarketMapBoxDess')
|
|
|
|
|
|
|
+ component: () =>
|
|
|
|
|
+ import ('../pages/MarketMapBoxDess')
|
|
|
},
|
|
},
|
|
|
{
|
|
{
|
|
|
path: '/guideTipImage',
|
|
path: '/guideTipImage',
|
|
|
name: 'GuideTipImage',
|
|
name: 'GuideTipImage',
|
|
|
- component: () => import('../pages/GuideTipImage')
|
|
|
|
|
|
|
+ component: () =>
|
|
|
|
|
+ import ('../pages/GuideTipImage')
|
|
|
},
|
|
},
|
|
|
{
|
|
{
|
|
|
path: '/guideTipImages',
|
|
path: '/guideTipImages',
|
|
|
name: 'GuideTipImages',
|
|
name: 'GuideTipImages',
|
|
|
- component: () => import('../pages/GuideTipImages')
|
|
|
|
|
|
|
+ component: () =>
|
|
|
|
|
+ import ('../pages/GuideTipImages')
|
|
|
},
|
|
},
|
|
|
{
|
|
{
|
|
|
path: '/marketAimPlace',
|
|
path: '/marketAimPlace',
|
|
|
name: 'MarketAimPlace',
|
|
name: 'MarketAimPlace',
|
|
|
- component: () => import('../pages/MarketAimPlace')
|
|
|
|
|
|
|
+ component: () =>
|
|
|
|
|
+ import ('../pages/MarketAimPlace')
|
|
|
},
|
|
},
|
|
|
{
|
|
{
|
|
|
path: '/marketAimPlaces',
|
|
path: '/marketAimPlaces',
|
|
|
name: 'MarketAimPlaces',
|
|
name: 'MarketAimPlaces',
|
|
|
- component: () => import('../pages/MarketAimPlaces')
|
|
|
|
|
|
|
+ component: () =>
|
|
|
|
|
+ import ('../pages/MarketAimPlaces')
|
|
|
},
|
|
},
|
|
|
{
|
|
{
|
|
|
path: '/landMark',
|
|
path: '/landMark',
|
|
|
name: 'LandMark',
|
|
name: 'LandMark',
|
|
|
- component: () => import('../pages/LandMark')
|
|
|
|
|
|
|
+ component: () =>
|
|
|
|
|
+ import ('../pages/LandMark')
|
|
|
},
|
|
},
|
|
|
{
|
|
{
|
|
|
path: '/landMarks',
|
|
path: '/landMarks',
|
|
|
name: 'LandMarks',
|
|
name: 'LandMarks',
|
|
|
- component: () => import('../pages/LandMarks')
|
|
|
|
|
|
|
+ component: () =>
|
|
|
|
|
+ import ('../pages/LandMarks')
|
|
|
},
|
|
},
|
|
|
{
|
|
{
|
|
|
path: '/landMarkLevel',
|
|
path: '/landMarkLevel',
|
|
|
name: 'LandMarkLevel',
|
|
name: 'LandMarkLevel',
|
|
|
- component: () => import('../pages/LandMarkLevel')
|
|
|
|
|
|
|
+ component: () =>
|
|
|
|
|
+ import ('../pages/LandMarkLevel')
|
|
|
},
|
|
},
|
|
|
{
|
|
{
|
|
|
path: '/landMarkLevels',
|
|
path: '/landMarkLevels',
|
|
|
name: 'LandMarkLevels',
|
|
name: 'LandMarkLevels',
|
|
|
- component: () => import('../pages/LandMarkLevels')
|
|
|
|
|
|
|
+ component: () =>
|
|
|
|
|
+ import ('../pages/LandMarkLevels')
|
|
|
},
|
|
},
|
|
|
{
|
|
{
|
|
|
path: '/vuforiaImageGroup',
|
|
path: '/vuforiaImageGroup',
|
|
|
name: 'VuforiaImageGroup',
|
|
name: 'VuforiaImageGroup',
|
|
|
- component: () => import('../pages/VuforiaImageGroup')
|
|
|
|
|
|
|
+ component: () =>
|
|
|
|
|
+ import ('../pages/VuforiaImageGroup')
|
|
|
},
|
|
},
|
|
|
{
|
|
{
|
|
|
path: '/vuforiaImageGroups',
|
|
path: '/vuforiaImageGroups',
|
|
|
name: 'VuforiaImageGroups',
|
|
name: 'VuforiaImageGroups',
|
|
|
- component: () => import('../pages/VuforiaImageGroups')
|
|
|
|
|
|
|
+ component: () =>
|
|
|
|
|
+ import ('../pages/VuforiaImageGroups')
|
|
|
},
|
|
},
|
|
|
{
|
|
{
|
|
|
path: '/vuforiaImageType',
|
|
path: '/vuforiaImageType',
|
|
|
name: 'VuforiaImageType',
|
|
name: 'VuforiaImageType',
|
|
|
- component: () => import('../pages/VuforiaImageType')
|
|
|
|
|
|
|
+ component: () =>
|
|
|
|
|
+ import ('../pages/VuforiaImageType')
|
|
|
},
|
|
},
|
|
|
{
|
|
{
|
|
|
path: '/vuforiaImageTypes',
|
|
path: '/vuforiaImageTypes',
|
|
|
name: 'VuforiaImageTypes',
|
|
name: 'VuforiaImageTypes',
|
|
|
- component: () => import('../pages/VuforiaImageTypes')
|
|
|
|
|
|
|
+ component: () =>
|
|
|
|
|
+ import ('../pages/VuforiaImageTypes')
|
|
|
},
|
|
},
|
|
|
{
|
|
{
|
|
|
path: '/vuforiaImageInfo',
|
|
path: '/vuforiaImageInfo',
|
|
|
name: 'VuforiaImageInfo',
|
|
name: 'VuforiaImageInfo',
|
|
|
- component: () => import('../pages/VuforiaImageInfo')
|
|
|
|
|
|
|
+ component: () =>
|
|
|
|
|
+ import ('../pages/VuforiaImageInfo')
|
|
|
},
|
|
},
|
|
|
{
|
|
{
|
|
|
path: '/vuforiaImageInfos',
|
|
path: '/vuforiaImageInfos',
|
|
|
name: 'VuforiaImageInfos',
|
|
name: 'VuforiaImageInfos',
|
|
|
- component: () => import('../pages/VuforiaImageInfos')
|
|
|
|
|
|
|
+ component: () =>
|
|
|
|
|
+ import ('../pages/VuforiaImageInfos')
|
|
|
},
|
|
},
|
|
|
{
|
|
{
|
|
|
path: '/arContent',
|
|
path: '/arContent',
|
|
|
name: 'ArContent',
|
|
name: 'ArContent',
|
|
|
- component: () => import('../pages/ArContent')
|
|
|
|
|
|
|
+ component: () =>
|
|
|
|
|
+ import ('../pages/ArContent')
|
|
|
},
|
|
},
|
|
|
{
|
|
{
|
|
|
path: '/arContents',
|
|
path: '/arContents',
|
|
|
name: 'ArContents',
|
|
name: 'ArContents',
|
|
|
- component: () => import('../pages/ArContents')
|
|
|
|
|
|
|
+ component: () =>
|
|
|
|
|
+ import ('../pages/ArContents')
|
|
|
},
|
|
},
|
|
|
{
|
|
{
|
|
|
path: '/aimPlaceContent',
|
|
path: '/aimPlaceContent',
|
|
|
name: 'AimPlaceContent',
|
|
name: 'AimPlaceContent',
|
|
|
- component: () => import('../pages/AimPlaceContent')
|
|
|
|
|
|
|
+ component: () =>
|
|
|
|
|
+ import ('../pages/AimPlaceContent')
|
|
|
},
|
|
},
|
|
|
{
|
|
{
|
|
|
path: '/aimPlaceContents',
|
|
path: '/aimPlaceContents',
|
|
|
name: 'AimPlaceContents',
|
|
name: 'AimPlaceContents',
|
|
|
- component: () => import('../pages/AimPlaceContents')
|
|
|
|
|
|
|
+ component: () =>
|
|
|
|
|
+ import ('../pages/AimPlaceContents')
|
|
|
},
|
|
},
|
|
|
{
|
|
{
|
|
|
path: '/aimPlaceContentChild',
|
|
path: '/aimPlaceContentChild',
|
|
|
name: 'AimPlaceContentChild',
|
|
name: 'AimPlaceContentChild',
|
|
|
- component: () => import('../pages/AimPlaceContentChild')
|
|
|
|
|
|
|
+ component: () =>
|
|
|
|
|
+ import ('../pages/AimPlaceContentChild')
|
|
|
},
|
|
},
|
|
|
{
|
|
{
|
|
|
path: '/aimPlaceContentChilds',
|
|
path: '/aimPlaceContentChilds',
|
|
|
name: 'AimPlaceContentChilds',
|
|
name: 'AimPlaceContentChilds',
|
|
|
- component: () => import('../pages/AimPlaceContentChilds')
|
|
|
|
|
|
|
+ component: () =>
|
|
|
|
|
+ import ('../pages/AimPlaceContentChilds')
|
|
|
},
|
|
},
|
|
|
{
|
|
{
|
|
|
path: '/aimPlacePosition',
|
|
path: '/aimPlacePosition',
|
|
|
name: 'AimPlacePosition',
|
|
name: 'AimPlacePosition',
|
|
|
- component: () => import('../pages/AimPlacePosition')
|
|
|
|
|
|
|
+ component: () =>
|
|
|
|
|
+ import ('../pages/AimPlacePosition')
|
|
|
},
|
|
},
|
|
|
{
|
|
{
|
|
|
path: '/aimPlacePositions',
|
|
path: '/aimPlacePositions',
|
|
|
name: 'AimPlacePositions',
|
|
name: 'AimPlacePositions',
|
|
|
- component: () => import('../pages/AimPlacePositions')
|
|
|
|
|
|
|
+ component: () =>
|
|
|
|
|
+ import ('../pages/AimPlacePositions')
|
|
|
},
|
|
},
|
|
|
{
|
|
{
|
|
|
path: '/aimPlacePositionLevel',
|
|
path: '/aimPlacePositionLevel',
|
|
|
name: 'AimPlacePositionLevel',
|
|
name: 'AimPlacePositionLevel',
|
|
|
- component: () => import('../pages/AimPlacePositionLevel')
|
|
|
|
|
|
|
+ component: () =>
|
|
|
|
|
+ import ('../pages/AimPlacePositionLevel')
|
|
|
},
|
|
},
|
|
|
{
|
|
{
|
|
|
path: '/aimPlacePositionLevels',
|
|
path: '/aimPlacePositionLevels',
|
|
|
name: 'AimPlacePositionLevels',
|
|
name: 'AimPlacePositionLevels',
|
|
|
- component: () => import('../pages/AimPlacePositionLevels')
|
|
|
|
|
|
|
+ component: () =>
|
|
|
|
|
+ import ('../pages/AimPlacePositionLevels')
|
|
|
},
|
|
},
|
|
|
{
|
|
{
|
|
|
path: '/cityInfo',
|
|
path: '/cityInfo',
|
|
|
name: 'CityInfo',
|
|
name: 'CityInfo',
|
|
|
- component: () => import('../pages/CityInfo')
|
|
|
|
|
|
|
+ component: () =>
|
|
|
|
|
+ import ('../pages/CityInfo')
|
|
|
},
|
|
},
|
|
|
{
|
|
{
|
|
|
path: '/cityInfos',
|
|
path: '/cityInfos',
|
|
|
name: 'CityInfos',
|
|
name: 'CityInfos',
|
|
|
- component: () => import('../pages/CityInfos')
|
|
|
|
|
|
|
+ component: () =>
|
|
|
|
|
+ import ('../pages/CityInfos')
|
|
|
},
|
|
},
|
|
|
{
|
|
{
|
|
|
path: '/arContentChild',
|
|
path: '/arContentChild',
|
|
|
name: 'ArContentChild',
|
|
name: 'ArContentChild',
|
|
|
- component: () => import('../pages/ArContentChild')
|
|
|
|
|
|
|
+ component: () =>
|
|
|
|
|
+ import ('../pages/ArContentChild')
|
|
|
},
|
|
},
|
|
|
{
|
|
{
|
|
|
path: '/arContentChilds',
|
|
path: '/arContentChilds',
|
|
|
name: 'ArContentChilds',
|
|
name: 'ArContentChilds',
|
|
|
- component: () => import('../pages/ArContentChilds')
|
|
|
|
|
|
|
+ component: () =>
|
|
|
|
|
+ import ('../pages/ArContentChilds')
|
|
|
}
|
|
}
|
|
|
/**INSERT_LOCATION**/
|
|
/**INSERT_LOCATION**/
|
|
|
]
|
|
]
|
|
@@ -361,7 +428,8 @@ const router = new Router({
|
|
|
{
|
|
{
|
|
|
path: '/login',
|
|
path: '/login',
|
|
|
name: 'login',
|
|
name: 'login',
|
|
|
- component: () => import('../pages/Login')
|
|
|
|
|
|
|
+ component: () =>
|
|
|
|
|
+ import ('../pages/Login')
|
|
|
}
|
|
}
|
|
|
]
|
|
]
|
|
|
});
|
|
});
|