fix: bug#11087

This commit is contained in:
xieyonghong 2023-03-30 19:32:50 +08:00
parent cf6b40f438
commit cf06b77fe1
1 changed files with 2 additions and 0 deletions

View File

@ -159,7 +159,9 @@ const handleSearch = (e: any) => {
const saveChange = (val: any) => { const saveChange = (val: any) => {
visible.value = false; visible.value = false;
if (val) { if (val) {
setTimeout(() => {
rechargeRef.value?.reload(); rechargeRef.value?.reload();
}, 500)
} }
}; };