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.
32 lines
1.2 KiB
32 lines
1.2 KiB
<view class="container"> |
|
<view class="content"> |
|
<view class="list"> |
|
<view class="title">昵称</view> |
|
<view class="inputbox"><input placeholder="宇航员飞行" value="{{data.nickname}}"/></view> |
|
</view> |
|
<view class="list"> |
|
<view class="title">手机号</view> |
|
<view class="inputbox"><input placeholder="17222222222" 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 placeholder="李三" value="{{data.realname}}"/></view> |
|
</view> |
|
<view class="list"> |
|
<view class="title">身份证号</view> |
|
<view class="inputbox"><input placeholder="451357199812053364" value="{{data.idcard}}"/></view> |
|
</view> |
|
|
|
</view> |
|
</view> |