1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980 |
- <view class="container">
- <view class="user_text">
-
- <view class="userAvatarUrl" bindtap="">
- <image src='{{isLogin&&!userInfo.flag?userInfo.avatar:"/images/userhead.png"}}'></image>
- </view>
- <text class='bold'>{{userInfo.phonenumber}}</text>
- </view>
- </view>
- <view class='main'>
- <view class='context'>
- <view class='context_input'>
- <view class='input_view'>
- <view class="input_text_view">
-
- <text class="input_text">账号</text>
- </view>
- <input disabled='true' value='{{userInfo.loginName}}'></input>
- </view>
- <view class='input_view'>
- <view class="input_text_view">
-
- <text class="input_text">绑定手机号</text>
- </view>
- <input disabled='true' value='{{userInfo.bindingPhone==1?userInfo.phonenumber:"未绑定"}}'></input>
- </view>
- <view class='input_view' style="display: flex;flex-direction: row;">
- <view class="input_text_view">
-
- <text class="input_text">性别</text>
- </view>
- {{userInfo.sex==1}}
- {{userInfo.sex==2}}
- {{userInfo.sex==3}}
- <picker class="picker" bindchange="inputSex" range-key="text" range="{{sexType}}">
- <view wx:if='{{ sexIndex==null }}'>去填写</view>
- <view wx:if='{{ sexIndex!=null}}'>{{sexType[sexIndex].text}}</view>
- </picker>
- <view class="zan-ft" style="position:relative ;display: inline ;">
- <image src='/images/enter.png'></image>
- </view>
- </view>
- <view class='input_view'>
- <view class="input_text_view">
-
- <text class="input_text">邮箱</text>
- </view>
- <input disabled='true' bindtap="inputEmail" type='text' placeholder-class='placeholder' value='{{!userInfo.email?"去填写":userInfo.email}}'>
- </input>
- <view class="zan-ft">
- <image src='/images/enter.png'></image>
- </view>
- </view>
-
- {{!userInfo.license_number?"去填写":userInfo.license_number}}
- </view>
-
- <view class="errorMsg">
- <text>{{errorMsg}}</text>
- </view>
- </view>
- </view>
|