意见反馈

This commit is contained in:
haomingming
2025-09-08 09:11:03 +08:00
parent b8f6257bf1
commit d40f65de65
8 changed files with 1294 additions and 25 deletions
+4 -14
View File
@@ -197,25 +197,15 @@
// 跳转到意见反馈页面
const goToFeedback = () => {
uni.showToast({
title: '意见反馈',
icon: 'none'
uni.navigateTo({
url: '/pages_app/feedback/feedback'
});
};
// 跳转到注销账户页面
const goToDeleteAccount = () => {
uni.showModal({
title: '注销账户',
content: '确定要注销账户吗?此操作不可逆!',
success: (res) => {
if (res.confirm) {
uni.showToast({
title: '注销账户',
icon: 'none'
});
}
}
uni.navigateTo({
url: '/pages_app/feedback/feedback-logoff'
});
};