fix: bug#10762
This commit is contained in:
parent
0ce7fd5a59
commit
16dc7b7aa7
|
@ -551,6 +551,13 @@ watch(
|
||||||
tableData.selectedRows = [];
|
tableData.selectedRows = [];
|
||||||
},
|
},
|
||||||
);
|
);
|
||||||
|
|
||||||
|
watch(
|
||||||
|
() => dialogs.editShow,
|
||||||
|
(val: boolean) => {
|
||||||
|
if (!val) tableData.selectedRows = [];
|
||||||
|
},
|
||||||
|
);
|
||||||
</script>
|
</script>
|
||||||
|
|
||||||
<style lang="less" scoped>
|
<style lang="less" scoped>
|
||||||
|
|
Loading…
Reference in New Issue