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.
38 lines
1.5 KiB
38 lines
1.5 KiB
<view class="container"> |
|
<view class="content"> |
|
<view class="list"> |
|
<view class="title">昵称</view> |
|
<view class="inputbox"> |
|
<input maxlength="20" bindinput="nicknamechange" placeholder="输入昵称" value="{{data.nickname}}"/> |
|
</view> |
|
</view> |
|
<view class="list"> |
|
<view class="title">手机号</view> |
|
<view class="inputbox"><input maxlength="11" bindinput="phoneinput" placeholder="输入电话" value="{{data.phone}}"/></view> |
|
</view> |
|
<view class="list"> |
|
<view class="title">性别</view> |
|
<radio-group name="gender" bindchange="genderChange" > |
|
<label> |
|
<radio value="0" color="#FFCB12" checked="{{data.gender==0}}" />女 |
|
</label> |
|
<label> |
|
<radio value="1" color="#FFCB12" checked="{{data.gender==1}}" />男 |
|
</label> |
|
</radio-group> |
|
</view> |
|
<view class="list"> |
|
<view class="title">真实姓名</view> |
|
<view class="inputbox"> |
|
<input bindinput="realnameinput" placeholder="输入姓名" value="{{data.realname}}" maxlength="20"/> |
|
</view> |
|
</view> |
|
<view class="list"> |
|
<view class="title">身份证号</view> |
|
<view class="inputbox"> |
|
<input bindinput="idcardinput" maxlength="18" placeholder="输入身份证号码" value="{{data.idcard}}"/> |
|
</view> |
|
</view> |
|
<view class="bottom" bindtap="editCenteruserInfo">保存</view> |
|
</view> |
|
</view> |