| 12345678910111213141516171819202122232425262728 |
- <view class="toptip {{tipStaus}} text-white {{tipType}}" style='top:{{CustomBar}}px;'>{{tipText}}</view>
- <cu-custom bgColor="bg-color" isBack="{{true}}" title="新闻列表"></cu-custom>
- <view class="worker_search">
- <view class="worker_search_con">
- <input type="text" placeholder="请输入搜索内容" value="{{keyword}}" bindinput="setKeyword"></input>
- <view class="text-color" bindtap="searchList"><text class="cuIcon-search"></text>搜索</view>
- </view>
- </view>
- <scroll-view scroll-y enable-back-to-top bindscrolltolower="bindscrolltolower" style="height:{{scrollHeight}}px" lower-threshold="180">
- <view class="newsList" wx:if="{{newsList}}">
- <view wx:for="{{newsList}}" wx:for-item="item" bindtap="goNewsInfo" data-id="{{item.id}}">
- <view class="newsListInfo">
- <text>{{item.abstracts}}</text>
- <view>
- <text>{{item.source}} {{item.hitTotal}}万阅读</text>
- <text>{{item.createTime}}</text>
- </view>
- </view>
- <view class="newsListImg">
- <image src="{{item.imageUrl}}"></image>
- </view>
- </view>
- </view>
- <view class="no_data" wx:else>
- <image src="/img/nodata_img2.png"></image>
- <view class="no_data_txt">暂无数据</view>
- </view>
- </scroll-view>
|