daofu-applet/pages/work/f-b-g-z/index/index.wxml
2024-06-06 18:02:51 +08:00

47 lines
1.9 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.

<title-bar title="发布任务"></title-bar>
<!-- 搜索 -->
<view class="cu-bar search">
<view class="search-form round">
<text class="cuIcon-search"></text>
<input bindinput="inputContent" data-name="condition" type="text" placeholder="请输入关键字" confirm-type="search"></input>
</view>
</view>
<view style="background-color: #f5f5f5;">
<view class="filter">
<picker mode="date" value="{{dateFilter}}" bindchange="bindDateChange" data-name="startTime">
<view class="picker">
开始时间: {{startTime}}
</view>
</picker>
<view class="line"></view>
<picker mode="date" value="{{dateFilter}}" bindchange="bindDateChange" data-name="endTime">
<view class="picker">
结束时间: {{endTime}}
</view>
</picker>
</view>
</view>
<scroll-view scroll-y style="height: calc(100vh - 280rpx - {{topBarH}}px);" refresher-enabled bindrefresherrefresh="refresh" bindscrolltolower="getList" lower-threshold="300" refresher-triggered="{{freshIng}}">
<!-- 列表 -->
<view class="item-bg" wx:for="{{2}}">
<view class="item">
<view class="head h-div v-center">
<view class="single"></view>
<view class="title ellipsis flex">常规工作</view>
<!-- <view catchtap="toUp" data-item="{{item}}" data-detail="{{0}}" class="done" wx:if="{{item.workState !=3}}">前往完成</view> -->
<view data-item="{{item}}" data-detail="{{1}}" class="done" >查看详情</view>
</view>
<view class="tv"></view>
<view class="time">任务周期2024-05-01 至 2024-06-20</view>
<view class="time">接收时间2024-05-01</view>
<image class="bottom-img" src="/images/task/icon-bottom-line.png" mode="aspectFill" />
</view>
</view>
<empty wx:if="{{list.length==0}}" />
<view class="space"></view>
</scroll-view>
<view class="option">
<view catchtap="escalationAppeal" class="btn">发布任务</view>
</view>