123456789101112131415161718192021222324252627282930313233343536373839 |
- <view class='topHeader'>
- <view class="searchBox">
- <view class="searchView">
- <image src="../../assets/img/ss.png" mode="widthFix"/>
- <input bindinput="getKeyword" placeholder="请输入链接标题搜索" type='text' confirm-type="search" bindconfirm='searchEvent' confirm-type="search" bindconfirm="getList"/>
- </view>
- <view class="ss_button" bindtap="getList" data-load="true">搜索</view>
- </view>
- <view class="cz">
- <view class="headHint">共 {{total}} 个</view>
- <view class="refresh" bindtap="getList" data-load="true">刷新</view>
- </view>
- </view>
- <scroll-view class="container">
- <view class="cardList" wx:for="{{wxList}}" wx:key="index" data-item="{{item}}">
- <view class="infoBox">
- <view class="box">
- <image class="goodsImg" src='{{item.thumb_img}}' mode="widthFix"></image>
- </view>
- <view class="info">
- <view class="info1">
- <view class="name">
- {{item.title}}
- </view>
- <image src="../../assets/img/shanchu.png" mode="widthFix" class="delete" bindtap="toDel" data-link="{{item.link_id}}"></image>
- </view>
- <view class="info2">
- <view>
- <text class="time">{{item.created_time}}</text>
- <text class="read">阅读 {{item.read_times}}</text>
- </view>
- <view class="copyLink" bindtap="copyEvent" data-link="{{item.link_url}}">复制链接</view>
- </view>
- </view>
- </view>
- </view>
- </scroll-view>
- <view wx:if="{{wxList.length==0}}" class="none">暂无数据</view>
|