daofu-applet/pages/t-j/g-z-r-z/index/index.wxml
2024-01-29 17:42:38 +08:00

25 lines
984 B
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/duty/index/index.wxml-->
<title-bar title="工作日志"></title-bar>
<!-- tab菜单 -->
<scroll-view scroll-x class="bg-white nav">
<view class="flex text-center">
<view class="cu-item flex-sub {{index==currentIndex?'text-blue cur':''}}" wx:for="{{tabs}}" wx:key catchtap="tabSelect" data-index="{{index}}">
{{item.lab}}
</view>
</view>
</scroll-view>
<scroll-view scroll-y style="height: calc(100vh - 90rpx - {{topBarH}}px);" refresher-enabled>
<picker wx:if="{{currentIndex!=0}}" mode="date" value="{{dateFilter}}" bindchange="bindDateChange">
<view class="picker">
选择时间: {{dateFilter}}
</view>
</picker>
<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>
</scroll-view>