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.
24 lines
1.0 KiB
24 lines
1.0 KiB
<!--pages/special-research/special-research.wxml--> |
|
<view class="pages"> |
|
<mp-navigation-bar ext-class="set-bar" title="专题研究"></mp-navigation-bar> |
|
<view class="search-box"> |
|
<image src="../../assets/images/search-mini.png"></image> |
|
<input type="text" placeholder="请搜索" placeholder-class="placeholder" /> |
|
</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>
|
|
|