You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
30 lines
897 B
30 lines
897 B
<!--pages/revise/revise.wxml-->
|
|
<view class="info">
|
|
<!-- 头像 -->
|
|
<view>
|
|
<view class="fl">头像</view>
|
|
<view class="rl">
|
|
<image src="{{imgUrl}}" mode="aspectFill" bindtap="changeAvatar"></image>
|
|
<image class="arrow" src="/images/arrow.png"></image>
|
|
</view>
|
|
</view>
|
|
<!-- 昵称 -->
|
|
<view>
|
|
<view class="fl">昵称</view>
|
|
<view class="rl">{{username}}<view class="arrow"></view></view>
|
|
</view>
|
|
<!-- 性别 -->
|
|
<view>
|
|
<view class="fl">性别</view>
|
|
<view class="rl">{{gender}}<view class="arrow"></view></view>
|
|
</view>
|
|
<view>
|
|
<view class="fl">电话</view>
|
|
<view class="rl">{{phone}}<view class="arrow"></view></view>
|
|
</view>
|
|
<view>
|
|
<view class="fl">QQ</view>
|
|
<view class="rl">{{QQ}}<view class="arrow"></view></view>
|
|
</view>
|
|
<button bindtap="jump" from-type="primary" class="primary">确定修改</button>
|
|
</view> |