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.
45 lines
1.9 KiB
45 lines
1.9 KiB
<view class="container"> |
|
<view class="other"> |
|
<view class="other-top"> |
|
<image src="../../../images/left.png"></image> |
|
所有活动 |
|
</view> |
|
<view class="other-circle" wx:if="{{otheractive.length>0}}"> |
|
<block wx:for="{{otheractive}}" wx:key="otheractive"> |
|
<view class="other-list" bindtap="tomanege" id="{{item.activityId}}"> |
|
<view class="list-top"> |
|
<view class="other-left"> |
|
<image src="{{item.activityLogo?item.activityLogo:'../../../images/logo.jpg'}}" mode='aspectFill'></image> |
|
</view> |
|
<view class="other-right"> |
|
<view class="other-name">{{item.activityName}}</view> |
|
<view class="other-time">{{item.startTime}}-{{item.endTime}}</view> |
|
<view class="other-people">{{item.activityAddr || '-'}}</view> |
|
</view> |
|
</view> |
|
<view class="numlist"> |
|
<view class="numleft"> |
|
<text class="joing" wx:if="{{item.registerStatus=='0'}}">未开始</text> |
|
<text class="joing" wx:elif="{{item.registerStatus=='1'}}">报名中</text> |
|
<text class="joing" wx:elif="{{item.registerStatus=='2'}}">报名结束</text> |
|
<text class="joing" wx:else>活动取消</text> |
|
<text class="price">¥{{item.lowestPrice}}起</text> |
|
</view> |
|
<view class="numright"> |
|
<view class="see"> |
|
<image src='../../../images/viewk.png'></image> |
|
浏览{{item.totalRead?item.totalRead:0}} |
|
</view> |
|
<view> |
|
<image src='../../../images/sharek.png'></image> |
|
分享{{item.totalShare?item.totalShare:0}} |
|
</view> |
|
</view> |
|
</view> |
|
</view> |
|
|
|
</block> |
|
</view> |
|
<view wx:else>暂时没有数据哦</view> |
|
</view> |
|
</view> |