diff --git a/.env.production b/.env.production index 2feb88df..0336f509 100644 --- a/.env.production +++ b/.env.production @@ -2,4 +2,4 @@ ENV = 'production' # 线上环境接口地址 -VITE_API_URL = 'https://gitee.com/gitee.io' \ No newline at end of file +VITE_API_URL = 'https://lyt-top.gitee.io/vue-next-admin-preview/' \ No newline at end of file diff --git a/CHANGELOG.md b/CHANGELOG.md index 9e4d4255..ec74804c 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,16 @@ 🎉🎉🔥 `vue-next-admin` 基于 vue3.x 、Typescript、vite、Element plus 等,适配手机、平板、pc 的后台开源免费模板库(vue2.x 请切换 vue-prev-admin 分支) +## 1.0.12 + +`2021.07.16` + +- 🌟 更新 依赖更新最新版本 +- 🎉 新增 数据可视化演示空界面(待完善) +- 🎯 优化 tagsView 动态路由(xxx/:id/:name)时的右键菜单刷新、关闭其它时参数丢失问题(2021.07.15 优化) +- 🐞 修复 路由带参数时,复制路径到登录页,跳转后参数消失的问题 +- 🐞 修复 设置多个外链,点击后,页面内容停留在上一个内容(内容未改变)、国际化处理、打开新窗口 sessionStorage 共享等 + ## 1.0.11 `2021.07.14` diff --git a/package.json b/package.json index cf4a3fd3..0e3ddeb2 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "vue-next-admin", - "version": "1.0.11", + "version": "1.0.12", "scripts": { "dev": "vite", "build": "vite build", @@ -23,7 +23,7 @@ "vue": "^3.0.11", "vue-clipboard3": "^1.0.1", "vue-grid-layout": "^3.0.0-beta1", - "vue-i18n": "^9.1.4", + "vue-i18n": "^9.1.7", "vue-router": "^4.0.8", "vue-web-screen-shot": "^1.2.0", "vuex": "^4.0.1", @@ -32,7 +32,7 @@ "devDependencies": { "@types/axios": "^0.14.0", "@types/clipboard": "^2.0.1", - "@types/node": "^16.3.1", + "@types/node": "^16.3.2", "@types/nprogress": "^0.2.0", "@types/sortablejs": "^1.10.7", "@typescript-eslint/eslint-plugin": "^4.28.3", diff --git a/src/i18n/lang/en.ts b/src/i18n/lang/en.ts index 3cb4f1d9..76bce3af 100644 --- a/src/i18n/lang/en.ts +++ b/src/i18n/lang/en.ts @@ -58,11 +58,19 @@ export default { paramsCommonDetails: 'General routing details', paramsDynamicDetails: 'Dynamic routing details', chartIndex: 'chartIndex', + visualizingIndex: 'visualizingIndex', + visualizingLinkDemo1: 'visualizingLinkDemo1', + visualizingLinkDemo2: 'visualizingLinkDemo2', personal: 'personal', tools: 'tools', layoutLinkView: 'LinkView', layoutIfameView: 'IfameView', }, + staticRoutes: { + signIn: 'signIn', + notFound: 'notFound', + noPower: 'noPower', + }, user: { title0: 'Component size', title1: 'Language switching', diff --git a/src/i18n/lang/zh-cn.ts b/src/i18n/lang/zh-cn.ts index 9cb009fa..532ddc38 100644 --- a/src/i18n/lang/zh-cn.ts +++ b/src/i18n/lang/zh-cn.ts @@ -58,11 +58,19 @@ export default { paramsCommonDetails: '普通路由详情', paramsDynamicDetails: '动态路由详情', chartIndex: '大数据图表', + visualizingIndex: '数据可视化', + visualizingLinkDemo1: '数据可视化演示1', + visualizingLinkDemo2: '数据可视化演示2', personal: '个人中心', tools: '工具类集合', layoutLinkView: '外链', layoutIfameView: '内嵌 iframe', }, + staticRoutes: { + signIn: '登录', + notFound: '找不到此页面', + noPower: '没有权限', + }, user: { title0: '组件大小', title1: '语言切换', diff --git a/src/i18n/lang/zh-tw.ts b/src/i18n/lang/zh-tw.ts index d89cf413..8f83c0a6 100644 --- a/src/i18n/lang/zh-tw.ts +++ b/src/i18n/lang/zh-tw.ts @@ -58,11 +58,19 @@ export default { paramsCommonDetails: '普通路由詳情', paramsDynamicDetails: '動態路由詳情', chartIndex: '大資料圖表', + visualizingIndex: '數據視覺化', + visualizingLinkDemo1: '數據視覺化演示1', + visualizingLinkDemo2: '數據視覺化演示2', personal: '個人中心', tools: '工具類集合', layoutLinkView: '外鏈', layoutIfameView: '内嵌 iframe', }, + staticRoutes: { + signIn: '登入', + notFound: '找不到此頁面', + noPower: '沒有許可權', + }, user: { title0: '組件大小', title1: '語言切換', diff --git a/src/layout/navMenu/horizontal.vue b/src/layout/navMenu/horizontal.vue index dcaa21c8..5992e7c1 100644 --- a/src/layout/navMenu/horizontal.vue +++ b/src/layout/navMenu/horizontal.vue @@ -16,7 +16,7 @@ {{ $t(val.meta.title) }} {{ $t(val.meta.title) }} diff --git a/src/layout/routerView/link.vue b/src/layout/routerView/link.vue index 6b0b0a6e..8f773c6f 100644 --- a/src/layout/routerView/link.vue +++ b/src/layout/routerView/link.vue @@ -1,13 +1,13 @@