index.wxml 897 B

1234567891011121314151617181920212223242526
  1. <block wx:if="{{garden_id}}">
  2. <view class="header">
  3. <image class="doorPic" src="http://ro7r875ut.hn-bkt.clouddn.com/appointment.png" />
  4. <view class="gateTips">
  5. <view class="qiandao">二维码开门</view>
  6. <view class="tips">在这里是将您所在小区的开门权限,请点击下面二维码进行开门</view>
  7. </view>
  8. </view>
  9. <block wx:for="{{gate_list}}" wx:key="device_id">
  10. <view class="gate" data-device_id="{{item.device_id}}" bindtap="openDoor">
  11. <view class="gate_name">
  12. <image class="suoPic" src="http://ro7r875ut.hn-bkt.clouddn.com/suo.png" />
  13. </view>
  14. <view class="gate_name">
  15. <text>{{item.device_name}}</text>
  16. <text>{{item.location}}</text>
  17. </view>
  18. </view>
  19. </block>
  20. </block>
  21. <block wx:else="">
  22. <nopermission />
  23. </block>
  24. <tabbar tabbar="{{tabbar}}" unreadCount="{{unreadCountGate}}">
  25. </tabbar>