daofu-applet/pages/statistic/g-z-t-j/index/index.wxml
2024-01-30 17:39:39 +08:00

36 lines
1.5 KiB
Plaintext
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

<!--pages/t-j/g-z/index/index.wxml-->
<title-bar title="工作统计"></title-bar>
<scroll-view scroll-y style="height: calc(100vh - {{topBarH}}px);" refresher-enabled bindrefresherrefresh="refresh" bindscrolltolower="getList" refresher-triggered="{{freshIng}}">
<view class="content">
<view class="filter">
<picker mode="date" value="{{dateFilter}}" bindchange="bindDateChange">
<view class="picker">
开始时间: {{dateFilter}}
</view>
</picker>
<view class="line"></view>
<picker mode="date" value="{{dateFilter}}" bindchange="bindDateChange">
<view class="picker">
结束时间: {{dateFilter}}
</view>
</picker>
</view>
<view class="table">
<view catchtap="changeItem" data-item="{{item}}" data-index="{{index}}" class="tab-item {{currentIndex==index?'tab-item-checked':''}}" wx:for="{{tab}}" wx:key="{{item.label}}">
<text class="lab">{{item.label}}</text>
<text class="val">{{item.val}}</text>
<text class="flex">条记录</text>
<image wx:if="{{currentIndex==index}}" class="arrow" src="/images/icon-checked.png" />
</view>
</view>
<!-- 列表 -->
<view catchtap="toDetail" data-item="{{item}}" class="item h-div" wx:for="{{list}}">
<view class="content">
<view class="title">标题</view>
<view class="des">{{item.factorcnt}}</view>
<view class="time">时间2024-01-26</view>
</view>
</view>
<view class="space"></view>
</view>
</scroll-view>