1
0
forked from dyf/APP

018A UI部分完成了

This commit is contained in:
liub
2025-12-15 10:22:05 +08:00
parent 8ad20ad7fc
commit 2cf02932e5
14 changed files with 1867 additions and 10 deletions

View File

@ -27,13 +27,18 @@
<text class="title">版本更新 ({{appVersion}})</text>
<uni-icons type="right" size="25" color="rgba(255, 255, 255, 0.4)" class="uniIcon"></uni-icons>
</view>
<view class="menu-item" @click="sendCounsel">
<image src="/static/images/common/yijianfankui.png" class="icon"></image>
<text class="title">举报反馈</text>
<uni-icons type="right" size="25" color="rgba(255, 255, 255, 0.4)" class="uniIcon"></uni-icons>
</view>
<view class="menu-item" @click="aboutUs">
<image src="/static/images/common/wm.png" class="icon"></image>
<image src="/static/images/common/guanyuwomen.png" class="icon"></image>
<text class="title">关于我们</text>
<uni-icons type="right" size="25" color="rgba(255, 255, 255, 0.4)" class="uniIcon"></uni-icons>
</view>
<view class="menu-item" @click="logOff">
<image src="/static/images/common/wm.png" class="icon"></image>
<image src="/static/images/common/zhuxiao.png" class="icon"></image>
<text class="title">注销账号</text>
<uni-icons type="right" size="25" color="rgba(255, 255, 255, 0.4)" class="uniIcon"></uni-icons>
</view>
@ -160,7 +165,7 @@
},
logOff(){
uni.navigateTo({
url:'/pages/common/user/logOff'
url:'/pages/common/account/deleteAccount/index'
})
},
// 关于我们
@ -169,6 +174,12 @@
url: '/pages/common/aboutUs/index'
})
},
//举报反馈、联系我们
sendCounsel(){
uni.navigateTo({
url: '/pages/common/aboutUs/ContactUs'
})
},
// 账户安全
account(){
uni.navigateTo({

View File

@ -65,7 +65,7 @@
logOff(){
let task=()=>{
return new Promise((resolve,reject)=>{
//假装注销
setTimeout(()=>{
resolve();
},500)
@ -74,7 +74,9 @@
}
let logOut=()=>{
let phone=uni.getStorageSync('phone');
uni.clearStorageSync();
uni.setStorageSync("logOutPhone",phone)
uni.reLaunch({
url:'/pages/common/login/index'
})