scene.wxml 1.8 KB

12345678910111213141516171819202122232425262728
  1. <!--pages/scene/scene.wxml-->
  2. <view class="project">
  3. <text>工程名称:</text>
  4. <button bindtap="Refreshlist">刷新列表</button>
  5. <image src="https://cloud.long-chi.com/resource/miniprogram-lightcontrol/image/addition.png" bindtap="apption"></image>
  6. </view>
  7. <view class="engin">
  8. <block wx:for="{{array}}" wx:key="id" wx:for-index="child">
  9. <view class="engineering">
  10. <text>{{item.groupName}}</text>
  11. <image src="https://cloud.long-chi.com/resource/miniprogram-lightcontrol/image/modify.png" class="engineering-image-1" bindtap="ShowChanges" data-indexdel="{{child}}"></image>
  12. <image src="https://cloud.long-chi.com/resource/miniprogram-lightcontrol/image/Scanning.png" class="qrcode" bindtap="scanCodeEvent" data-indexdel="{{child}}"></image>
  13. <image src="{{displaypicture}}" class="develop" bindtap="Develop" data-indexdel="{{child}}"></image>
  14. <image src="https://cloud.long-chi.com/resource/miniprogram-lightcontrol/image/delete.png" class="engineering-image-2" bindtap="removeapption" data-indexdel="{{child}}"></image>
  15. </view>
  16. <view wx:for="{{item.devices}}" wx:key="id" class="develops" wx:for-item="devices" hidden="{{item.insert?'':'true'}}">
  17. <view class="develops-1">
  18. {{devices.deviceSn}}
  19. </view>
  20. <view class="develops-2">{{devices.deviceName}}</view>
  21. <view class="develops-3">{{devices.status}}</view>
  22. <image src="https://cloud.long-chi.com/resource/miniprogram-lightcontrol/image/set.png" style="right: 9%;" bindtap="modifyequipmentname" data-indexdel="{{[child,index]}}"></image>
  23. <image src="https://cloud.long-chi.com/resource/miniprogram-lightcontrol/image/delete.png" style="right: 2%;width:calc(100vw * 15/375);height: calc(100vw * 28/375);" bindtap="Deletedevice" data-indexdel="{{[child,index]}}"></image>
  24. </view>
  25. </block>
  26. </view>