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
<!--subpages/searchResult/pages/searchResult/searchResult.wxml-->
|
|
<view class="header">
|
|
<image src="../../../../images/back.png" class="back" style=" top: {{statusHeight}}px;width: 50rpx;height: 50rpx;" bindtap="back" mode="" />
|
|
<view class="navigation" style="height: {{navigationHeight}}px; top: {{statusHeight}}px;">
|
|
打卡记录
|
|
</view>
|
|
</view>
|
|
<view class="content">
|
|
|
|
<scroll-view class="scroll" scroll-y="{{true}}" lower-threshold="{{ lowerThreshold }}" bindscrolltolower="onScrollToLower">
|
|
<view class="card">
|
|
<view class="list_card" wx:for="{{tableData}}" wx:key="index">
|
|
<view class="left">
|
|
<view class="name">打卡人:{{item.name}}</view>
|
|
<view class="time">打卡时间:{{item.clockInTime}}</view>
|
|
<view class="address">打卡地址: {{item.clockInAddress}}</view>
|
|
</view>
|
|
</view>
|
|
</view>
|
|
<load-more loadVisible="{{loadMoreVisible}}" loadType="{{loadMoreType}}"></load-more>
|
|
<no-data isShow="{{nodata}}" wx:if="{{nodata}}"></no-data>
|
|
</scroll-view>
|
|
|
|
</view>
|