fix: (接口定义) 解决在回收站中,Case切换到Api时未显示回收站内容问题 (#1271)
This commit is contained in:
parent
6d664448dc
commit
00a382b736
|
@ -274,7 +274,12 @@
|
|||
},
|
||||
},
|
||||
created: function () {
|
||||
this.condition.filters = {status: ["Prepare", "Underway", "Completed"]};
|
||||
if (this.trashEnable) {
|
||||
this.condition.filters = {status: ["Trash"]};
|
||||
}
|
||||
else {
|
||||
this.condition.filters = {status: ["Prepare", "Underway", "Completed"]};
|
||||
}
|
||||
this.initTable();
|
||||
this.getMaintainerOptions();
|
||||
},
|
||||
|
|
Loading…
Reference in New Issue