log.wxml 2.4 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465
  1. <cu-custom bgColor="bg-lw-header" isCustom="{{true}}">
  2. <view slot="content">预约记录</view>
  3. </cu-custom>
  4. <view class='cu-list menu-avatar bg-white margin-top-xs shadow' wx:for="{{list}}" wx:key="key">
  5. <view class="cu-bar bg-white solid-bottom padding-top padding-bottom">
  6. <view class='action'>
  7. <text class='text-df text-gray'></text> {{item.lock_name}}
  8. </view>
  9. <view class='action'>
  10. <text class='text-df {{item.status == 4 ? "text-red" : "text-blue"}}'>{{item.status_name}}</text>
  11. </view>
  12. </view>
  13. <view class="cu-bar bg-white">
  14. <view class='action'>
  15. <text class='text-black text-df'>日期:{{item.date}}</text>
  16. </view>
  17. </view>
  18. <view class="cu-bar bg-white">
  19. <view class='action'>
  20. <text class='text-black text-df'>时间:{{item.time}}</text>
  21. </view>
  22. </view>
  23. <view class='bg-white text-right solid-top padding-left padding-right padding-top-xs padding-bottom-xs' wx:if="{{item.status == 2}}">
  24. <view class='cu-tag radius line-black xl' bindtap='showPassword' data-id='{{item.id}}'>查看密码</view>
  25. </view>
  26. </view>
  27. <view wx:if="no_more" class="no_more">没有更多数据</view>
  28. <view class="cu-modal {{modalName=='DialogModal'?'show':''}}">
  29. <view class="cu-dialog">
  30. <view class="cu-bar bg-white justify-end">
  31. <view class="content">门锁密码</view>
  32. <view class="action" bindtap="hideModal">
  33. <text class="cuIcon-close text-red"></text>
  34. </view>
  35. </view>
  36. <view class="padding-xl text-xl">
  37. {{password}}
  38. </view>
  39. <view class="cu-bar bg-white justify-end">
  40. <view class="action" style="display: flex;justify-content: flex-end;">
  41. <button class="cu-btn line-green text-green" bindtap="hideModal" style="width:150rpx;">关闭</button>
  42. <button class="cu-btn bg-green margin-left" bindtap="refreshPassword" style="width:200rpx;margin-left:20rpx;">刷新密码</button>
  43. </view>
  44. </view>
  45. </view>
  46. </view>
  47. <view class="footer-view"></view>
  48. <view class="cu-bar tabbar bg-white footer">
  49. <view class="action" bind:tap="toIndex">
  50. <view class="cuIcon-cu-image">
  51. <image src="/common/images/tabbar/index.png"></image>
  52. </view>
  53. <view class="text-gray">茶室</view>
  54. </view>
  55. <view class="action">
  56. <view class="cuIcon-cu-image">
  57. <image src="/common/images/tabbar/my_cur.png"></image>
  58. </view>
  59. <view class="text-red">预约记录</view>
  60. </view>
  61. </view>