list.wxml 570 B

12345678910111213
  1. <view class="item-box" wx:for="{{devices}}" wx:key="openNum" bindtap="changeDevice" data-opennum="{{item.openNum}}">
  2. <image src="/imgs/device/phone.png" class="item-box-icon" />
  3. <image src="/imgs/device/default.png" class="item-box-default" wx:if="{{item.isDefault==1}}" />
  4. <text>{{item.deviceName}}</text>
  5. <text>{{item.openNum}}</text>
  6. </view>
  7. <view class="item-default" wx:if="{{devices.length<1}}">暂无设备</view>
  8. <view class="item-box" bindtap="toAdd">
  9. <view class="item-box-add">+</view>
  10. <view class="item-box-add-text">添加设备</view>
  11. </view>