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.
27 lines
1.2 KiB
27 lines
1.2 KiB
<!--pages/periodic-report/periodic-report.wxml--> |
|
<view class="pages"> |
|
<mp-navigation-bar ext-class="set-bar" title="定期报告"></mp-navigation-bar> |
|
<view class="tab"> |
|
<view class="tab-item {{item.id===active?'active':''}}" wx:for="{{tabList}}" wx:for-index="i" wx:for-item="item" |
|
wx:key="id" bindtap="tabDowm" data-id="{{item.id}}"> |
|
<text class="tab-title">{{item.name}}</text> |
|
<image class="tab-tag" src="../../assets/images/tab-tag.png"></image> |
|
</view> |
|
</view> |
|
<view class="main"> |
|
<scroll-view class="list" scroll-y="true" refresher-enabled refresher-triggered="{{refresher}}" |
|
bindscrolltolower="getList" bindrefresherrefresh="refresh"> |
|
<view class="list-item" wx:for="{{list}}" wx:for-index="i" wx:for-item="item" bindtap="navigate"> |
|
<image class="list-img" |
|
src="https://ss0.baidu.com/94o3dSag_xI4khGko9WTAnF6hhy/zhidao/pic/item/cb8065380cd791230f4870a5ac345982b3b780b3.jpg"> |
|
</image> |
|
<view class="list-info"> |
|
<view class="list-title one-title"> |
|
{{item.title}} |
|
</view> |
|
<view class="list-timer">发布日期:{{item.timer}}</view> |
|
</view> |
|
</view> |
|
</scroll-view> |
|
</view> |
|
</view>
|
|
|