'admin-21.06.19:修复诸多问题,具体查看CHANGELOG.md文件1.04更新日志'

This commit is contained in:
lyt-Top
2021-06-19 18:27:45 +08:00
parent 1574f1ace9
commit c4f33fbc23
6 changed files with 24 additions and 10 deletions

View File

@ -2,6 +2,14 @@
🎉🎉🔥 `vue-prev-admin` 基于 vue2.x + webpack + element ui适配手机、平板、pc 的后台开源免费模板库vue3.x 请切换 master 分支)
## 1.0.4
`2021.06.19`
- 🌟 更新 依赖更新最新版本
- 🎉 新增 项目仓库地址
- 🐞 修复 鼠标移入顶部用户信息栏 开/关全屏 文字反向问题
## 1.0.3
`2021.06.02`

View File

@ -1,6 +1,6 @@
{
"name": "vue-prev-admin",
"version": "1.0.3",
"version": "1.0.4",
"private": true,
"scripts": {
"dev": "vue-cli-service serve",
@ -11,14 +11,14 @@
"dependencies": {
"axios": "^0.21.1",
"clipboard": "^2.0.8",
"core-js": "^3.13.1",
"core-js": "^3.14.0",
"countup.js": "^2.0.7",
"echarts": "^5.1.1",
"echarts": "^5.1.2",
"element-ui": "^2.15.2",
"nprogress": "^0.2.0",
"screenfull": "^5.1.0",
"sign-canvas": "^1.1.4",
"vue": "^2.6.13",
"vue": "^2.6.14",
"vue-i18n": "^8.24.4",
"vue-particles": "^1.0.9",
"vue-router": "^3.5.1",
@ -26,17 +26,17 @@
"vuex": "^3.6.2"
},
"devDependencies": {
"@eslint/eslintrc": "^0.4.1",
"@eslint/eslintrc": "^0.4.2",
"@vue/cli-plugin-babel": "~4.5.13",
"@vue/cli-plugin-eslint": "~4.5.13",
"@vue/cli-plugin-router": "~4.5.13",
"@vue/cli-plugin-vuex": "~4.5.13",
"@vue/cli-service": "~4.5.13",
"babel-eslint": "^10.1.0",
"eslint": "^7.27.0",
"eslint-plugin-vue": "^7.10.0",
"sass": "^1.34.0",
"eslint": "^7.29.0",
"eslint-plugin-vue": "^7.11.1",
"sass": "^1.35.1",
"sass-loader": "^10.1.1",
"vue-template-compiler": "^2.6.13"
"vue-template-compiler": "^2.6.14"
}
}

View File

@ -68,6 +68,7 @@ export default {
dropdown3: '404',
dropdown4: '401',
dropdown5: 'Log out',
dropdown6: 'Code warehouse',
searchPlaceholder: 'Menu search: support Chinese, routing path',
newTitle: 'notice',
newBtn: 'All read',

View File

@ -68,6 +68,7 @@ export default {
dropdown3: '404',
dropdown4: '401',
dropdown5: '退出登录',
dropdown6: '代码仓库',
searchPlaceholder: '菜单搜索:支持中文、路由路径',
newTitle: '通知',
newBtn: '全部已读',

View File

@ -68,6 +68,7 @@ export default {
dropdown3: '404',
dropdown4: '401',
dropdown5: '登出',
dropdown6: '程式碼倉庫',
searchPlaceholder: '選單蒐索:支援中文、路由路徑',
newTitle: '通知',
newBtn: '全部已讀',

View File

@ -42,7 +42,7 @@
<div class="layout-navbars-breadcrumb-user-icon mr10" @click="onScreenfullClick">
<i
class="iconfont"
:title="isScreenfull ? $t('message.user.title5') : $t('message.user.title6')"
:title="isScreenfull ? $t('message.user.title6') : $t('message.user.title5')"
:class="!isScreenfull ? 'icon-fullscreen' : 'icon-tuichuquanping'"
></i>
</div>
@ -54,6 +54,7 @@
</span>
<el-dropdown-menu slot="dropdown">
<el-dropdown-item command="/home">{{ $t('message.user.dropdown1') }}</el-dropdown-item>
<el-dropdown-item command="wareHouse">{{ $t('message.user.dropdown6') }}</el-dropdown-item>
<el-dropdown-item command="/personal">{{ $t('message.user.dropdown2') }}</el-dropdown-item>
<el-dropdown-item command="/404">{{ $t('message.user.dropdown3') }}</el-dropdown-item>
<el-dropdown-item command="/401">{{ $t('message.user.dropdown4') }}</el-dropdown-item>
@ -205,6 +206,8 @@ export default {
})
.catch(() => {});
}, 150);
} else if (path === 'wareHouse') {
window.open('https://gitee.com/lyt-top/vue-next-admin');
} else {
this.$router.push(path);
}