fix: 我的工作台-去掉debugger

This commit is contained in:
guoyuqi 2021-10-21 16:41:05 +08:00 committed by 刘瑞斌
parent 49dde8e5a1
commit 7f4182f923
2 changed files with 0 additions and 3 deletions

View File

@ -561,7 +561,6 @@ export default {
this.apiDefaultTab = newTabName; this.apiDefaultTab = newTabName;
}, },
handleTabsEdit(targetName, action, api) { handleTabsEdit(targetName, action, api) {
debugger
if (!this.projectId) { if (!this.projectId) {
this.$warning(this.$t('commons.check_project_tip')); this.$warning(this.$t('commons.check_project_tip'));
return; return;
@ -592,7 +591,6 @@ export default {
} }
}, },
editApi(row) { editApi(row) {
debugger
let name = ""; let name = "";
if (row.isCopy) { if (row.isCopy) {
name = "copy" + "-" + row.name; name = "copy" + "-" + row.name;

View File

@ -233,7 +233,6 @@ export default {
}, },
search() { search() {
let selectProjectId = getCurrentProjectID(); let selectProjectId = getCurrentProjectID();
debugger
this.$get("/api/apiCount/" + selectProjectId, response => { this.$get("/api/apiCount/" + selectProjectId, response => {
this.apiCountData = response.data; this.apiCountData = response.data;
}); });