index.wxml 972 B

12345678910111213141516171819
  1. <!--components/tail_tip/index.wxml-->
  2. <view class="item border-radius-20" bindtap="godetail" data-item="{{item}}" data-type="{{type}}">
  3. <view class="name over">
  4. <van-icon name="wap-home" />
  5. <text>{{item.meetingRecordVo.meetingName}}</text>
  6. </view>
  7. <view class="date">{{item.meetingRecordVo.appointmentDate}} {{item.meetingRecordVo.appointmentStartTime}}~{{item.meetingRecordVo.appointmentEndTime}}</view>
  8. <view class="flex">
  9. <!-- <image src="/static/status/audit.png" mode=""/> -->
  10. 接收人:{{item.turnName}}
  11. </view>
  12. <view class="position">
  13. <van-icon name="location" />
  14. <text>{{item.meetingRecordVo.meetingAddress}}</text>
  15. </view>
  16. <view class="position col" wx:if="{{type=='renewalContract-audit'}}">续约人:吴依依
  17. </view>
  18. <image class="status-img" src="/static/status/{{item.status==1?'audit':item.status==2?'pass':item.status==3?'refuse':'cancel'}}.png" mode="" />
  19. </view>