12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273 |
- <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.userName}}</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>
- {{userInfo.sex==1}}
- {{userInfo.sex==2}}
- {{userInfo.sex==3}}
- <picker class="picker" bindchange="inputSex" range-key="text" range="{{sexType}}">
- <text wx:if='{{ sexIndex==null}}'>请选择性别</text>
- <text wx:if='{{ sexIndex!=null}}'>{{sexType[sexIndex-1].text}}</text>
- </picker>
- <view class="zan-ft">
- <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>
- <view class='input_view'>
- <view class="input_text_view">
- <text class="input_text">车牌号</text>
- </view>
- <input disabled='true' bindtap="inputCarNum" type='text' placeholder-class='placeholder' value='{{!userInfo.license_number?"去填写":userInfo.license_number}}'>
- </input>
- <view class="zan-ft">
- <image src='/images/enter.png'></image>
- </view>
- </view>
- </view>
-
- <view class="errorMsg">
- <text>{{errorMsg}}</text>
- </view>
- </view>
- </view>
|