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.
33 lines
1.0 KiB
33 lines
1.0 KiB
3 years ago
|
<view class="container">
|
||
|
<view class="nav">
|
||
|
<image src="../../../images/left.png"></image>
|
||
|
活动消息
|
||
|
</view>
|
||
|
<view class="cluber">
|
||
|
<block wx:for="{{activeMe}}" wx:key="activeMe">
|
||
|
<view class="list">
|
||
|
<view class="list-top">
|
||
|
报名信息<text>{{item.intro}}</text>
|
||
|
</view>
|
||
|
<view class="list-content">
|
||
|
<view class="content-one">
|
||
|
活动名称:<text>{{item.title}}</text>
|
||
|
</view>
|
||
|
<view class="content-one">
|
||
|
选择费用:<text>{{item.money}}</text>
|
||
|
</view>
|
||
|
<view class="content-one">
|
||
|
报名人:<text>{{item.name}}</text>
|
||
|
</view>
|
||
|
<view class="content-one">
|
||
|
活动人数:<text>{{item.people}}</text>
|
||
|
</view>
|
||
|
<view class="ifpass" wx:if="{{item.status=='3'}}">
|
||
|
<view class="pass">通过</view>
|
||
|
<view class="nopass">不通过</view>
|
||
|
</view>
|
||
|
</view>
|
||
|
</view>
|
||
|
</block>
|
||
|
</view>
|
||
|
</view>
|