修复通知看不清问题

This commit is contained in:
yml
2026-05-22 22:02:45 +08:00
parent 4b6a12b08d
commit 14efed5ebf
10 changed files with 57 additions and 27 deletions
@@ -34,13 +34,13 @@ function onSettingClick(action: string) {
showSettings.value = false;
switch (action) {
case "profile":
showToast("资料更改功能开发中");
showToast({ message: "资料更改功能开发中", icon: "info-o" });
break;
case "realname":
router.push("/m/realname");
break;
case "password":
showToast("密码管理功能开发中");
showToast({ message: "密码管理功能开发中", icon: "info-o" });
break;
case "cancel-account":
showDialog({
@@ -52,15 +52,15 @@ function onSettingClick(action: string) {
cancelButtonText: "再想想",
})
.then(() => {
showToast("注销功能开发中");
showToast({ message: "注销功能开发中", icon: "info-o" });
})
.catch(() => {});
break;
case "privacy":
showToast("隐私政策页面开发中");
showToast({ message: "隐私政策页面开发中", icon: "info-o" });
break;
case "terms":
showToast("用户协议页面开发中");
showToast({ message: "用户协议页面开发中", icon: "info-o" });
break;
}
}