Jelajahi Sumber

chore: 删除控制台打印语句

Jinyao 5 tahun lalu
induk
melakukan
0a33adb608

+ 0 - 1
src/components/GeneralTable.vue

@@ -128,7 +128,6 @@ export default defineComponent({
     const tableRef = ref<typeof ElTable|null>(null);
 
     const clearFilter = () => {
-      console.log(tableRef);
       tableRef.value!.clearFilter();
     };
 

+ 0 - 1
src/components/Tree.vue

@@ -120,7 +120,6 @@ export default {
       });
       this.drawLine((maxPositionY * 140 + 100).toFixed(0));
       // 返回col
-      console.warn(colList);
       return colList;
     },
   },

+ 0 - 2
src/views/Project/APITest.vue

@@ -823,7 +823,6 @@ export default {
     },
     onJsonSave(value) {
       this.createAPITestForm.params = value;
-      console.log(this.createAPITestForm.params);
       this.jsonValid = true;
     },
     onError(value) {
@@ -954,7 +953,6 @@ export default {
         }
         case 'latest': {
           this.deployHistoryInfo = await FuncTestAPI.getLatestRecord(this.$store.state.workspace.currentProjectId);
-          console.log(this.deployHistoryInfo);
           this.deployHistoryDrawer = true;
           break;
         }

+ 0 - 2
src/views/Project/BugList.vue

@@ -47,8 +47,6 @@ export default {
       this.selectedBug = Array.prototype.find.call(this.bugList, (bug) => bug.id === row.id);
       this.commits = await BugListAPI.getBugRecordCommitHistory(row.id);
       this.$refs.editDrawer.show();
-      // 打开详情抽屉
-      console.log(row);
     },
     addBugRecord() {
       this.$refs.addDrawer.show();