deviceCheckList.wxml 1.7 KB

123456789101112131415161718192021222324252627282930313233343536
  1. <!--pages/deviceCheck/deviceCheck.wxml-->
  2. <view class="viewBox">
  3. <view class="list-box">
  4. <scroll-view scroll-y="true" class="sv">
  5. <block wx:for="{{checkList}}" wx:key="value">
  6. <view class="weui-cells">
  7. <view class="time-select" style="padding-top: 10px;">
  8. <view>
  9. <text style="color:#426666;font-size:1.0rem;" >{{item.checkTitle}}</text>
  10. </view>
  11. <view>
  12. <text style="color:gray"> {{item.warningDesc}}</text>
  13. </view>
  14. <view>
  15. <text class="{{item.closeStatus=='0' ? 'processStatusNameNormal':'processStatusNameComplete'}}" >{{item.processStatusName}}</text>
  16. <text style="margin-left: 10px;color:gray;font-size:0.7rem;">{{item.updateUser}}</text>
  17. <text style="margin-left: 10px;color:gray;font-size:0.7rem;">{{item.updateTimeText}}</text>
  18. </view>
  19. </view>
  20. <view class="button">
  21. <view class="button-check">
  22. <button class="check-btn" data-checkid="{{item.id}}" bindtap="checkProcessHandle">
  23. <text class="text" style="font-size:0.6rem;display:flex;justify-content:center;align-items:center;height:22px;color:white">处理</text>
  24. </button>
  25. </view>
  26. <view class="button-check">
  27. <button class="check-btn" data-checkid="{{item.id}}" data-rtucode="{{item.rtuCode}}" bindtap="locationToHandle">
  28. <text class="text" style="font-size:0.6rem;display:flex;justify-content:center;align-items:center;height:22px;color:white">导航</text>
  29. </button>
  30. </view>
  31. </view>
  32. </view>
  33. </block>
  34. </scroll-view>
  35. </view>
  36. </view>