更换ico,添加轮播管理,修改查询检索布局

This commit is contained in:
熊丽君
2021-08-23 18:07:54 +08:00
parent 0f5e988dde
commit 370956b8ee
15 changed files with 357 additions and 44 deletions

View File

@ -12,6 +12,7 @@ import accountManagement from './modules/accountManagement';
import customerService from './modules/customerService';
import feedback from './modules/feedback';
import settings from './modules/settings';
import rotation from './modules/rotation';
export const DynamicRoutes = [
// 政策管理
@ -28,6 +29,8 @@ export const DynamicRoutes = [
customerService,
// 意见反馈
feedback,
// 轮播管理
rotation,
// 系统设置
settings
];

View File

@ -0,0 +1,17 @@
import Layout from '@/layout';
// 轮播管理
const nestedRouter = {
path: '',
component: Layout,
redirect: 'index',
children: [
{
path: 'rotation',
component: resolve => require(['@/views/rotation/index'], resolve),
name: 'rotation',
meta: { title: '轮播管理', icon: 'row' }
}
]
};
export default nestedRouter;