| | |
| | | <t-dialog |
| | | visible="{{timeInfoVisible}}" |
| | | title="时间设置说明" |
| | | content="• 设置两小时后的灌溉时间:\n在此处选择具体的开始时间\n\n• 设置两小时内的灌溉时间:\n创建完成后点击发布即可立即开始灌溉" |
| | | confirmBtn="我知道了" |
| | | bind:confirm="onTimeInfoConfirm" |
| | | bind:cancel="onTimeInfoConfirm" |
| | | /> |
| | | > |
| | | <view slot="content" class="time-info-content"> |
| | | <view class="time-info-item"> |
| | | <view class="info-text-container"> |
| | | <view class="info-title">设置八小时后的灌溉时间</view> |
| | | <view class="info-desc">在此处选择具体的开始时间</view> |
| | | </view> |
| | | </view> |
| | | <view class="divider"></view> |
| | | <view class="time-info-item"> |
| | | <view class="info-text-container"> |
| | | <view class="info-title">设置八小时内的灌溉时间</view> |
| | | <view class="info-desc">创建完成后点击发布即可立即开始灌溉</view> |
| | | </view> |
| | | </view> |
| | | </view> |
| | | </t-dialog> |
| | | |
| | | <!-- 选择项目 --> |
| | | <view class="form-item" bindtap="showProjectPicker"> |
| | |
| | | <block wx:for="{{selectedProject.groups}}" wx:key="id" wx:for-item="group" wx:for-index="groupIndex"> |
| | | <view class="group-item {{group.selected ? 'selected' : ''}}" bindtap="navigateToGroupDetail" data-group-index="{{groupIndex}}"> |
| | | <view class="group-info"> |
| | | <view class="group-name">{{group.name || '未命名轮灌组'}}({{group.intakeCount}}个取水口)</view> |
| | | <text class="group-index">{{groupIndex + 1}}.</text> |
| | | <view class="group-name"> |
| | | <text class="group-name-text">{{group.name || '未命名轮灌组'}}</text> |
| | | <text class="group-intake-count">(共{{group.intakeCount}}个取水口)</text> |
| | | </view> |
| | | </view> |
| | | <view class="group-duration"> |
| | | <input |
| | |
| | | </block> |
| | | </block> |
| | | <view wx:else class="empty-container"> |
| | | <image class="empty-image" src="/images/empty.png" mode="aspectFit"></image> |
| | | <image class="empty-image" src="/images/empty.svg" mode="aspectFit"></image> |
| | | <view class="empty-text">暂无轮灌组数据</view> |
| | | <view class="empty-text">请刷新或稍后再试</view> |
| | | </view> |