-
Page style setting
+
页面UI设置
- Theme Color
+ 主题颜色
- Open Tags-View
+ 打开标记视图
- Fixed Header
+ 固定标题
- Sidebar Logo
+ 展示Logo
diff --git a/views/src/main/resources/vueboot/src/layout/components/Sidebar/Logo.vue b/views/src/main/resources/vueboot/src/layout/components/Sidebar/Logo.vue
index ac0c8d8fa9c43c32e55d0b198421ecaf1b9c3895..f141e78ec157dee3ad39b69cb1159906c6d41d68 100644
--- a/views/src/main/resources/vueboot/src/layout/components/Sidebar/Logo.vue
+++ b/views/src/main/resources/vueboot/src/layout/components/Sidebar/Logo.vue
@@ -24,7 +24,7 @@ export default {
},
data() {
return {
- title: 'Vue Element Admin',
+ title: 'BIC-业务纠察图',
logo: 'https://wpimg.wallstcn.com/69a1c46c-eb1c-4b46-8bd4-e9e686ef5251.png'
}
}
diff --git a/views/src/main/resources/vueboot/src/layout/components/TagsView/index.vue b/views/src/main/resources/vueboot/src/layout/components/TagsView/index.vue
index d2a56e70800fa9efb959ed45a26a696041336a48..474e0f0109867b427963801f5e3ea77be3b9942a 100644
--- a/views/src/main/resources/vueboot/src/layout/components/TagsView/index.vue
+++ b/views/src/main/resources/vueboot/src/layout/components/TagsView/index.vue
@@ -17,10 +17,10 @@
diff --git a/views/src/main/resources/vueboot/src/router/index.js b/views/src/main/resources/vueboot/src/router/index.js
index 2be959d295739ff5730cc49174dcc716332a476b..47fff0321dd0baeea8a8ac2dcc2a362ecd1f324b 100644
--- a/views/src/main/resources/vueboot/src/router/index.js
+++ b/views/src/main/resources/vueboot/src/router/index.js
@@ -79,7 +79,7 @@ export const constantRoutes = [
path: 'dashboard',
component: () => import('@/views/dashboard/index'),
name: 'Dashboard',
- meta: { title: 'Dashboard', icon: 'dashboard', affix: true }
+ meta: { title: '控制台', icon: 'dashboard', affix: true }
}
]
},
@@ -91,7 +91,7 @@ export const constantRoutes = [
path: 'index',
component: () => import('@/views/documentation/index'),
name: 'Documentation',
- meta: { title: 'Documentation', icon: 'documentation', affix: true }
+ meta: { title: '文档', icon: 'documentation', affix: true }
}
]
},
@@ -104,7 +104,7 @@ export const constantRoutes = [
path: 'index',
component: () => import('@/views/guide/index'),
name: 'Guide',
- meta: { title: 'Guide', icon: 'guide', noCache: true }
+ meta: { title: '使用手册', icon: 'guide', noCache: true }
}
]
},
@@ -118,7 +118,7 @@ export const constantRoutes = [
path: 'index',
component: () => import('@/views/profile/index'),
name: 'Profile',
- meta: { title: 'Profile', icon: 'user', noCache: true }
+ meta: { title: '关于我', icon: 'user', noCache: true }
}
]
}
@@ -129,47 +129,47 @@ export const constantRoutes = [
* the routes that need to be dynamically loaded based on user roles
*/
export const asyncRoutes = [
- {
- path: '/permission',
- component: Layout,
- redirect: '/permission/page',
- alwaysShow: true, // will always show the root menu
- name: 'Permission',
- meta: {
- title: 'Permission',
- icon: 'lock',
- roles: ['admin', 'editor'] // you can set roles in root nav
- },
- children: [
- {
- path: 'page',
- component: () => import('@/views/permission/page'),
- name: 'PagePermission',
- meta: {
- title: 'Page Permission',
- roles: ['admin'] // or you can only set roles in sub nav
- }
- },
- {
- path: 'directive',
- component: () => import('@/views/permission/directive'),
- name: 'DirectivePermission',
- meta: {
- title: 'Directive Permission'
- // if do not set roles, means: this page does not require permission
- }
- },
- {
- path: 'role',
- component: () => import('@/views/permission/role'),
- name: 'RolePermission',
- meta: {
- title: 'Role Permission',
- roles: ['admin']
- }
- }
- ]
- },
+ // {
+ // path: '/permission',
+ // component: Layout,
+ // redirect: '/permission/page',
+ // alwaysShow: true, // will always show the root menu
+ // name: 'Permission',
+ // meta: {
+ // title: 'Permission',
+ // icon: 'lock',
+ // roles: ['admin', 'editor'] // you can set roles in root nav
+ // },
+ // children: [
+ // {
+ // path: 'page',
+ // component: () => import('@/views/permission/page'),
+ // name: 'PagePermission',
+ // meta: {
+ // title: 'Page Permission',
+ // roles: ['admin'] // or you can only set roles in sub nav
+ // }
+ // },
+ // {
+ // path: 'directive',
+ // component: () => import('@/views/permission/directive'),
+ // name: 'DirectivePermission',
+ // meta: {
+ // title: 'Directive Permission'
+ // // if do not set roles, means: this page does not require permission
+ // }
+ // },
+ // {
+ // path: 'role',
+ // component: () => import('@/views/permission/role'),
+ // name: 'RolePermission',
+ // meta: {
+ // title: 'Role Permission',
+ // roles: ['admin']
+ // }
+ // }
+ // ]
+ // },
{
path: '/icon',
@@ -179,7 +179,7 @@ export const asyncRoutes = [
path: 'index',
component: () => import('@/views/icons/index'),
name: 'Icons',
- meta: { title: 'Icons', icon: 'icon', noCache: true }
+ meta: { title: '图标', icon: 'icon', noCache: true }
}
]
},
@@ -190,37 +190,37 @@ export const asyncRoutes = [
nestedRouter,
tableRouter,
- {
- path: '/example',
- component: Layout,
- redirect: '/example/list',
- name: 'Example',
- meta: {
- title: 'Example',
- icon: 'el-icon-s-help'
- },
- children: [
- {
- path: 'create',
- component: () => import('@/views/example/create'),
- name: 'CreateArticle',
- meta: { title: 'Create Article', icon: 'edit' }
- },
- {
- path: 'edit/:id(\\d+)',
- component: () => import('@/views/example/edit'),
- name: 'EditArticle',
- meta: { title: 'Edit Article', noCache: true, activeMenu: '/example/list' },
- hidden: true
- },
- {
- path: 'list',
- component: () => import('@/views/example/list'),
- name: 'ArticleList',
- meta: { title: 'Article List', icon: 'list' }
- }
- ]
- },
+ // {
+ // path: '/example',
+ // component: Layout,
+ // redirect: '/example/list',
+ // name: 'Example',
+ // meta: {
+ // title: '示例',
+ // icon: 'el-icon-s-help'
+ // },
+ // children: [
+ // {
+ // path: 'create',
+ // component: () => import('@/views/example/create'),
+ // name: 'CreateArticle',
+ // meta: { title: 'Create Article', icon: 'edit' }
+ // },
+ // {
+ // path: 'edit/:id(\\d+)',
+ // component: () => import('@/views/example/edit'),
+ // name: 'EditArticle',
+ // meta: { title: 'Edit Article', noCache: true, activeMenu: '/example/list' },
+ // hidden: true
+ // },
+ // {
+ // path: 'list',
+ // component: () => import('@/views/example/list'),
+ // name: 'ArticleList',
+ // meta: { title: 'Article List', icon: 'list' }
+ // }
+ // ]
+ // },
{
path: '/tab',
@@ -230,7 +230,7 @@ export const asyncRoutes = [
path: 'index',
component: () => import('@/views/tab/index'),
name: 'Tab',
- meta: { title: 'Tab', icon: 'tab' }
+ meta: { title: 'Tab框', icon: 'tab' }
}
]
},
@@ -241,7 +241,7 @@ export const asyncRoutes = [
redirect: 'noRedirect',
name: 'ErrorPages',
meta: {
- title: 'Error Pages',
+ title: '错误页面',
icon: '404'
},
children: [
@@ -268,7 +268,7 @@ export const asyncRoutes = [
path: 'log',
component: () => import('@/views/error-log/index'),
name: 'ErrorLog',
- meta: { title: 'Error Log', icon: 'bug' }
+ meta: { title: '错误日志', icon: 'bug' }
}
]
},
@@ -279,7 +279,7 @@ export const asyncRoutes = [
redirect: '/excel/export-excel',
name: 'Excel',
meta: {
- title: 'Excel',
+ title: 'Excel表格',
icon: 'excel'
},
children: [
@@ -316,7 +316,7 @@ export const asyncRoutes = [
redirect: '/zip/download',
alwaysShow: true,
name: 'Zip',
- meta: { title: 'Zip', icon: 'zip' },
+ meta: { title: 'Zip压缩导出', icon: 'zip' },
children: [
{
path: 'download',
@@ -336,7 +336,7 @@ export const asyncRoutes = [
path: 'index',
component: () => import('@/views/pdf/index'),
name: 'PDF',
- meta: { title: 'PDF', icon: 'pdf' }
+ meta: { title: 'PDF下载', icon: 'pdf' }
}
]
},
@@ -354,7 +354,7 @@ export const asyncRoutes = [
path: 'index',
component: () => import('@/views/theme/index'),
name: 'Theme',
- meta: { title: 'Theme', icon: 'theme' }
+ meta: { title: '主题', icon: 'theme' }
}
]
},
@@ -367,7 +367,7 @@ export const asyncRoutes = [
path: 'index',
component: () => import('@/views/clipboard/index'),
name: 'ClipboardDemo',
- meta: { title: 'Clipboard', icon: 'clipboard' }
+ meta: { title: '复制', icon: 'clipboard' }
}
]
},
@@ -378,7 +378,7 @@ export const asyncRoutes = [
children: [
{
path: 'https://github.com/PanJiaChen/vue-element-admin',
- meta: { title: 'External Link', icon: 'link' }
+ meta: { title: '外部链接', icon: 'link' }
}
]
},
diff --git a/views/src/main/resources/vueboot/src/router/modules/charts.js b/views/src/main/resources/vueboot/src/router/modules/charts.js
index 29684dec0ed39d7f78c95de3295d08f663ddf6dd..48339613d07f130c1976db14d77eec3ddd96fc61 100644
--- a/views/src/main/resources/vueboot/src/router/modules/charts.js
+++ b/views/src/main/resources/vueboot/src/router/modules/charts.js
@@ -8,7 +8,7 @@ const chartsRouter = {
redirect: 'noRedirect',
name: 'Charts',
meta: {
- title: 'Charts',
+ title: '图表组件',
icon: 'chart'
},
children: [
diff --git a/views/src/main/resources/vueboot/src/router/modules/components.js b/views/src/main/resources/vueboot/src/router/modules/components.js
index 0da96f97683489a169e72e9180e1cd7ec98f8701..1a79bea2d08bb501550b99eaf1185c6fb0b5150a 100644
--- a/views/src/main/resources/vueboot/src/router/modules/components.js
+++ b/views/src/main/resources/vueboot/src/router/modules/components.js
@@ -8,7 +8,7 @@ const componentsRouter = {
redirect: 'noRedirect',
name: 'ComponentDemo',
meta: {
- title: 'Components',
+ title: '科研组件',
icon: 'component'
},
children: [
diff --git a/views/src/main/resources/vueboot/src/router/modules/nested.js b/views/src/main/resources/vueboot/src/router/modules/nested.js
index 48033ed19781c7fa28d78bdb67c5542a620b2a48..26985c75bc03eaaa72dc1a3186e5f578220c3ac2 100644
--- a/views/src/main/resources/vueboot/src/router/modules/nested.js
+++ b/views/src/main/resources/vueboot/src/router/modules/nested.js
@@ -8,7 +8,7 @@ const nestedRouter = {
redirect: '/nested/menu1/menu1-1',
name: 'Nested',
meta: {
- title: 'Nested Routes',
+ title: '嵌套路由',
icon: 'nested'
},
children: [
diff --git a/views/src/main/resources/vueboot/src/router/modules/table.js b/views/src/main/resources/vueboot/src/router/modules/table.js
index ec28c527c82184908cde14c64fbe0607d0eaf49a..8323cfb107bbfc2d3ea2c2d64af4578bc9704228 100644
--- a/views/src/main/resources/vueboot/src/router/modules/table.js
+++ b/views/src/main/resources/vueboot/src/router/modules/table.js
@@ -8,7 +8,7 @@ const tableRouter = {
redirect: '/table/complex-table',
name: 'Table',
meta: {
- title: 'Table',
+ title: '表格',
icon: 'table'
},
children: [
diff --git a/views/src/main/resources/vueboot/src/settings.js b/views/src/main/resources/vueboot/src/settings.js
index 1ebc7f293553abac09b984d8cc3174db1e1fd16b..456000004121558aa59f907a04505b9857bea002 100644
--- a/views/src/main/resources/vueboot/src/settings.js
+++ b/views/src/main/resources/vueboot/src/settings.js
@@ -1,5 +1,5 @@
module.exports = {
- title: 'Vue Element Admin',
+ title: 'BIC-业务纠察图',
/**
* @type {boolean} true | false
@@ -23,7 +23,7 @@ module.exports = {
* @type {boolean} true | false
* @description Whether show the logo in sidebar
*/
- sidebarLogo: false,
+ sidebarLogo: true,
/**
* @type {string | array} 'production' | ['production', 'development']
diff --git a/views/src/main/resources/vueboot/src/utils/get-page-title.js b/views/src/main/resources/vueboot/src/utils/get-page-title.js
index cab7fd912b18915d064278c366941f2f44ac937e..55fed578dbcf65c7a8c6ca7197f04d8b78f60df4 100644
--- a/views/src/main/resources/vueboot/src/utils/get-page-title.js
+++ b/views/src/main/resources/vueboot/src/utils/get-page-title.js
@@ -1,6 +1,6 @@
import defaultSettings from '@/settings'
-const title = defaultSettings.title || 'Vue Element Admin'
+const title = defaultSettings.title || 'BIC-业务纠察图'
export default function getPageTitle(pageTitle) {
if (pageTitle) {
diff --git a/views/src/main/resources/vueboot/src/views/dashboard/admin/components/BarChart.vue b/views/src/main/resources/vueboot/src/views/dashboard/admin/components/BarChart.vue
index be0af34f841d40aeaaa4ff25bc6bf5d6afb256a1..7d4f6d0083788e79bfdab33df4056bb0f296b364 100644
--- a/views/src/main/resources/vueboot/src/views/dashboard/admin/components/BarChart.vue
+++ b/views/src/main/resources/vueboot/src/views/dashboard/admin/components/BarChart.vue
@@ -62,7 +62,7 @@ export default {
},
xAxis: [{
type: 'category',
- data: ['Mon', 'Tue', 'Wed', 'Thu', 'Fri', 'Sat', 'Sun'],
+ data: ['周一', '周二', '周三', '周四', '周五', '周六', '周日'],
axisTick: {
alignWithLabel: true
}
@@ -74,21 +74,21 @@ export default {
}
}],
series: [{
- name: 'pageA',
+ name: '前端指数',
type: 'bar',
stack: 'vistors',
barWidth: '60%',
data: [79, 52, 200, 334, 390, 330, 220],
animationDuration
}, {
- name: 'pageB',
+ name: 'Java指数',
type: 'bar',
stack: 'vistors',
barWidth: '60%',
data: [80, 52, 200, 334, 390, 330, 220],
animationDuration
}, {
- name: 'pageC',
+ name: 'JavaScript指数',
type: 'bar',
stack: 'vistors',
barWidth: '60%',
diff --git a/views/src/main/resources/vueboot/src/views/dashboard/admin/components/LineChart.vue b/views/src/main/resources/vueboot/src/views/dashboard/admin/components/LineChart.vue
index e654168dd32191ffd232f3ab3bed942fbee0fa37..8badd7769951cf3a1a9472008140f1311c0d706b 100644
--- a/views/src/main/resources/vueboot/src/views/dashboard/admin/components/LineChart.vue
+++ b/views/src/main/resources/vueboot/src/views/dashboard/admin/components/LineChart.vue
@@ -64,7 +64,7 @@ export default {
setOptions({ expectedData, actualData } = {}) {
this.chart.setOption({
xAxis: {
- data: ['Mon', 'Tue', 'Wed', 'Thu', 'Fri', 'Sat', 'Sun'],
+ data: ['周一', '周二', '周三', '周四', '周五', '周六', '周日'],
boundaryGap: false,
axisTick: {
show: false
@@ -90,10 +90,10 @@ export default {
}
},
legend: {
- data: ['expected', 'actual']
+ data: ['智障嘻哈', '傻逼说唱']
},
series: [{
- name: 'expected', itemStyle: {
+ name: '傻逼说唱', itemStyle: {
normal: {
color: '#FF005A',
lineStyle: {
@@ -109,7 +109,7 @@ export default {
animationEasing: 'cubicInOut'
},
{
- name: 'actual',
+ name: '智障嘻哈',
smooth: true,
type: 'line',
itemStyle: {
diff --git a/views/src/main/resources/vueboot/src/views/dashboard/admin/components/PanelGroup.vue b/views/src/main/resources/vueboot/src/views/dashboard/admin/components/PanelGroup.vue
index 589236ed5fc61f27b5de267f31d4eb4a4cd42a1c..6e1aa1c7c7b466d49880ca808556a893cd1d0864 100644
--- a/views/src/main/resources/vueboot/src/views/dashboard/admin/components/PanelGroup.vue
+++ b/views/src/main/resources/vueboot/src/views/dashboard/admin/components/PanelGroup.vue
@@ -7,7 +7,7 @@