| | |
| | | <view> |
| | | <view wx:for="{{clueTaskList}}" wx:key="index" wx:for-index="index"> |
| | | <t-cell title="任务时间" note="{{item._taskTime}}" /> |
| | | <t-cell title="任务位置" note="{{item._location}}"/> |
| | | <t-cell title="响应时间" note="{{item._resLevelTxt}}"/> |
| | | <t-cell title="出行方式" note="{{item._travelModeTxt}}"/> |
| | | <t-cell title="无人机" note="{{item._hasUavTxt}}"/> |
| | | |
| | | <view |
| | | class="clue-task__wrap" |
| | | wx:for="{{clueTaskList}}" |
| | | wx:key="index" |
| | | wx:for-index="index" |
| | | data-index="{{index}}" |
| | | bindtap="handleClueTaskClick" |
| | | > |
| | | <view class="clue-task__title-wrap"> |
| | | <view class="clue-task__title"> |
| | | <t-tag variant="light" theme="{{item.finished ? 'success' : 'danger'}}" |
| | | >{{item.finished ? '完成' : '待处理'}}</t-tag |
| | | > |
| | | {{item._taskTime}} |
| | | </view> |
| | | <view class="clue-task__abstract"> |
| | | 应急巡查 |
| | | <t-icon name="chevron-right" size="var(--icon-width)" color="black" /> |
| | | </view> |
| | | </view> |
| | | <view class="clue-task__abstract"> 线索编号:{{item.clueId}} </view> |
| | | <view class="clue-task__abstract"> 任务位置:{{item._location}} </view> |
| | | <t-divider /> |
| | | <view class="clue-task__tags"> |
| | | <view class="clue-task__tag-item"> |
| | | <span>{{item._resLevelTxt}}</span> |
| | | <span class="clue-task__label">响应时间</span> |
| | | </view> |
| | | <view class="clue-task__tag-item"> |
| | | <span>{{item._travelModeTxt}}</span> |
| | | <span class="clue-task__label">出行方式</span> |
| | | </view> |
| | | <view class="clue-task__tag-item"> |
| | | <span>{{item._hasUavTxt}}</span> |
| | | <span class="clue-task__label">无人机</span> |
| | | </view> |
| | | </view> |
| | | </view> |
| | | </view> |