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.

37 lines
1.8 KiB

1 year ago
  1. <!--pages/openLockLog/openLockLog.wxml-->
  2. <view class="loglist">
  3. <van-tabs active="{{ active }}" color="#419AFE" sticky bind:change="onChange">
  4. <van-tab title="其他开锁">
  5. <view wx:for="{{locklogList}}" wx:key="locklogList" class="box" style="margin-bottom: 10px;">
  6. <van-cell-group>
  7. <van-cell title="开锁人员:" value="{{item.name}}" />
  8. <van-cell title="电话:" value="{{item.userTelephone}}" />
  9. <van-cell title="开锁方式:" value="{{item.openType}}" />
  10. <van-cell title="开锁房间:" value="{{item.roomName}}" />
  11. <van-cell title="开锁时间:" value="{{item.openTime}}" />
  12. </van-cell-group>
  13. </view>
  14. </van-tab>
  15. <van-tab title="蓝牙开锁">
  16. <view wx:for="{{locklogListOne}}" wx:key="locklogListOne" class="box" style="margin-bottom: 10px;">
  17. <van-cell-group>
  18. <van-cell title="开锁人员:" value="{{item.name}}" />
  19. <van-cell title="电话:" value="{{item.userTelephone}}" />
  20. <van-cell title="开锁方式:" value="{{item.openType}}" />
  21. <van-cell title="开锁房间:" value="{{item.roomName}}" />
  22. <van-cell title="开锁时间:" value="{{item.openTime}}" />
  23. </van-cell-group>
  24. </view>
  25. </van-tab>
  26. <van-tab title="远程开锁" wx:if="{{cardId === ''}}">
  27. <view wx:for="{{locklogListTwo}}" wx:key="locklogListTwo" class="box" style="margin-bottom: 10px;">
  28. <van-cell-group>
  29. <van-cell title="开锁人员:" value="{{item.name}}" />
  30. <van-cell title="电话:" value="{{item.userTelephone}}" />
  31. <van-cell title="开锁方式:" value="{{item.openType}}" />
  32. <van-cell title="开锁房间:" value="{{item.roomName}}" />
  33. <van-cell title="开锁时间:" value="{{item.openTime}}" />
  34. </van-cell-group>
  35. </view>
  36. </van-tab>
  37. </van-tabs>
  38. </view>