12345678910111213141516171819202122232425262728293031323334 |
- <!--pages/searchRecords/searchRecords.wxml 检索记录-->
- <navBar></navBar>
- <van-notify id="van-notify" />
- <view class="searchRecords">
- <view class="head">
- <text>检索记录</text>
- </view>
- <scroll-view type="list" scroll-y class="main">
- <block wx:for="{{tableData}}" wx:key="index">
- <myCard>
- <view slot="head_left">
- {{index}}{{item.name}}
- </view>
- <view slot="head_right">
- {{item.time}}
- </view>
- <view>
- <swiper indicator-dots="{{true}}"
- autoplay="{{true}}" interval="{{2000}}" duration="{{500}}">
- <block wx:for="{{item.systemFileList}}" wx:for-item="img" wx:key="*this">
- <swiper-item>
- <image src="{{imgHttp+img.guid}}" class="slide-image" data-current="{{img}}" data-imgList="{{item.systemFileList}}" bindtap="previewImage"/>
- </swiper-item>
- </block>
- </swiper>
- </view>
- </myCard>
- </block>
- <view class="loadData" wx:if="{{total && tableData.length>0}}">
- <view wx:if="{{total>tableData.length}}" bind:tap="loadMore">加载更多</view>
- <view wx:else>没有更多了</view>
- </view>
- </scroll-view>
- </view>
|