vue2-client 1.7.19 → 1.7.20

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/CHANGELOG.md CHANGED
@@ -1,6 +1,9 @@
1
1
  # Change Log
2
2
  > 所有关于本项目的变化都在该文档里。
3
3
 
4
+ **1.7.20 -2023-10-11 @江超**
5
+ - 跳转首页问题修改
6
+
4
7
  **1.7.19 -2023-10-11 @江超**
5
8
  - 菜单头部可配置
6
9
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "vue2-client",
3
- "version": "1.7.19",
3
+ "version": "1.7.20",
4
4
  "private": false,
5
5
  "scripts": {
6
6
  "serve": "SET NODE_OPTIONS=--openssl-legacy-provider && vue-cli-service serve",
@@ -7,7 +7,7 @@
7
7
  v-model="collapsed"
8
8
  :trigger="null">
9
9
  <div :class="['logo', theme]">
10
- <router-link to="/dashboard/workplace">
10
+ <router-link :to="homePage">
11
11
  <a-row type="flex" align="middle" style="height: 64px;word-wrap: break-word;word-break:break-all;">
12
12
  <a-col :span="4">
13
13
  <img :src="logoSrc" alt="logo">
@@ -60,7 +60,7 @@ export default {
60
60
  }
61
61
  return systemNameFontSize
62
62
  },
63
- ...mapState('setting', ['isMobile', 'systemName', 'logoSrc', 'systemNameFontSize'])
63
+ ...mapState('setting', ['isMobile', 'systemName', 'logoSrc', 'systemNameFontSize', 'homePage'])
64
64
  },
65
65
  methods: {
66
66
  onSelect (obj) {