修复通知看不清问题
This commit is contained in:
@@ -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;
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user