个人中心新增
This commit is contained in:
67
pages/user/setting/aboutMine/aboutMine.wxml
Normal file
67
pages/user/setting/aboutMine/aboutMine.wxml
Normal file
@@ -0,0 +1,67 @@
|
||||
<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="logOut">退出登录</view>
|
||||
<view class="beSure beSure1" catchtap="beSure">保存</view>
|
||||
Reference in New Issue
Block a user