list.wxml 2.0 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546
  1. <cu-custom bgColor="bg-lw-header" isCustom="{{true}}">
  2. <view slot="content">预约记录</view>
  3. </cu-custom>
  4. <view>
  5. <view class="cu-card">
  6. <view class="cu-item shadow" wx:for="{{list}}" wx:key="key">
  7. <view class="padding">
  8. <view class="flex align-center justify-between">
  9. <view>
  10. <text class="text-bold text-black">{{item.shift}}</text>
  11. </view>
  12. <view class="cu-tag line-blue radius">{{item.status_text}}</view>
  13. </view>
  14. <view class="text-sm margin-top-xs">出发时间:{{item.start_time}}</view>
  15. <view class="text-sm margin-top-xs" bind:tap="callMobile">工作人员:{{mobile ? mobile : "暂无"}}<text class="margin-left-sm text-lg text-blue cuIcon-dianhua"></text></view>
  16. <view class="grid col-4 grid-square flex-sub margin-top">
  17. <view class="bg-img" bindtap="ViewImage" data-url="{{item.image}}" wx:if="{{item.image}}">
  18. <image src="{{item.image}}" mode="aspectFill"></image>
  19. </view>
  20. </view>
  21. </view>
  22. <view class="text-right solid-form-top padding-lr padding-bottom option-box">
  23. <view class="cu-btn radius bg-blue margin-left" bindtap="showQrcode" data-code="{{item.apply_code}}" wx:if="{{item.status == 2}}">预约码</view>
  24. <view class="cu-btn radius bg-blue margin-left" bindtap="toEva" data-id="{{item.id}}" wx:if="{{item.status == 3}}">评价</view>
  25. </view>
  26. </view>
  27. </view>
  28. <view wx:if="{{no_more}}" class="no_more">没有更多数据</view>
  29. </view>
  30. <view class="foot-view"></view>
  31. <view class="cu-bar tabbar bg-white foot">
  32. <view class="action" bind:tap="toIndex">
  33. <view class="cuIcon-cu-image">
  34. <image src="/common/images/tabbar/index.png"></image>
  35. </view>
  36. <view class="text-gray">预约</view>
  37. </view>
  38. <view class="action">
  39. <view class="cuIcon-cu-image">
  40. <image src="/common/images/tabbar/my_cur.png"></image>
  41. </view>
  42. <view class="text-gray">预约记录</view>
  43. </view>
  44. </view>