12345678910111213141516171819 |
- <!--components/table/table.wxml-->
- <wxs module="filter" src="./filter.wxs" />
- <scroll-view scroll-x="{{true}}" class="table">
- <view class="table_row">
- <view class="table_rd">
- <view class="viewRd" wx:if="{{!noHead}}"></view>
- <view class="viewRd" wx:for="{{listAll}}" wx:key="type" wx:for-item="pItem" wx:for-index="pIndex" bindtap="toChannl">
- {{pItem.name}}</view>
- </view>
- <view class="table_rd" wx:for="{{list}}" wx:key="type" wx:for-item="pItem" wx:for-index="pIndex" bindtap="toChannl">
- <view class="{{pIndex%2 === 0 ? 'debuRow viewRd': 'viewRd'}}">
- {{pItem.topic_name}}
- </view>
- <view class="{{pIndex%2 === 0 ? 'debuRow viewRd': 'viewRd'}}" wx:for="{{listAll}}" wx:key="type" wx:for-item="sItem" wx:for-index="sIndex">
- {{filter.valueFormat(pItem[sItem.type])}}
- </view>
- </view>
- </view>
- </scroll-view>
|