fix: bug#10762

This commit is contained in:
JiangQiming 2023-03-29 20:01:18 +08:00
parent 0ce7fd5a59
commit 16dc7b7aa7
1 changed files with 7 additions and 0 deletions

View File

@ -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>