|
|
|
<view class="top_box">
|
|
|
|
<view wx:for="{{titleList}}" class="{{item.active?'active_title':'title'}}" wx:key="index" bindtap="changeTitle" data-index="{{index}}">
|
|
|
|
<view class="">{{item.title}}</view>
|
|
|
|
<view class="line" wx:if="{{item.active}}"></view>
|
|
|
|
</view>
|
|
|
|
</view>
|
|
|
|
<wxs src="./filter.wxs" module="filter"></wxs>
|
|
|
|
<van-checkbox-group value="{{ result }}" bind:change="onChange">
|
|
|
|
<!-- <view class="my_theme" wx:if="{{active==0}}"> -->
|
|
|
|
<view class="event_card" wx:for="{{themeList}}" wx:key="idxa">
|
|
|
|
<view class="card_head">
|
|
|
|
<van-checkbox name="{{filter.stringify(item)}}" shape="square" class="van-checkbox"></van-checkbox>
|
|
|
|
<view style=" font-size: 24rpx;color: rgba(153, 153, 153, 1); width:240rpx;">
|
|
|
|
{{item.AddTime}}
|
|
|
|
</view>
|
|
|
|
<view class="tag"> 已完成</view>
|
|
|
|
</view>
|
|
|
|
<view class="card_title">
|
|
|
|
<text>{{item.Name}}</text>
|
|
|
|
</view>
|
|
|
|
<view class="card_label" style="margin-top: 32rpx;">
|
|
|
|
<text style="color: rgba(153, 153, 153, 1);">相关报道(条)</text>
|
|
|
|
<text>{{item.ReportSum}}</text>
|
|
|
|
</view>
|
|
|
|
<view class="card_label" style="margin-top: 24rpx;">
|
|
|
|
<text style="color: rgba(153, 153, 153, 1);">开始时间</text>
|
|
|
|
<text>{{item.StartTime}}</text>
|
|
|
|
</view>
|
|
|
|
<view class="card_label" style="margin-top: 24rpx;">
|
|
|
|
<text style="color: rgba(153, 153, 153, 1);">结束时间</text>
|
|
|
|
<text>{{item.EndTime}}</text>
|
|
|
|
</view>
|
|
|
|
<view class="card_label" style="margin-top: 24rpx;">
|
|
|
|
<text style="color: rgba(153, 153, 153, 1);">传播周期(条)</text>
|
|
|
|
<text>{{item.events_influence}}</text>
|
|
|
|
</view>
|
|
|
|
</view>
|
|
|
|
|
|
|
|
</van-checkbox-group>
|