فهرست منبع

更新 NavBar 下拉菜单中"历史记录"的路由

reghao 1 سال پیش
والد
کامیت
380274ac45
1فایلهای تغییر یافته به همراه4 افزوده شده و 4 حذف شده
  1. 4 4
      src/components/layout/NavBar.vue

+ 4 - 4
src/components/layout/NavBar.vue

@@ -71,7 +71,7 @@
               <el-dropdown-item
                 icon="el-icon-s-data"
                 class="size"
-                @click.native="goToPost"
+                @click.native="goToHistory"
               >历史记录
               </el-dropdown-item>
               <el-dropdown-item
@@ -324,12 +324,12 @@ export default {
       }
       this.$router.push(path)
     },
-    goToPost() {
-      if (this.$route.path === '/post') {
+    goToHistory() {
+      if (this.$route.path === '/post/history') {
         this.$router.go(0)
         return
       }
-      this.$router.push('/post')
+      this.$router.push('/post/history')
     },
     goToMessage() {
       if (this.$route.path === '/my/message') {