refactor(setting.ts): 默认开启侧边栏Logo

This commit is contained in:
郝先瑞
2022-02-27 01:03:48 +08:00
parent 96f74a98a6
commit c4469a767c
2 changed files with 22 additions and 2 deletions

View File

@@ -1,5 +1,24 @@
export default {
// 路由国际化
route: {
dashboard: 'Dashboard'
dashboard: 'Dashboard',
document: 'Document'
},
// 登录页面国际化
login: {
title: 'Youlai Mall Management System',
username: 'Username',
password: 'Password',
login: 'Login',
code: 'Verification Code',
copyright: 'Copyright © 2021 - 2022 youlai.tech All Rights Reserved. ',
icp: ''
},
// 导航栏国际化
navbar:{
dashboard: 'Dashboard',
logout:'Logout',
document:'Document',
gitee:'Gitee'
}
}

View File

@@ -13,7 +13,8 @@ const defaultSettings: DefaultSettings = {
showSettings: true,
tagsView: true,
fixedHeader: false,
sidebarLogo: false,
// 是否显示Logo
sidebarLogo: true,
errorLog: 'production'
}