refactor(接口测试): 修复接口自动化回收站筛选不管用的问题

--bug=1016044 --user=宋天阳 【接口测试】接口自动化,回收站tab页,所有下拉框筛选都失效
https://www.tapd.cn/55049933/s/1228684
This commit is contained in:
song-tianyang 2022-08-22 10:36:41 +08:00 committed by f2c-ci-robot[bot]
parent 585d403190
commit 3c68377801
1 changed files with 2 additions and 1 deletions

View File

@ -727,8 +727,9 @@ export default {
}
this.selectRows = new Set();
this.condition.moduleIds = this.selectNodeIds;
if (this.trashEnable) {
this.condition.filters = {status: ["Trash"]};
this.condition.filters = {...this.condition.filters, status: ["Trash"]}
}
if (!this.condition.filters.status) {