fix: fix missing cache of refresh page

This commit is contained in:
nebv
2020-10-13 22:22:04 +08:00
parent bbfb06f0ad
commit 02d6a39402
12 changed files with 54 additions and 40 deletions

View File

@@ -10,7 +10,8 @@ import { PermissionModeEnum } from '/@/enums/appEnum';
// ===========================
// ==========module import====
// ===========================
import dashboardDemo from './modules/demo/dashboard';
import dashboard from './modules/dashboard';
import exceptionDemo from './modules/demo/exception';
import iframeDemo from './modules/demo/iframe';
import compDemo from './modules/demo/comp';
@@ -22,7 +23,7 @@ import formDemo from './modules/demo/form';
import treeDemo from './modules/demo/tree';
const menuModules = [
dashboardDemo,
dashboard,
featDemo,
exceptionDemo,
iframeDemo,

View File

@@ -5,6 +5,10 @@ const menu: MenuModule = {
name: '图表',
path: '/charts',
children: [
{
path: '/apexChart',
name: 'ApexChart',
},
{
path: '/echarts',
name: 'Echarts',
@@ -23,10 +27,6 @@ const menu: MenuModule = {
},
],
},
{
path: '/apexChart',
name: 'ApexChart',
},
],
},
};