From 2a67cb53b49cfc03285c8a41ddb7e908c51cc3c7 Mon Sep 17 00:00:00 2001 From: jiyongshuai Date: Sat, 9 May 2020 11:47:40 +0800 Subject: [PATCH] fix --- src/layout/components/Sidebar/Logo.vue | 2 +- src/settings.js | 4 ++-- src/views/i18n-demo/index.vue | 2 +- vue.config.js | 2 +- 4 files changed, 5 insertions(+), 5 deletions(-) diff --git a/src/layout/components/Sidebar/Logo.vue b/src/layout/components/Sidebar/Logo.vue index ac0c8d8f..bef5cdfb 100644 --- a/src/layout/components/Sidebar/Logo.vue +++ b/src/layout/components/Sidebar/Logo.vue @@ -24,7 +24,7 @@ export default { }, data() { return { - title: 'Vue Element Admin', + title: '测试管理平台', logo: 'https://wpimg.wallstcn.com/69a1c46c-eb1c-4b46-8bd4-e9e686ef5251.png' } } diff --git a/src/settings.js b/src/settings.js index d6300efc..fcf7d0d9 100644 --- a/src/settings.js +++ b/src/settings.js @@ -19,13 +19,13 @@ export default { * @type {boolean} true | false * @description Whether fix the header */ - fixedHeader: false, + fixedHeader: true, /** * @type {boolean} true | false * @description Whether show the logo in sidebar */ - sidebarLogo: false, + sidebarLogo: true, /** * @type {string | array} 'production' | ['production','development'] diff --git a/src/views/i18n-demo/index.vue b/src/views/i18n-demo/index.vue index 60c9a80e..2da5b82d 100644 --- a/src/views/i18n-demo/index.vue +++ b/src/views/i18n-demo/index.vue @@ -120,7 +120,7 @@ export default { } }, created() { - if (!this.$i18n.getLocaleMessage('en')[viewName]) { + if (!this.$i18n.getLocaleMessage('zh')[viewName]) { this.$i18n.mergeLocaleMessage('en', local.en) this.$i18n.mergeLocaleMessage('zh', local.zh) this.$i18n.mergeLocaleMessage('es', local.es) diff --git a/vue.config.js b/vue.config.js index 7b9d2dbb..2a353d8a 100644 --- a/vue.config.js +++ b/vue.config.js @@ -6,7 +6,7 @@ function resolve(dir) { return path.join(__dirname, dir) } -const name = pkg.name || 'vue-element-admin' // page title +const name = pkg.name || '测试管理平台' // page title const port = 9527 // dev port // All configuration item explanations can be find in https://cli.vuejs.org/config/