fix(测试跟踪): 修复取消记住跨页选择的记录前一页的数据不能删除问题
--bug=1021992 --user=郭雨琦
This commit is contained in:
parent
1e74eb4ea2
commit
ce384c3257
|
@ -209,6 +209,11 @@ export default {
|
||||||
},
|
},
|
||||||
selectCountChange(value) {
|
selectCountChange(value) {
|
||||||
this.$emit('selectCountChange', value);
|
this.$emit('selectCountChange', value);
|
||||||
|
if (this.$refs.apitable) {
|
||||||
|
this.$emit('setSelectRow', this.$refs.apitable.getSelectRows());
|
||||||
|
} else {
|
||||||
|
this.$emit('setSelectRow', new Set());
|
||||||
|
}
|
||||||
},
|
},
|
||||||
getColor(flag, method) {
|
getColor(flag, method) {
|
||||||
return this.methodColorMap.get(method);
|
return this.methodColorMap.get(method);
|
||||||
|
|
|
@ -229,6 +229,11 @@ export default {
|
||||||
methods: {
|
methods: {
|
||||||
selectCountChange(value) {
|
selectCountChange(value) {
|
||||||
this.$emit('selectCountChange', value)
|
this.$emit('selectCountChange', value)
|
||||||
|
if (this.$refs.apitable) {
|
||||||
|
this.$emit('setSelectRow', this.$refs.apitable.getSelectRows());
|
||||||
|
} else {
|
||||||
|
this.$emit('setSelectRow', new Set());
|
||||||
|
}
|
||||||
},
|
},
|
||||||
getColor(flag, method) {
|
getColor(flag, method) {
|
||||||
return this.methodColorMap.get(method);
|
return this.methodColorMap.get(method);
|
||||||
|
|
Loading…
Reference in New Issue