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.
22 lines
847 B
22 lines
847 B
<!--pages/mine/mine.wxml-->
|
|
<view class="container">
|
|
<view class="head_img" bindtap="check_head_img">
|
|
<text>头像</text>
|
|
<image src="{{userinfo.avatarUrl}}" mode="aspectFill"></image>
|
|
<image src="/images/me/more_icon.png" class="right_icon" mode="aspectFill"></image>
|
|
</view>
|
|
<view class="nick_name">
|
|
<text>昵称</text>
|
|
<input type="text" value="{{ userinfo.userName }}" data-type="userName" maxlength="12" bindinput='name_input_fn' placeholder="请输入昵称"></input>
|
|
</view>
|
|
<view class="phone">
|
|
<text>手机号</text>
|
|
<input type="number" value="{{ userinfo.phone }}" maxlength="11" bindinput="phone_input_fn" placeholder="请绑定手机号码" data-type="phone" />
|
|
</view>
|
|
</view>
|
|
|
|
<view class="save_btn" >
|
|
<view bindtap="update_user_name">
|
|
<text>保存</text>
|
|
</view>
|
|
</view>
|