diff --git a/frontend/src/business/components/api/definition/components/list/ApiList.vue b/frontend/src/business/components/api/definition/components/list/ApiList.vue index 2fec9cc9fc..000f4a6cb8 100644 --- a/frontend/src/business/components/api/definition/components/list/ApiList.vue +++ b/frontend/src/business/components/api/definition/components/list/ApiList.vue @@ -248,7 +248,7 @@ let arr = Array.from(this.selectRows); // 选中1个以上的用例时显示更多操作 if (this.selectRows.size === 1) { - this.$set(arr[0], "showMore", false); + this.$set(arr[0], "showMore", true); } else if (this.selectRows.size === 2) { arr.forEach(row => { this.$set(row, "showMore", true);