2021-07-16 15:03:45 +08:00
|
|
|
import Vue from 'vue';
|
|
|
|
import Router from 'vue-router';
|
2021-07-15 11:56:51 +08:00
|
|
|
|
2021-07-16 15:03:45 +08:00
|
|
|
Vue.use(Router);
|
2021-07-15 11:56:51 +08:00
|
|
|
|
|
|
|
/* Router Modules */
|
2021-07-16 15:03:45 +08:00
|
|
|
import policyPage from './modules/policyPage';
|
2021-11-04 11:49:40 +08:00
|
|
|
// import configPage from './modules/configPage';
|
2021-07-16 17:01:59 +08:00
|
|
|
import transferPage from './modules/transferPage';
|
2021-07-20 09:55:49 +08:00
|
|
|
import customerManagement from './modules/customerManagement';
|
|
|
|
import accountManagement from './modules/accountManagement';
|
|
|
|
import customerService from './modules/customerService';
|
2021-08-09 14:57:58 +08:00
|
|
|
import feedback from './modules/feedback';
|
2021-08-12 11:39:59 +08:00
|
|
|
import settings from './modules/settings';
|
2021-10-27 13:35:05 +08:00
|
|
|
// import rotation from './modules/rotation';
|
|
|
|
// import aboutUs from './modules/aboutUs';
|
|
|
|
import asdmSetting from './modules/asdmSetting';
|
2021-07-15 11:56:51 +08:00
|
|
|
|
|
|
|
export const DynamicRoutes = [
|
2021-07-16 15:03:45 +08:00
|
|
|
// 政策管理
|
2021-07-15 11:56:51 +08:00
|
|
|
policyPage,
|
2021-07-16 15:03:45 +08:00
|
|
|
// 前端配置
|
2021-11-04 11:49:40 +08:00
|
|
|
// configPage,
|
2021-07-16 17:01:59 +08:00
|
|
|
// 技术转移
|
2021-07-20 09:55:49 +08:00
|
|
|
transferPage,
|
|
|
|
// 客户管理
|
|
|
|
customerManagement,
|
|
|
|
// 账号管理
|
|
|
|
accountManagement,
|
|
|
|
// 客服中心
|
2021-08-09 14:57:58 +08:00
|
|
|
customerService,
|
|
|
|
// 意见反馈
|
2021-08-12 11:39:59 +08:00
|
|
|
feedback,
|
2021-08-23 18:07:54 +08:00
|
|
|
// 轮播管理
|
2021-10-27 13:35:05 +08:00
|
|
|
// rotation,
|
2021-10-14 14:54:10 +08:00
|
|
|
// 关于我们
|
2021-10-27 13:35:05 +08:00
|
|
|
// aboutUs,
|
|
|
|
// 管理端设置
|
|
|
|
asdmSetting,
|
2021-08-12 11:39:59 +08:00
|
|
|
// 系统设置
|
|
|
|
settings
|
2021-07-16 15:03:45 +08:00
|
|
|
];
|
2021-07-15 11:56:51 +08:00
|
|
|
|
2021-07-16 15:03:45 +08:00
|
|
|
export default DynamicRoutes;
|