flower-mp/pages/today/index.wxml
2025-10-11 14:45:02 +08:00

41 lines
1.7 KiB
Plaintext

<!--pages/today/index.wxml-->
<view>
<view>
<view wx:if="{{list.length === 0}}" class="flex flex-center flex-col " style="margin-top: 268rpx;">
<view class="empty flex flex-center flex-col">
</view>
<view class="mt-16 flex flex-center flex-col">
<view class="font-16 bold">已完成所有任务</view>
<view class="font-12 grey mt-16">今天暂无农事需要完成</view>
</view>
</view>
<view wx:else class="padding">
<view>
今日任务
</view>
<view class="mt-32">
<view wx:for="{{list}}">
<view class="">
<view wx:for="{{item.FarmRecord}}" wx:for-item="sub" class=" row padding mt-32">
<view>
<view class="action font-16 bold">{{sub.title}}</view>
<view class="flex flex-center flex-justify-between">
<view class="flex flex-center flex-justify-start mt-16">
<image src="{{item.pic}}" class="pic"></image>
<view class="ml-16">{{item.name}}</view>
</view>
<view>
<t-button wx:if="{{sub.status == 1}}" theme="danger" variant="outline" shape="round" size="small" data-item="{{sub}}" bind:tap="addFarmLog">未完成</t-button>
<t-button wx:if="{{sub.status == 2}}" theme="primary" shape="round" size="small" data-item="{{sub}}" bind:tap="addFarmLog">完成</t-button>
<t-button wx:if="{{sub.status == 3}}" theme="primary" shape="round" size="small" data-item="{{sub}}" bind:tap="addFarmLog">逾期</t-button>
</view>
</view>
</view>
</view>
</view>
</view>
</view>
</view>
</view>
</view>