diff --git a/CHANGELOG.zh_CN.md b/CHANGELOG.zh_CN.md index 5e635118c..1a8596e11 100644 --- a/CHANGELOG.zh_CN.md +++ b/CHANGELOG.zh_CN.md @@ -27,6 +27,7 @@ - 修复`layout` 收缩展开功能在分割模式下失效 - 修复 modal 高度计算错误 - 修复文件上传错误 +- 修复表格已知问题 ### 🎫 Chores diff --git a/package.json b/package.json index 92372fbf3..c12f3b24a 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "vben-admin", - "version": "2.0.0-rc.15", + "version": "2.0.0-rc.16", "scripts": { "bootstrap": "yarn install", "serve": "vite", @@ -18,7 +18,7 @@ "reinstall": "rimraf yarn.lock && rimraf package.lock.json && rimraf node_modules && npm run bootstrap" }, "dependencies": { - "@iconify/iconify": "^2.0.0-rc.5", + "@iconify/iconify": "^2.0.0-rc.6", "@vueuse/core": "^4.0.5", "ant-design-vue": "^2.0.0-rc.8", "apexcharts": "^3.23.1", @@ -34,7 +34,7 @@ "sortablejs": "^1.13.0", "vditor": "^3.7.5", "vue": "^3.0.5", - "vue-i18n": "^9.0.0-rc.1", + "vue-i18n": "^9.0.0-rc.2", "vue-router": "^4.0.3", "vue-types": "^3.0.1", "vuex": "^4.0.0-rc.2", @@ -45,7 +45,7 @@ "devDependencies": { "@commitlint/cli": "^11.0.0", "@commitlint/config-conventional": "^11.0.0", - "@iconify/json": "^1.1.284", + "@iconify/json": "^1.1.285", "@ls-lint/ls-lint": "^1.9.2", "@purge-icons/generated": "^0.5.0", "@types/echarts": "^4.9.3", @@ -66,8 +66,8 @@ "@vitejs/plugin-vue": "^1.0.5", "@vitejs/plugin-vue-jsx": "^1.0.1", "@vue/compiler-sfc": "^3.0.5", - "@vuedx/typecheck": "^0.4.1", - "@vuedx/typescript-plugin-vue": "^0.4.1", + "@vuedx/typecheck": "^0.5.0", + "@vuedx/typescript-plugin-vue": "^0.5.0", "autoprefixer": "^10.2.1", "commitizen": "^4.2.2", "conventional-changelog-cli": "^2.1.1", @@ -100,7 +100,7 @@ "vite-plugin-html": "^2.0.0-beta.5", "vite-plugin-mock": "^2.0.0-beta.3", "vite-plugin-purge-icons": "^0.5.0", - "vite-plugin-pwa": "^0.3.5", + "vite-plugin-pwa": "^0.3.6", "vue-eslint-parser": "^7.3.0", "yargs": "^16.2.0" }, diff --git a/src/components/Application/src/AppLogo.vue b/src/components/Application/src/AppLogo.vue index 7e4268829..427cf7e7c 100644 --- a/src/components/Application/src/AppLogo.vue +++ b/src/components/Application/src/AppLogo.vue @@ -8,7 +8,7 @@ :class="[prefixCls, theme, { 'collapsed-show-title': getCollapsedShowTitle }]" @click="handleGoHome" > - +
{{ title }}
diff --git a/src/layouts/default/header/components/lock/LockModal.vue b/src/layouts/default/header/components/lock/LockModal.vue index d8086e18b..7de766890 100644 --- a/src/layouts/default/header/components/lock/LockModal.vue +++ b/src/layouts/default/header/components/lock/LockModal.vue @@ -8,7 +8,7 @@ >
- +

{{ getRealName }}

@@ -31,6 +31,7 @@ import { userStore } from '/@/store/modules/user'; import { lockStore } from '/@/store/modules/lock'; + import headerImg from '/@/assets/images/header.jpg'; export default defineComponent({ name: 'LockModal', components: { BasicModal, BasicForm }, @@ -75,6 +76,7 @@ register, registerForm, handleLock, + headerImg, }; }, }); diff --git a/src/layouts/default/header/components/user-dropdown/index.vue b/src/layouts/default/header/components/user-dropdown/index.vue index 90a647f89..6e110a5c8 100644 --- a/src/layouts/default/header/components/user-dropdown/index.vue +++ b/src/layouts/default/header/components/user-dropdown/index.vue @@ -1,7 +1,7 @@