12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152 |
- <!--pages/personinfo/personinfo.wxml-->
- <view class="container">
- <view class="head-img card">
- <view class="title">头像</view>
- <view class="info" bindtap='upload'>
- <image class="" src="{{imgUrl}}">
- </image>
- </view>
- </view>
- <view class="user-name">
- <view class="title">昵称</view>
- <view class="info" >
- <input type="text" value="{{userName}}" name="user" bindblur = "changeUserName"/>
- </view>
- <image class="icon" src="../../images/icons/next-gray.png" >
- </image>
- </view>
- <view class="sex">
- <view class="title">性别</view>
- <view class="info">
- <picker bindchange="bindPickerChange" value="{{sex}}" range="{{array}}" bindchange="changeSex">
- {{array[sex]}}
- </picker>
- </view>
- <image class="icon" src="../../images/icons/next-gray.png">
- </image>
- </view>
- <view class="birth">
- <view class="title">生日</view>
- <view class="info">
- <picker mode="date" value="{{date}}" start="1970-01-01" end="{{endDate}}" bindchange="changeBirth">
- {{userInfo.birthday?userInfo.birthday:'1970-01-01'}}
- </picker>
- </view>
- <image class="icon" src="../../images/icons/next-gray.png">
- </image>
- </view>
- <!-- <view class="tel">
- <view class="title">手机</view>
- <view class="info">
- <input type="text" value="{{tel}}" bindblur = "changeTel"/>
- </view>
- <image class="icon" src="../../images/icons/next-gray.png">
- </image>
- </view> -->
- </view>
|