| 12345678910111213141516171819202122232425262728293031323334353637 |
- <view class="toptip {{tipStaus}} text-white {{tipType}}" style='top:{{CustomBar}}px;'>{{tipText}}</view>
- <cu-custom bgColor="bg-color" isBack="{{true}}" title="个人信息">
- <!-- <view slot="content">个人信息</view> -->
- </cu-custom>
- <view class="info_card">
- <view class="prof_item">
- <view class="prof_item_label">头像</view>
- <view class="prof_imgs">
- <image src="{{userInfo.avatar?userInfo.avatar:'/img/my_img1.png'}}" bindtap="uploadImg"></image>
- </view>
- </view>
- <navigator class="info_item" url="/pages/userinfo/editUserName/editUserName?nickName={{userInfo.nickName}}&userId={{userInfo.userId}}">
- <view class="info_label">用户名</view>
- <view class="info_val">{{userInfo.nickName || '未知'}}</view>
- <text class="cuIcon-right lg text-gray"></text>
- </navigator>
- <navigator class="info_item" url="/pages/userinfo/phone?mobile={{userInfo.mobile}}&userId={{userInfo.userId}}">
- <view class="info_label">手机号</view>
- <view class="info_val">{{userInfo.mobile || '未知'}}</view>
- <text class="cuIcon-right lg text-gray"></text>
- </navigator>
- <navigator class="info_item" url="/pages/user/pwdEdit">
- <view class="info_label">密码</view>
- <view class="info_val">*********</view>
- <text class="cuIcon-right lg text-gray"></text>
- </navigator>
- <!-- <navigator class="info_item" url="/pages/user/email?email={{userInfo.email}}&userId={{userInfo.userId}}">
- <view class="info_label">邮箱</view>
- <view class="info_val">{{userInfo.email || '未知' }}</view>
- <text class="cuIcon-right lg text-gray"></text>
- </navigator> -->
- <view class="info_item" bindtap="goEmail">
- <view class="info_label">邮箱</view>
- <view class="info_val">{{userInfo.email || '未知' }}</view>
- <text class="cuIcon-right lg text-gray"></text>
- </view>
- </view>
|