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.

39 lines
1.6 KiB

3 years ago
<view class="top_box">
3 years ago
<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>
3 years ago
</view>
<wxs src="./filter.wxs" module="filter"></wxs>
<van-checkbox-group value="{{ result }}" bind:change="onChange">
3 years ago
<!-- <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>
3 years ago
</van-checkbox-group>