|
@@ -27,10 +27,10 @@
|
|
|
</view>
|
|
|
<view class="message _info" v-if="(user.userType == 1 || user.userType == 2) && user.face == 1">
|
|
|
<text class="icon"></text>
|
|
|
- <text>人脸已认证<text style="color: blue;margin-left: 5px;"></text></text>
|
|
|
+ <text>人脸已认证<text style="color: blue;margin-left: 5px;"></text><text style="color: blue;" @click="authAgain">重新认证</text></text>
|
|
|
</view>
|
|
|
<!--用户信息-->
|
|
|
- <view class="user">
|
|
|
+ <view class="user" style="display: flex;">
|
|
|
<image src="../../static/icon/user.png" mode="widthFix" class="head"></image>
|
|
|
<view class="con">
|
|
|
<view class="nickName omit">{{user.name}}({{ user.phone }})</view>
|
|
@@ -79,19 +79,15 @@
|
|
|
<text class="title" style="color: firebrick;;font-weight: bold;">加入互助组</text>
|
|
|
<text class="icon arrow"></text>
|
|
|
</view>
|
|
|
- <view class="s_item ">
|
|
|
- <text class="icon ic"></text>
|
|
|
- <text class="title">APP版本 {{version}}</text>
|
|
|
-
|
|
|
- </view>
|
|
|
</view>
|
|
|
<button class="btn exit" @click="exitLogin()">退出登录</button>
|
|
|
- <button class="btn exit" @click="cancelAccount()">注销账号</button>
|
|
|
+ <!-- <button class="btn exit" @click="cancelAccount()">注销账号</button> -->
|
|
|
</view>
|
|
|
<view class="version">
|
|
|
- <view>
|
|
|
+ <view style="line-height: 30px;">
|
|
|
<view>Copyright@2024-2030</view>
|
|
|
<view>天保国际物流投资有限公司版权所有</view>
|
|
|
+ <view>APP版本 {{version}}</view>
|
|
|
</view>
|
|
|
</view>
|
|
|
</view>
|
|
@@ -139,6 +135,11 @@
|
|
|
});
|
|
|
},
|
|
|
methods: {
|
|
|
+ authAgain(){
|
|
|
+ uni.navigateTo({
|
|
|
+ url: '/pages/face/faceRegister?type=1'
|
|
|
+ });
|
|
|
+ },
|
|
|
makePhoneCall(phone) {
|
|
|
uni.makePhoneCall({
|
|
|
phoneNumber: phone
|
|
@@ -193,7 +194,7 @@
|
|
|
};
|
|
|
uni.showModal({
|
|
|
title: '提示',
|
|
|
- content: '确定注销登录?',
|
|
|
+ content: '确定退出登录?',
|
|
|
success: res => {
|
|
|
if (res.confirm) {
|
|
|
uni.removeStorageSync('token');
|
|
@@ -219,7 +220,7 @@
|
|
|
};
|
|
|
uni.showModal({
|
|
|
title: '提示',
|
|
|
- content: '确定注销账号?',
|
|
|
+ content: '确定注销账号?注销后不能登录APP',
|
|
|
success: res => {
|
|
|
if (res.confirm) {
|
|
|
uni.removeStorageSync('token');
|
|
@@ -308,9 +309,7 @@
|
|
|
}
|
|
|
|
|
|
.version {
|
|
|
- margin-left: 15%;
|
|
|
- position: fixed;
|
|
|
- bottom: 25px;
|
|
|
+ margin-top: 25px;
|
|
|
color: #888484;
|
|
|
text-align: center;
|
|
|
}
|