fix(接口自动化): 修复旧数据迁移选择模块根节点问题

This commit is contained in:
fit2-zhao 2021-01-26 14:07:34 +08:00
parent 9d8c0b731e
commit 324cc0fd5f
2 changed files with 13 additions and 3 deletions

View File

@ -220,14 +220,14 @@
if (tab.name === 'add') {
this.handleTabsEdit(this.$t('api_test.definition.request.fast_debug'), "debug");
}
if(this.$refs.apiConfig) {
if (this.$refs.apiConfig) {
this.$refs.apiConfig.forEach(item => {
console.log(item);
item.removeListener();
}); // tab ctrl + s
let tabs = this.apiTabs;
let index = tabs.findIndex(item => item.name === tab.name); // tabindex
if(index != -1) {
if (index != -1) {
this.$refs.apiConfig[index - 1].addListener(); // tab ctrl + s index-1tab
}
}
@ -336,7 +336,11 @@
} else {
let condition = {};
let url = "/api/definition/list/all";
condition.filters = ["Prepare", "Underway", "Completed"];
condition.filters = new Map(
[
["status", ["Prepare", "Underway", "Completed"]],
]
);
condition.projectId = getCurrentProjectID();
this.$post(url, condition, response => {
obj.data = response.data;

View File

@ -11,6 +11,7 @@
<ms-node-tree
v-loading="result.loading"
:tree-nodes="data"
allLabel="默认模块"
@add="add"
:type="'edit'"
@edit="edit"
@ -97,6 +98,11 @@
this.$warning("请选择一个模块");
return;
}
console.log(this.currentModule)
if (this.currentModule.id === "root") {
this.$warning("不能选默认模块,请重新选择一个模块");
return;
}
this.loading = true;
let arr = Array.from(this.selectIds);
let obj = {testIds: arr, projectId: getCurrentProjectID(), modulePath: this.getPath(this.currentModule.id), moduleId: this.currentModule.id};