测试问题修改

This commit is contained in:
zzyuan 2025-09-04 13:11:23 +08:00
parent d9b828c3a8
commit b83d72d3cf
2 changed files with 10 additions and 4 deletions

View File

@ -111,7 +111,7 @@
data() {
return {
fontValue:uni.getStorageSync('fontSize') || 8,
userName: uni.getStorageSync('userName')||"",
userName: "",
phonenumber: uni.getStorageSync('phonenumber')||"",
headPortraitUrl:"/static/images/my/face.png",
defaultImg: '/static/images/my/face.png',
@ -134,6 +134,7 @@
getUserInfo() {
getUserInfo().then(res => {
this.headPortraitUrl= res.user.avatar
this.userName = res.user.nickName
})
},
//

View File

@ -25,7 +25,7 @@
<view class="info-item">
<text class="label">姓名</text>
<view class="value-wrapper">
<text class="value">{{userInfo.userName}}</text>
<text class="value">{{userInfo.nickName}}</text>
<image class="arrow-icon" :src="require('@/static/images/my/enter.png')" mode="aspectFit"></image>
</view>
</view>
@ -34,9 +34,7 @@
<view class="info-item">
<text class="label">手机号</text>
<view class="value-wrapper">
<!-- <u--input v-model="userInfo.phonenumber" style="font-size: 32rpx;color: #333;" border="none" maxlength="11"></u--input> -->
<uni-easyinput v-model="userInfo.phonenumber" :inputBorder="false" :clearable="false" placeholder="请输入手机号" maxlength="11" color="#333" class="fs32" style="text-align: right;" />
<!-- <text class="value">{{userInfo.phonenumber}}</text> -->
<image class="arrow-icon" :src="require('@/static/images/my/enter.png')" mode="aspectFit"></image>
</view>
</view>
@ -202,6 +200,13 @@
// "pwd":uni.getStorageSync('pwd'),
// "sourceType":7
// }
if (!/^1[3456789]\d{9}$/.test(this.userInfo.phonenumber)) {
uni.showToast({
title: '请输入正确的手机号',
icon: 'none'
});
return false;
}
updateUserProfile(this.userInfo).then(res => {
if(res.code==200){
uni.showToast({