This commit is contained in:
jiyongshuai 2020-05-09 11:47:40 +08:00
parent 26d1bf09fd
commit 2a67cb53b4
4 changed files with 5 additions and 5 deletions

View File

@ -24,7 +24,7 @@ export default {
}, },
data() { data() {
return { return {
title: 'Vue Element Admin', title: '测试管理平台',
logo: 'https://wpimg.wallstcn.com/69a1c46c-eb1c-4b46-8bd4-e9e686ef5251.png' logo: 'https://wpimg.wallstcn.com/69a1c46c-eb1c-4b46-8bd4-e9e686ef5251.png'
} }
} }

View File

@ -19,13 +19,13 @@ export default {
* @type {boolean} true | false * @type {boolean} true | false
* @description Whether fix the header * @description Whether fix the header
*/ */
fixedHeader: false, fixedHeader: true,
/** /**
* @type {boolean} true | false * @type {boolean} true | false
* @description Whether show the logo in sidebar * @description Whether show the logo in sidebar
*/ */
sidebarLogo: false, sidebarLogo: true,
/** /**
* @type {string | array} 'production' | ['production','development'] * @type {string | array} 'production' | ['production','development']

View File

@ -120,7 +120,7 @@ export default {
} }
}, },
created() { created() {
if (!this.$i18n.getLocaleMessage('en')[viewName]) { if (!this.$i18n.getLocaleMessage('zh')[viewName]) {
this.$i18n.mergeLocaleMessage('en', local.en) this.$i18n.mergeLocaleMessage('en', local.en)
this.$i18n.mergeLocaleMessage('zh', local.zh) this.$i18n.mergeLocaleMessage('zh', local.zh)
this.$i18n.mergeLocaleMessage('es', local.es) this.$i18n.mergeLocaleMessage('es', local.es)

View File

@ -6,7 +6,7 @@ function resolve(dir) {
return path.join(__dirname, 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 const port = 9527 // dev port
// All configuration item explanations can be find in https://cli.vuejs.org/config/ // All configuration item explanations can be find in https://cli.vuejs.org/config/