88 lines
2.8 KiB
Plaintext
88 lines
2.8 KiB
Plaintext
|
<view class="page-body">
|
||
|
<!-- <form bind:submitToGroup="onSubmitToGroup">
|
||
|
<view class="weui-cells__title">姓名</view>
|
||
|
<textarea value="{{userInfo.realname}}" />
|
||
|
</form> -->
|
||
|
|
||
|
<view class="page-section">
|
||
|
<view class="weui-cells__title">姓名</view>
|
||
|
<view class="weui-cells weui-cells_after-title nameBox">
|
||
|
<textarea
|
||
|
class="textarea"
|
||
|
value="{{userInfo.realname}}"
|
||
|
style="padding: 20rpx;"
|
||
|
bindinput="onBioInput"
|
||
|
placeholder="请输入姓名"
|
||
|
></textarea>
|
||
|
<!-- <view class="weui-cell weui-cell_input">
|
||
|
{{userInfo.realname}}
|
||
|
</view> -->
|
||
|
</view>
|
||
|
</view>
|
||
|
<view class="page-section">
|
||
|
<view class="weui-cells__title">手机号</view>
|
||
|
<view class="weui-cells weui-cells_after-title">
|
||
|
<view class="weui-cell weui-cell_input">
|
||
|
<textarea
|
||
|
class="textarea"
|
||
|
value="{{userInfo.phone}}"
|
||
|
style="padding: 10rpx;height: 60rpx;"
|
||
|
bindinput="onBioInput"
|
||
|
placeholder="请输入手机号"
|
||
|
></textarea>
|
||
|
<!-- {{userInfo.phone}} -->
|
||
|
</view>
|
||
|
</view>
|
||
|
</view>
|
||
|
<view class="page-section">
|
||
|
<view class="weui-cells__title">身份证号</view>
|
||
|
<view class="weui-cells weui-cells_after-title">
|
||
|
<view class="weui-cell weui-cell_input">
|
||
|
<textarea
|
||
|
class="textarea"
|
||
|
value="{{userInfo.idcard}}"
|
||
|
style="padding: 10rpx;height: 60rpx;"
|
||
|
bindinput="onBioInput"
|
||
|
placeholder="请输入省份证号"
|
||
|
></textarea>
|
||
|
<!-- {{userInfo.idcard}} -->
|
||
|
</view>
|
||
|
</view>
|
||
|
</view>
|
||
|
<view class="page-section">
|
||
|
<view class="weui-cells__title">队伍</view>
|
||
|
<view class="weui-cells weui-cells_after-title i-flex i-flex-spb">
|
||
|
<view class="weui-cell weui-cell_input">
|
||
|
{{category_name}}
|
||
|
</view>
|
||
|
<view style="padding-right:20rpx;" bindtap="setCategory">
|
||
|
<text style="color:#25ca9f;padding-right:10rpx;">请选择</text><text class="iconfont icon-xiangyoujiantou f-26 col-7"></text>
|
||
|
</view>
|
||
|
</view>
|
||
|
</view>
|
||
|
|
||
|
<button bindtap="saveBio" type="primary" style="margin-top: 40rpx;" class="saveEdit">保存</button>
|
||
|
|
||
|
<!-- 选择队伍 -->
|
||
|
<view class="ruleZhezhao {{show?'isRuleShow':'isRuleHide'}}">
|
||
|
<view class='ruleZhezhaoContent' >
|
||
|
<scroll-view scroll-y="true" style="height: 800rpx;">
|
||
|
<radio-group bindchange="radioChange">
|
||
|
<label class="weui-cell weui-check__label" wx:for="{{UserCategory}}" wx:key="id">
|
||
|
<view class="weui-cell__hd">
|
||
|
<radio value="{{item.category_id}}" checked="{{item.category_id == category_id ? true : ''}}"/>
|
||
|
</view>
|
||
|
<view class="weui-cell__bd">{{item.name}}</view>
|
||
|
</label>
|
||
|
</radio-group>
|
||
|
</scroll-view>
|
||
|
<image src='../../images/6858eb2ca0f4398359feb37255c85ba.png' class='ruleHide' bindtap='setCategory'></image>
|
||
|
<view bindtap="submitCategory" class="bao" >确定</view>
|
||
|
</view>
|
||
|
</view>
|
||
|
<!-- end -->
|
||
|
|
||
|
|
||
|
|
||
|
</view>
|