fix(接口定义): 批量选择处理
This commit is contained in:
parent
e54c956781
commit
2ae6f3ff62
|
@ -248,7 +248,7 @@
|
||||||
let arr = Array.from(this.selectRows);
|
let arr = Array.from(this.selectRows);
|
||||||
// 选中1个以上的用例时显示更多操作
|
// 选中1个以上的用例时显示更多操作
|
||||||
if (this.selectRows.size === 1) {
|
if (this.selectRows.size === 1) {
|
||||||
this.$set(arr[0], "showMore", false);
|
this.$set(arr[0], "showMore", true);
|
||||||
} else if (this.selectRows.size === 2) {
|
} else if (this.selectRows.size === 2) {
|
||||||
arr.forEach(row => {
|
arr.forEach(row => {
|
||||||
this.$set(row, "showMore", true);
|
this.$set(row, "showMore", true);
|
||||||
|
|
Loading…
Reference in New Issue