拓恒飞手平台小程序
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

12 lines
645B

  1. <!--components/TaskInfo/index.wxml-->
  2. <view class="info_container">
  3. <view class="info_head">
  4. <text style="color: rgba(0, 0, 0, 1)">{{data.platformName}}</text>
  5. <text wx:if="{{type === 'list'}}">{{data.createTime}}</text>
  6. </view>
  7. <view class="info_item">租户:{{data.tenantName}}</view>
  8. <view class="info_item">任务地点:{{data.patrolLocation}}</view>
  9. <view class="info_item">期望时间:{{data.taskStartTime}}</view>
  10. <view wx:if="{{type === 'list'}}" class="info_item">任务状态:<text style="color: {{statusList[data.status].color}}">{{statusList[data.status].text}}</text></view>
  11. </view>