feat: 整体pure,核心功能对接完成
This commit is contained in:
@@ -12,27 +12,30 @@ const list = ref([
|
||||
title: "账户密码",
|
||||
illustrate: "当前密码强度:强",
|
||||
button: "修改"
|
||||
},
|
||||
{
|
||||
title: "密保手机",
|
||||
illustrate: "已经绑定手机:158****6789",
|
||||
button: "修改"
|
||||
},
|
||||
{
|
||||
title: "密保问题",
|
||||
illustrate: "未设置密保问题,密保问题可有效保护账户安全",
|
||||
button: "修改"
|
||||
},
|
||||
{
|
||||
title: "备用邮箱",
|
||||
illustrate: "已绑定邮箱:pure***@163.com",
|
||||
button: "修改"
|
||||
}
|
||||
// {
|
||||
// title: "密保手机",
|
||||
// illustrate: "已经绑定手机:158****6789",
|
||||
// button: "修改"
|
||||
// },
|
||||
// {
|
||||
// title: "密保问题",
|
||||
// illustrate: "未设置密保问题,密保问题可有效保护账户安全",
|
||||
// button: "修改"
|
||||
// },
|
||||
// {
|
||||
// title: "备用邮箱",
|
||||
// illustrate: "已绑定邮箱:pure***@163.com",
|
||||
// button: "修改"
|
||||
// }
|
||||
]);
|
||||
|
||||
function onClick(item) {
|
||||
console.log("onClick", item.title);
|
||||
message("请根据具体业务自行实现", { type: "success" });
|
||||
switch (item.title) {
|
||||
case "账户密码":
|
||||
message("密码更改成功", { type: "success" });
|
||||
break;
|
||||
}
|
||||
}
|
||||
</script>
|
||||
|
||||
|
||||
Reference in New Issue
Block a user