mirror of
https://gitee.com/beijing_hongye_huicheng/lilishop-uniapp.git
synced 2026-08-07 03:14:59 +08:00
- 将多个组件转换为 `<script setup>` 语法,提升可读性和性能 - 优化状态管理和事件处理逻辑,简化代码结构 - 更新样式和布局以适应新组件结构 - 添加新功能和修复已知问题,提升用户体验
52 lines
1.3 KiB
Vue
52 lines
1.3 KiB
Vue
<template>
|
|
<view class="securityCenter">
|
|
<u-cell-group>
|
|
<u-cell title="修改密码" @click="navigateTo('/pages/mine/set/securityCenter/updatePwdTab')"></u-cell>
|
|
<u-cell title="注销账户" @click="confirmAccountDeletion"></u-cell>
|
|
</u-cell-group>
|
|
</view>
|
|
</template>
|
|
|
|
<script setup lang="ts">
|
|
function navigateTo(url: string) {
|
|
uni.navigateTo({ url })
|
|
}
|
|
|
|
function confirmAccountDeletion() {
|
|
uni.showModal({
|
|
title: '警告',
|
|
content: '您确定要注销当前账号吗?',
|
|
confirmText: '确定注销',
|
|
confirmColor: '#FF0000',
|
|
cancelText: '取消',
|
|
success: (res) => {
|
|
if (res.confirm) {
|
|
uni.showModal({
|
|
title: '谨慎操作',
|
|
content: '再次向您确认,您确定要注销当前账号吗?',
|
|
confirmText: '坚持注销',
|
|
confirmColor: '#FF0000',
|
|
cancelText: '取消',
|
|
success: (confirmRes) => {
|
|
if (confirmRes.confirm) {
|
|
uni.showToast({
|
|
title: '您的注销申请已经提交,待管理员审核后。会自动注销当前账号',
|
|
duration: 10000,
|
|
})
|
|
}
|
|
},
|
|
})
|
|
}
|
|
},
|
|
})
|
|
}
|
|
</script>
|
|
|
|
<style lang="scss" scoped>
|
|
.securityCenter {
|
|
.u-cell {
|
|
line-height: normal;
|
|
}
|
|
}
|
|
</style>
|