<!--pages/fzpx/fzpx.wxml-->
|
|
<view class="fzpx">
|
<view class="cu-card dynamic">
|
<view class="cu-item shadow" wx:for="{{ items }}" wx:key="{{item.id}}" bindtap='link' data-str="fzpxInfo" data-flag="{{item.flag}}" data-id="{{item.id}}">
|
<view class="fzpx-list">
|
<view class="fzpx-list-img">
|
<image src="{{item.attList[0].imgPath}}" mode="aspectFit"></image>
|
</view>
|
<view class="fzpx-list-b">
|
<view class="fzpx-list-b-left">
|
<view class="fzpx-list-b-left-div font-lg">{{item.activityTitle}}</view>
|
<view class="fzpx-list-b-left-div">{{item.startTime}}
|
<span></span> {{item.applyNum}}/{{item.totalNum}}人报名</view>
|
</view>
|
<!--
|
<view class="fzpx-list-b-right" data-str="fzpxInfo" data-id="3" bindtap='linkFunction'>我要报名</view> -->
|
<button class="cu-btn bg-blue" wx:if="{{ item.flag == true}}">我要报名</button>
|
|
<button class="cu-btn" wx:else>已报名</button>
|
</view>
|
</view>
|
</view>
|
|
</view>
|
|
</view>
|