mo 2 gadi atpakaļ
vecāks
revīzija
d9ea6564af

+ 1 - 2
src/layout/components/TagsView.vue

@@ -63,7 +63,7 @@ export default {
     },
   },
   watch: {
-    $route() {console.log('添加',this.$route)
+    $route() {
       this.addViewTags();
 
       this.moveToCurrentTag();
@@ -95,7 +95,6 @@ export default {
       }
     },
    async '$route.meta.title'(val){
-      console.log(this.$route.meta.title,'添加')
        await this.$store.dispatch("addVisitedViews", this.$route);
     }
   },

+ 0 - 1
src/store/modules/tagsView.js

@@ -7,7 +7,6 @@ const tagsView = {
   mutations: {
     ADD_VISITED_VIEWS: (state, view) => {
       // debugger
-      console.log(view)
       if (state.visitedViews.some(v => v.path === view.path)) {
         state.visitedViews.forEach(v => {
           if (v.path === view.path) {

+ 1 - 2
src/views/returnVisitManager/index.vue

@@ -37,13 +37,12 @@ export default {
 
     if(this.$route.query.activeIndex){
       this.activeIndex = this.$route.query.activeIndex
-      console.log(this.$route.query, this.activeIndex)
     }
 
   },
   methods: {
     handleClick(evt) {
-      console.log(evt)
+      // console.log(evt)
       // this.changeHash(evt.name);
     },
   },