diff --git a/src/router/index.js b/src/router/index.js
index c6c8081..646647f 100644
--- a/src/router/index.js
+++ b/src/router/index.js
@@ -14,6 +14,7 @@
import { suphandleRouters } from './modules/suphandle'
import { commonRouters } from './modules/common'
import { controlRouters } from './modules/control'
+import { baseRouters } from './modules/base'
/**
* hidden: true if `hidden:true` will not show in the sidebar(default is false)
@@ -96,5 +97,6 @@
...systemRouters,
...commenetRouters,
...controlRouters,
+ ...baseRouters,
{ path: '*', redirect: '/404', hidden: true, meta: {}}
]
diff --git a/src/router/index.js b/src/router/index.js
index c6c8081..646647f 100644
--- a/src/router/index.js
+++ b/src/router/index.js
@@ -14,6 +14,7 @@
import { suphandleRouters } from './modules/suphandle'
import { commonRouters } from './modules/common'
import { controlRouters } from './modules/control'
+import { baseRouters } from './modules/base'
/**
* hidden: true if `hidden:true` will not show in the sidebar(default is false)
@@ -96,5 +97,6 @@
...systemRouters,
...commenetRouters,
...controlRouters,
+ ...baseRouters,
{ path: '*', redirect: '/404', hidden: true, meta: {}}
]
diff --git a/src/router/modules/base.js b/src/router/modules/base.js
new file mode 100644
index 0000000..5812db4
--- /dev/null
+++ b/src/router/modules/base.js
@@ -0,0 +1,35 @@
+
+import SupLayout from '../../views/layout/SupLayout'
+export const baseRouters = [
+ {
+ path: '/base',
+ name: 'base',
+ redirect: '/baseSource',
+ hidden: true,
+ meta: {
+ title: '基础资源子系统',
+ permission: ['/base'],
+ isSys: true
+ }
+ },
+ {
+ path: '/baseSource',
+ component: SupLayout,
+ redirect: '/baseSourceMain',
+ name: 'BaseSource',
+ alwaysShow: true,
+ meta: {
+ title: '基础资源',
+ permission: ['/baseSource'],
+ sys: '/base'
+ },
+ children: [
+ {
+ path: '/baseSourceMain',
+ component: () => import('@/views/baseSource/baseSource'),
+ name: 'BaseSourceMain',
+ meta: { title: '基础资源', icon: '', belongSys: '', permission: '/baseSourceMain' }
+ }
+ ]
+ }
+]
diff --git a/src/router/index.js b/src/router/index.js
index c6c8081..646647f 100644
--- a/src/router/index.js
+++ b/src/router/index.js
@@ -14,6 +14,7 @@
import { suphandleRouters } from './modules/suphandle'
import { commonRouters } from './modules/common'
import { controlRouters } from './modules/control'
+import { baseRouters } from './modules/base'
/**
* hidden: true if `hidden:true` will not show in the sidebar(default is false)
@@ -96,5 +97,6 @@
...systemRouters,
...commenetRouters,
...controlRouters,
+ ...baseRouters,
{ path: '*', redirect: '/404', hidden: true, meta: {}}
]
diff --git a/src/router/modules/base.js b/src/router/modules/base.js
new file mode 100644
index 0000000..5812db4
--- /dev/null
+++ b/src/router/modules/base.js
@@ -0,0 +1,35 @@
+
+import SupLayout from '../../views/layout/SupLayout'
+export const baseRouters = [
+ {
+ path: '/base',
+ name: 'base',
+ redirect: '/baseSource',
+ hidden: true,
+ meta: {
+ title: '基础资源子系统',
+ permission: ['/base'],
+ isSys: true
+ }
+ },
+ {
+ path: '/baseSource',
+ component: SupLayout,
+ redirect: '/baseSourceMain',
+ name: 'BaseSource',
+ alwaysShow: true,
+ meta: {
+ title: '基础资源',
+ permission: ['/baseSource'],
+ sys: '/base'
+ },
+ children: [
+ {
+ path: '/baseSourceMain',
+ component: () => import('@/views/baseSource/baseSource'),
+ name: 'BaseSourceMain',
+ meta: { title: '基础资源', icon: '', belongSys: '', permission: '/baseSourceMain' }
+ }
+ ]
+ }
+]
diff --git a/src/views/baseSource/baseSource.vue b/src/views/baseSource/baseSource.vue
new file mode 100644
index 0000000..be2855c
--- /dev/null
+++ b/src/views/baseSource/baseSource.vue
@@ -0,0 +1,20 @@
+
+
+
+
+
+
+
+
+
diff --git a/src/router/index.js b/src/router/index.js
index c6c8081..646647f 100644
--- a/src/router/index.js
+++ b/src/router/index.js
@@ -14,6 +14,7 @@
import { suphandleRouters } from './modules/suphandle'
import { commonRouters } from './modules/common'
import { controlRouters } from './modules/control'
+import { baseRouters } from './modules/base'
/**
* hidden: true if `hidden:true` will not show in the sidebar(default is false)
@@ -96,5 +97,6 @@
...systemRouters,
...commenetRouters,
...controlRouters,
+ ...baseRouters,
{ path: '*', redirect: '/404', hidden: true, meta: {}}
]
diff --git a/src/router/modules/base.js b/src/router/modules/base.js
new file mode 100644
index 0000000..5812db4
--- /dev/null
+++ b/src/router/modules/base.js
@@ -0,0 +1,35 @@
+
+import SupLayout from '../../views/layout/SupLayout'
+export const baseRouters = [
+ {
+ path: '/base',
+ name: 'base',
+ redirect: '/baseSource',
+ hidden: true,
+ meta: {
+ title: '基础资源子系统',
+ permission: ['/base'],
+ isSys: true
+ }
+ },
+ {
+ path: '/baseSource',
+ component: SupLayout,
+ redirect: '/baseSourceMain',
+ name: 'BaseSource',
+ alwaysShow: true,
+ meta: {
+ title: '基础资源',
+ permission: ['/baseSource'],
+ sys: '/base'
+ },
+ children: [
+ {
+ path: '/baseSourceMain',
+ component: () => import('@/views/baseSource/baseSource'),
+ name: 'BaseSourceMain',
+ meta: { title: '基础资源', icon: '', belongSys: '', permission: '/baseSourceMain' }
+ }
+ ]
+ }
+]
diff --git a/src/views/baseSource/baseSource.vue b/src/views/baseSource/baseSource.vue
new file mode 100644
index 0000000..be2855c
--- /dev/null
+++ b/src/views/baseSource/baseSource.vue
@@ -0,0 +1,20 @@
+
+
+
+
+
+
+
+
+
diff --git a/src/views/otherComment/deptHandle/deptHandleChart4Sup.vue b/src/views/otherComment/deptHandle/deptHandleChart4Sup.vue
index 67c0751..806edb1 100644
--- a/src/views/otherComment/deptHandle/deptHandleChart4Sup.vue
+++ b/src/views/otherComment/deptHandle/deptHandleChart4Sup.vue
@@ -35,7 +35,13 @@
legend: {
type: 'scroll',
bottom: 0,
- backgroundColor: '#ccc'
+ textStyle: {
+ color: '#f0f0f0'
+ },
+ pageTextStyle: {
+ color: '#f0f0f0'
+ },
+ pageIconColor: '#FEFEFE'
},
tooltip: {
trigger: 'axis',
diff --git a/src/router/index.js b/src/router/index.js
index c6c8081..646647f 100644
--- a/src/router/index.js
+++ b/src/router/index.js
@@ -14,6 +14,7 @@
import { suphandleRouters } from './modules/suphandle'
import { commonRouters } from './modules/common'
import { controlRouters } from './modules/control'
+import { baseRouters } from './modules/base'
/**
* hidden: true if `hidden:true` will not show in the sidebar(default is false)
@@ -96,5 +97,6 @@
...systemRouters,
...commenetRouters,
...controlRouters,
+ ...baseRouters,
{ path: '*', redirect: '/404', hidden: true, meta: {}}
]
diff --git a/src/router/modules/base.js b/src/router/modules/base.js
new file mode 100644
index 0000000..5812db4
--- /dev/null
+++ b/src/router/modules/base.js
@@ -0,0 +1,35 @@
+
+import SupLayout from '../../views/layout/SupLayout'
+export const baseRouters = [
+ {
+ path: '/base',
+ name: 'base',
+ redirect: '/baseSource',
+ hidden: true,
+ meta: {
+ title: '基础资源子系统',
+ permission: ['/base'],
+ isSys: true
+ }
+ },
+ {
+ path: '/baseSource',
+ component: SupLayout,
+ redirect: '/baseSourceMain',
+ name: 'BaseSource',
+ alwaysShow: true,
+ meta: {
+ title: '基础资源',
+ permission: ['/baseSource'],
+ sys: '/base'
+ },
+ children: [
+ {
+ path: '/baseSourceMain',
+ component: () => import('@/views/baseSource/baseSource'),
+ name: 'BaseSourceMain',
+ meta: { title: '基础资源', icon: '', belongSys: '', permission: '/baseSourceMain' }
+ }
+ ]
+ }
+]
diff --git a/src/views/baseSource/baseSource.vue b/src/views/baseSource/baseSource.vue
new file mode 100644
index 0000000..be2855c
--- /dev/null
+++ b/src/views/baseSource/baseSource.vue
@@ -0,0 +1,20 @@
+
+
+
+
+
+
+
+
+
diff --git a/src/views/otherComment/deptHandle/deptHandleChart4Sup.vue b/src/views/otherComment/deptHandle/deptHandleChart4Sup.vue
index 67c0751..806edb1 100644
--- a/src/views/otherComment/deptHandle/deptHandleChart4Sup.vue
+++ b/src/views/otherComment/deptHandle/deptHandleChart4Sup.vue
@@ -35,7 +35,13 @@
legend: {
type: 'scroll',
bottom: 0,
- backgroundColor: '#ccc'
+ textStyle: {
+ color: '#f0f0f0'
+ },
+ pageTextStyle: {
+ color: '#f0f0f0'
+ },
+ pageIconColor: '#FEFEFE'
},
tooltip: {
trigger: 'axis',
diff --git a/src/views/otherComment/highFreq/highFreqChart4Sup.vue b/src/views/otherComment/highFreq/highFreqChart4Sup.vue
index 7d01f82..9b9b25d 100644
--- a/src/views/otherComment/highFreq/highFreqChart4Sup.vue
+++ b/src/views/otherComment/highFreq/highFreqChart4Sup.vue
@@ -50,7 +50,13 @@
legend: {
type: 'scroll',
bottom: 0,
- backgroundColor: '#ccc'
+ textStyle: {
+ color: '#f0f0f0'
+ },
+ pageTextStyle: {
+ color: '#f0f0f0'
+ },
+ pageIconColor: '#FEFEFE'
},
toolbox: {
show: true,
diff --git a/src/router/index.js b/src/router/index.js
index c6c8081..646647f 100644
--- a/src/router/index.js
+++ b/src/router/index.js
@@ -14,6 +14,7 @@
import { suphandleRouters } from './modules/suphandle'
import { commonRouters } from './modules/common'
import { controlRouters } from './modules/control'
+import { baseRouters } from './modules/base'
/**
* hidden: true if `hidden:true` will not show in the sidebar(default is false)
@@ -96,5 +97,6 @@
...systemRouters,
...commenetRouters,
...controlRouters,
+ ...baseRouters,
{ path: '*', redirect: '/404', hidden: true, meta: {}}
]
diff --git a/src/router/modules/base.js b/src/router/modules/base.js
new file mode 100644
index 0000000..5812db4
--- /dev/null
+++ b/src/router/modules/base.js
@@ -0,0 +1,35 @@
+
+import SupLayout from '../../views/layout/SupLayout'
+export const baseRouters = [
+ {
+ path: '/base',
+ name: 'base',
+ redirect: '/baseSource',
+ hidden: true,
+ meta: {
+ title: '基础资源子系统',
+ permission: ['/base'],
+ isSys: true
+ }
+ },
+ {
+ path: '/baseSource',
+ component: SupLayout,
+ redirect: '/baseSourceMain',
+ name: 'BaseSource',
+ alwaysShow: true,
+ meta: {
+ title: '基础资源',
+ permission: ['/baseSource'],
+ sys: '/base'
+ },
+ children: [
+ {
+ path: '/baseSourceMain',
+ component: () => import('@/views/baseSource/baseSource'),
+ name: 'BaseSourceMain',
+ meta: { title: '基础资源', icon: '', belongSys: '', permission: '/baseSourceMain' }
+ }
+ ]
+ }
+]
diff --git a/src/views/baseSource/baseSource.vue b/src/views/baseSource/baseSource.vue
new file mode 100644
index 0000000..be2855c
--- /dev/null
+++ b/src/views/baseSource/baseSource.vue
@@ -0,0 +1,20 @@
+
+
+
+
+
+
+
+
+
diff --git a/src/views/otherComment/deptHandle/deptHandleChart4Sup.vue b/src/views/otherComment/deptHandle/deptHandleChart4Sup.vue
index 67c0751..806edb1 100644
--- a/src/views/otherComment/deptHandle/deptHandleChart4Sup.vue
+++ b/src/views/otherComment/deptHandle/deptHandleChart4Sup.vue
@@ -35,7 +35,13 @@
legend: {
type: 'scroll',
bottom: 0,
- backgroundColor: '#ccc'
+ textStyle: {
+ color: '#f0f0f0'
+ },
+ pageTextStyle: {
+ color: '#f0f0f0'
+ },
+ pageIconColor: '#FEFEFE'
},
tooltip: {
trigger: 'axis',
diff --git a/src/views/otherComment/highFreq/highFreqChart4Sup.vue b/src/views/otherComment/highFreq/highFreqChart4Sup.vue
index 7d01f82..9b9b25d 100644
--- a/src/views/otherComment/highFreq/highFreqChart4Sup.vue
+++ b/src/views/otherComment/highFreq/highFreqChart4Sup.vue
@@ -50,7 +50,13 @@
legend: {
type: 'scroll',
bottom: 0,
- backgroundColor: '#ccc'
+ textStyle: {
+ color: '#f0f0f0'
+ },
+ pageTextStyle: {
+ color: '#f0f0f0'
+ },
+ pageIconColor: '#FEFEFE'
},
toolbox: {
show: true,
diff --git a/src/views/otherComment/sourceStatis/sourceStatisChart4Sup.vue b/src/views/otherComment/sourceStatis/sourceStatisChart4Sup.vue
index f949dcb..18aefe5 100644
--- a/src/views/otherComment/sourceStatis/sourceStatisChart4Sup.vue
+++ b/src/views/otherComment/sourceStatis/sourceStatisChart4Sup.vue
@@ -46,7 +46,13 @@
legend: {
type: 'scroll',
bottom: 0,
- backgroundColor: '#ccc'
+ textStyle: {
+ color: '#f0f0f0'
+ },
+ pageTextStyle: {
+ color: '#f0f0f0'
+ },
+ pageIconColor: '#FEFEFE'
},
tooltip: {
show: true
diff --git a/src/router/index.js b/src/router/index.js
index c6c8081..646647f 100644
--- a/src/router/index.js
+++ b/src/router/index.js
@@ -14,6 +14,7 @@
import { suphandleRouters } from './modules/suphandle'
import { commonRouters } from './modules/common'
import { controlRouters } from './modules/control'
+import { baseRouters } from './modules/base'
/**
* hidden: true if `hidden:true` will not show in the sidebar(default is false)
@@ -96,5 +97,6 @@
...systemRouters,
...commenetRouters,
...controlRouters,
+ ...baseRouters,
{ path: '*', redirect: '/404', hidden: true, meta: {}}
]
diff --git a/src/router/modules/base.js b/src/router/modules/base.js
new file mode 100644
index 0000000..5812db4
--- /dev/null
+++ b/src/router/modules/base.js
@@ -0,0 +1,35 @@
+
+import SupLayout from '../../views/layout/SupLayout'
+export const baseRouters = [
+ {
+ path: '/base',
+ name: 'base',
+ redirect: '/baseSource',
+ hidden: true,
+ meta: {
+ title: '基础资源子系统',
+ permission: ['/base'],
+ isSys: true
+ }
+ },
+ {
+ path: '/baseSource',
+ component: SupLayout,
+ redirect: '/baseSourceMain',
+ name: 'BaseSource',
+ alwaysShow: true,
+ meta: {
+ title: '基础资源',
+ permission: ['/baseSource'],
+ sys: '/base'
+ },
+ children: [
+ {
+ path: '/baseSourceMain',
+ component: () => import('@/views/baseSource/baseSource'),
+ name: 'BaseSourceMain',
+ meta: { title: '基础资源', icon: '', belongSys: '', permission: '/baseSourceMain' }
+ }
+ ]
+ }
+]
diff --git a/src/views/baseSource/baseSource.vue b/src/views/baseSource/baseSource.vue
new file mode 100644
index 0000000..be2855c
--- /dev/null
+++ b/src/views/baseSource/baseSource.vue
@@ -0,0 +1,20 @@
+
+
+
+
+
+
+
+
+
diff --git a/src/views/otherComment/deptHandle/deptHandleChart4Sup.vue b/src/views/otherComment/deptHandle/deptHandleChart4Sup.vue
index 67c0751..806edb1 100644
--- a/src/views/otherComment/deptHandle/deptHandleChart4Sup.vue
+++ b/src/views/otherComment/deptHandle/deptHandleChart4Sup.vue
@@ -35,7 +35,13 @@
legend: {
type: 'scroll',
bottom: 0,
- backgroundColor: '#ccc'
+ textStyle: {
+ color: '#f0f0f0'
+ },
+ pageTextStyle: {
+ color: '#f0f0f0'
+ },
+ pageIconColor: '#FEFEFE'
},
tooltip: {
trigger: 'axis',
diff --git a/src/views/otherComment/highFreq/highFreqChart4Sup.vue b/src/views/otherComment/highFreq/highFreqChart4Sup.vue
index 7d01f82..9b9b25d 100644
--- a/src/views/otherComment/highFreq/highFreqChart4Sup.vue
+++ b/src/views/otherComment/highFreq/highFreqChart4Sup.vue
@@ -50,7 +50,13 @@
legend: {
type: 'scroll',
bottom: 0,
- backgroundColor: '#ccc'
+ textStyle: {
+ color: '#f0f0f0'
+ },
+ pageTextStyle: {
+ color: '#f0f0f0'
+ },
+ pageIconColor: '#FEFEFE'
},
toolbox: {
show: true,
diff --git a/src/views/otherComment/sourceStatis/sourceStatisChart4Sup.vue b/src/views/otherComment/sourceStatis/sourceStatisChart4Sup.vue
index f949dcb..18aefe5 100644
--- a/src/views/otherComment/sourceStatis/sourceStatisChart4Sup.vue
+++ b/src/views/otherComment/sourceStatis/sourceStatisChart4Sup.vue
@@ -46,7 +46,13 @@
legend: {
type: 'scroll',
bottom: 0,
- backgroundColor: '#ccc'
+ textStyle: {
+ color: '#f0f0f0'
+ },
+ pageTextStyle: {
+ color: '#f0f0f0'
+ },
+ pageIconColor: '#FEFEFE'
},
tooltip: {
show: true
diff --git a/src/views/supControl/supControl.vue b/src/views/supControl/supControl.vue
index 9f41313..6859f75 100644
--- a/src/views/supControl/supControl.vue
+++ b/src/views/supControl/supControl.vue
@@ -5,7 +5,7 @@
-
+
@@ -797,41 +797,42 @@