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.
23 lines
776 B
23 lines
776 B
<view class="tag-list">
|
|
<view wx:for="{{tabList}}"
|
|
class="tag {{item.value === tabValue?'cur':''}}"
|
|
wx:key="index"
|
|
bind:tap="tabChange"
|
|
data-index="{{item.value}}">
|
|
{{item.label}}
|
|
</view>
|
|
</view>
|
|
|
|
<view class="table">
|
|
<view class="row header">
|
|
<view class="cell">事件类型</view>
|
|
<view class="cell">事件描述</view>
|
|
</view>
|
|
<!-- <block wx:for="{{data[tabValue]}}" wx:for-item="item" wx:for-index="index"> -->
|
|
<block bind:tap="gotopage" data-obj="{{item}}" wx:for="{{data[tabValue]}}" wx:key="index">
|
|
<view class="row {{index % 2 == 0 ? 'even' : 'odd'}}">
|
|
<view class="cell">{{item.categorycode}}</view>
|
|
<view class="cell">{{item.eventcontent}}</view>
|
|
</view>
|
|
</block>
|
|
</view>
|
|
|