67 lines
2.7 KiB
Plaintext
67 lines
2.7 KiB
Plaintext
<view class="info_blcok">
|
|
<view class="info_list cover">
|
|
<view class="info_list_title">头像</view>
|
|
<view class="end" bindtap="upload">
|
|
<image class="header" src="{{cover}}" mode="widthFix"></image>
|
|
<image src="/static/icons/arrow_right.png" mode="widthFix" style="width:30rpx;"></image>
|
|
</view>
|
|
</view>
|
|
<view class="info_list">
|
|
<view class="info_list_title">昵称</view>
|
|
<view class="end" bindtap="goUrl">
|
|
<input class="txt nowrap" placeholder="请输入昵称"></input>
|
|
<image src="/static/icons/arrow_right.png" mode="widthFix" style="width:30rpx;"></image>
|
|
</view>
|
|
</view>
|
|
<view class="info_list">
|
|
<view class="info_list_title">真实姓名</view>
|
|
<view class="end" bindtap="goUrl">
|
|
<input class="txt nowrap" placeholder="请输入真实姓名"></input>
|
|
<image src="/static/icons/arrow_right.png" mode="widthFix" style="width:30rpx;"></image>
|
|
</view>
|
|
</view>
|
|
<view class="info_list">
|
|
<view class="info_list_title">性别</view>
|
|
<view class="end" bindtap="goUrl">
|
|
<picker bindchange="pickSex" value="{{ gender }}" class="sex" range="{{ columns }}">
|
|
<view>
|
|
{{ columns[gender] == "" ? "请输入性别" : "" }}{{ columns[gender] }}
|
|
</view>
|
|
</picker>
|
|
<image src="/static/icons/arrow_right.png" mode="widthFix" style="width:30rpx;"></image>
|
|
</view>
|
|
</view>
|
|
<view class="info_list">
|
|
<view class="info_list_title">手机号</view>
|
|
<view class="end" bindtap="goUrl">
|
|
<input class="txt nowrap" placeholder="请输入手机号" maxlength="11"></input>
|
|
<image src="/static/icons/arrow_right.png" mode="widthFix" style="width:30rpx;"></image>
|
|
</view>
|
|
</view>
|
|
<view class="info_list">
|
|
<view class="info_list_title">生日</view>
|
|
<view class="end" bindtap="goUrl">
|
|
<picker mode="date" value="{{date}}" start="2015-09-01" end="2017-09-01" bindchange="bindDateChange">
|
|
<view class="picker">
|
|
{{date}}
|
|
</view>
|
|
</picker>
|
|
<image src="/static/icons/arrow_right.png" mode="widthFix" style="width:30rpx;"></image>
|
|
</view>
|
|
</view>
|
|
<view class="info_list">
|
|
<view class="info_list_title">所在区域</view>
|
|
<view class="end" bindtap="goUrl">
|
|
<picker mode="region" bindchange="bindRegionChange" value="{{region}}" custom-item="{{customItem}}">
|
|
<view class="picker">
|
|
{{region[0]}}-{{region[1]}}-{{region[2]}}
|
|
</view>
|
|
</picker>
|
|
<image src="/static/icons/arrow_right.png" mode="widthFix" style="width:30rpx;"></image>
|
|
</view>
|
|
</view>
|
|
</view>
|
|
|
|
|
|
<view class="beSure" catchtap="besure">退出登录</view>
|
|
<view class="beSure beSure1" catchtap="besure">保存</view> |