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.
28 lines
957 B
28 lines
957 B
3 years ago
|
<view class="container">
|
||
|
<view class="top">
|
||
|
<view class="other-top">
|
||
|
<image src="../../../images/left.png"></image>
|
||
|
已选报名填写项
|
||
|
</view>
|
||
|
</view>
|
||
|
<view class="content">
|
||
|
<block wx:for="{{reqlist}}" wx:key="reqlist">
|
||
|
<view class="list">
|
||
|
<view class="list-left" id="{{item.id}}">
|
||
|
<image src="../../../images/remove.png"></image>
|
||
|
<text>{{item.name}}</text>
|
||
|
</view>
|
||
|
<view class="list-right">
|
||
|
必填
|
||
|
<switch checked="{{item.ifcheck}}" bindchange="switchinfoChange"/>
|
||
|
</view>
|
||
|
</view>
|
||
|
</block>
|
||
|
<view class="add" bindtap="toadd"><image src="../../../images/add.png"></image>自定义报名项</view>
|
||
|
</view>
|
||
|
<modal hidden="{{hidden}}" title="报名项" confirm-text="添加" cancel-text="取消"
|
||
|
bindcancel="cancel" bindconfirm="confirm">
|
||
|
<input type="text"/>
|
||
|
</modal>
|
||
|
<view class="bottom">确认</view>
|
||
|
</view>
|