guhongwei 5 lat temu
rodzic
commit
ced6e535db
1 zmienionych plików z 1 dodań i 6 usunięć
  1. 1 6
      src/views/technical/list.vue

+ 1 - 6
src/views/technical/list.vue

@@ -133,7 +133,6 @@ export default {
         this.$set(this, `zhuantiList`, res.data);
       } else if (name == '专家问诊') {
         res = await this.query({ skip, limit, column_name: '技术问答', ...info });
-        console.log(res);
         this.$set(this, `jishuList`, res.data);
       } else if (name == '行业研究') {
         res = await this.query({ skip, limit, column_name: '行业研究', ...info });
@@ -154,20 +153,16 @@ export default {
     },
     clickzhuanti(id) {
       this.$router.push({ path: '/live/detail', query: { id: id } });
-      console.log(id);
     },
     clickjishu(id) {
       this.$router.push({ path: '/live/detail', query: { id: id } });
-      console.log(id);
     },
     clickhangye(id) {
       this.$router.push({ path: '/live/detail', query: { id: id } });
-      console.log(id);
     },
 
     clickjiaoyu(id) {
-      this.$router.push({ path: '/live/detail', query: { id: id } });
-      console.log(id);
+      this.$router.push({ path: '/live/eduDetail', query: { id: id } });
     },
   },
 };