|
|
@ -1,7 +1,7 @@ |
|
|
import {createRouter, createWebHistory} from 'vue-router'; |
|
|
import {createRouter, createWebHistory} from 'vue-router'; |
|
|
import SystemMessagesPage from '../components/SystemMessagesPage.vue'; |
|
|
import SystemMessagesPage from '../components/SystemMessagesPage.vue'; |
|
|
import SystemMessages from '../components/SystemMesssages.vue'; |
|
|
import SystemMessages from '../components/SystemMesssages.vue'; |
|
|
import Dashboard from '../components/Dashboard.vue'; |
|
|
|
|
|
|
|
|
import Dashboard from '../views/Dashboard.vue'; |
|
|
import SystemLinks from '../components/SystemLinks.vue' |
|
|
import SystemLinks from '../components/SystemLinks.vue' |
|
|
import SystemBannerPage from '../components/SystemBannerPage.vue' |
|
|
import SystemBannerPage from '../components/SystemBannerPage.vue' |
|
|
import SystemBanner from '../components/SystemBanner.vue' |
|
|
import SystemBanner from '../components/SystemBanner.vue' |
|
|
@ -13,26 +13,10 @@ const routes = [ |
|
|
{path: '/systemmessagelist', name: 'SystemMessageList', component: SystemMessagesPage}, |
|
|
{path: '/systemmessagelist', name: 'SystemMessageList', component: SystemMessagesPage}, |
|
|
{path: '/systemlinks', name: 'SystemLinks', component: SystemLinks}, |
|
|
{path: '/systemlinks', name: 'SystemLinks', component: SystemLinks}, |
|
|
{path: '/', name: 'Dashboard', component: Dashboard}, |
|
|
{path: '/', name: 'Dashboard', component: Dashboard}, |
|
|
{ |
|
|
|
|
|
path: '/systembanner', |
|
|
|
|
|
name: 'Home', |
|
|
|
|
|
component: SystemBanner |
|
|
|
|
|
}, |
|
|
|
|
|
{ |
|
|
|
|
|
path: '/SystemBannerPage', |
|
|
|
|
|
name: 'BannerPage', |
|
|
|
|
|
component: SystemBannerPage |
|
|
|
|
|
}, |
|
|
|
|
|
{ |
|
|
|
|
|
path: '/markedsbanners', |
|
|
|
|
|
name: 'MarkedsPage', |
|
|
|
|
|
component: MarkedsBannerPage |
|
|
|
|
|
}, |
|
|
|
|
|
{ |
|
|
|
|
|
path: '/markedsbanner', |
|
|
|
|
|
name: 'MarkedsStart', |
|
|
|
|
|
component: MarkedsBanner |
|
|
|
|
|
} |
|
|
|
|
|
|
|
|
{path: '/systembanner', name: 'Home', component: SystemBanner}, |
|
|
|
|
|
{path: '/systembannerpage', name: 'BannerPage', component: SystemBannerPage}, |
|
|
|
|
|
{path: '/markedsbanners', name: 'MarkedsPage', component: MarkedsBannerPage}, |
|
|
|
|
|
{path: '/markedsbanner', name: 'MarkedsStart', component: MarkedsBanner} |
|
|
]; |
|
|
]; |
|
|
|
|
|
|
|
|
const router = createRouter({ |
|
|
const router = createRouter({ |
|
|
|