fix: bug#11223

This commit is contained in:
JiangQiming 2023-03-31 19:54:53 +08:00
parent 19944afb8b
commit 2013ecbddd
1 changed files with 4 additions and 1 deletions

View File

@ -56,7 +56,10 @@ watch(
() => user.userInfos, () => user.userInfos,
(val: any) => { (val: any) => {
// //
if (val.username === 'admin') selectValue.value = 'comprehensive'; if (val.username === 'admin') {
selectValue.value = 'comprehensive';
confirm();
}
}, },
); );
</script> </script>