|  |  |  | 
|---|
|  |  |  | <text class="value">{{stopTime}}</text> | 
|---|
|  |  |  | </view> | 
|---|
|  |  |  |  | 
|---|
|  |  |  | <!-- 实际中止时间信息 --> | 
|---|
|  |  |  | <view class="time-info" wx:if="{{planStatusClass === 'terminated' && realStopTime}}"> | 
|---|
|  |  |  | <text class="label">实际中止时间:</text> | 
|---|
|  |  |  | <text class="value highlight-text">{{realStopTime}}</text> | 
|---|
|  |  |  | </view> | 
|---|
|  |  |  |  | 
|---|
|  |  |  | <!-- 取水口命令发布失败数 --> | 
|---|
|  |  |  | <view class="time-info" wx:if="{{failureCount > 0}}"> | 
|---|
|  |  |  | <text class="label">命令发布失败数:</text> | 
|---|
|  |  |  | 
|---|
|  |  |  | <!-- 轮灌组信息 --> | 
|---|
|  |  |  | <view class="group-info"> | 
|---|
|  |  |  | <view class="group-name-row"> | 
|---|
|  |  |  | <text class="group-index">{{index + 1}}.</text> | 
|---|
|  |  |  | <text class="group-label">轮灌组:</text> | 
|---|
|  |  |  | <text class="group-name">{{group.name}}</text> | 
|---|
|  |  |  | <!-- 轮灌组状态标识 --> | 
|---|
|  |  |  | 
|---|
|  |  |  | <text class="status-text">{{group.statusText}}</text> | 
|---|
|  |  |  | </view> | 
|---|
|  |  |  | </view> | 
|---|
|  |  |  | <view class="group-time-info"> | 
|---|
|  |  |  | <!-- 轮灌时间信息 - 只有在取消开阀状态时不显示时间信息 --> | 
|---|
|  |  |  | <!-- 其他所有状态(包括中途关阀)都显示时间信息 --> | 
|---|
|  |  |  | <view class="group-time-info" wx:if="{{group.status !== 'canceled'}}"> | 
|---|
|  |  |  | <view class="time-row"> | 
|---|
|  |  |  | <text class="time-label">开始时间:</text> | 
|---|
|  |  |  | <text class="time-value">{{group.startTime}}</text> | 
|---|