Browse Source

Merge branch 'dev' of HuangKaiSheng/seecoder-devcloud-frontend into master

HuangKaiSheng 5 năm trước cách đây
mục cha
commit
32593fa614

+ 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();
     };
 

+ 1 - 1
src/components/RequirementDrawer.vue

@@ -145,7 +145,7 @@
                 <el-button @click="cancelEdit" size="mini">取消</el-button>
               </el-row>
             </el-tab-pane>
-            <template v-if="type!=='任务'">
+            <template v-if="type==='任务'">
               <el-tab-pane label="历史提交" name="commit_history">
               <!-- 相关提交 -->
               <el-row class="entry-row" style="margin-top: 15px">

+ 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();