faultInfo.wxml 3.4 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859
  1. <!--pages/faultInfo/faultInfo.wxml-->
  2. <view class="container">
  3. <view style="display: flex;flex-direction: column;height: 100%;">
  4. <scroll-view class="pageScroll" scroll-y enable-flex="{{true}}">
  5. <view class="pageScrollLayout">
  6. <view>
  7. <view>
  8. <text class="numberText">报修单号:{{itemData.repairNo}}</text>
  9. </view>
  10. <view class="centerInfoLayout">
  11. <view id="contentView" style="display: flex;flex-direction: column;justify-content: start; align-items: center;">
  12. <view class="centerInfoLayout_Line" style="height: {{contentLineHeight}}px;"></view>
  13. <view wx:for="{{faultProcessList}}" wx:key="index">
  14. <faultInfoItem itemData="{{item}}"></faultInfoItem>
  15. </view>
  16. </view>
  17. <view class="centerFaultDeviceLayout">
  18. <text class="centerFaultDeviceLayout_Title">设备详情</text>
  19. <view class="centerFaultDeviceLayout_ItemLayout">
  20. <view class="centerFaultDeviceLayout_ItemLayout2">
  21. <view class="centerFaultDeviceLayout_ItemLayout3">
  22. <text class="centerFaultDeviceLayout_ItemLayout3_Left">故障级别</text>
  23. <text class="centerFaultDeviceLayout_ItemLayout3_Rgiht">{{faultLevText}}</text>
  24. </view>
  25. <view class="centerFaultDeviceLayout_ItemLayout3">
  26. <text class="centerFaultDeviceLayout_ItemLayout3_Left">地区:</text>
  27. <text class="centerFaultDeviceLayout_ItemLayout3_Rgiht">{{itemData.provinceCity}}</text>
  28. </view>
  29. <view class="centerFaultDeviceLayout_ItemLayout3">
  30. <text class="centerFaultDeviceLayout_ItemLayout3_Left">学校:</text>
  31. <text class="centerFaultDeviceLayout_ItemLayout3_Rgiht">{{itemData.schoolName}}</text>
  32. </view>
  33. <view class="centerFaultDeviceLayout_ItemLayout3">
  34. <text class="centerFaultDeviceLayout_ItemLayout3_Left">班级:</text>
  35. <text class="centerFaultDeviceLayout_ItemLayout3_Rgiht">{{itemData.className}}</text>
  36. </view>
  37. <view class="centerFaultDeviceLayout_ItemLayout3">
  38. <text class="centerFaultDeviceLayout_ItemLayout3_Left">设备ID:</text>
  39. <text class="centerFaultDeviceLayout_ItemLayout3_Rgiht">{{itemData.deviceId}}</text>
  40. </view>
  41. </view>
  42. </view>
  43. </view>
  44. </view>
  45. </view>
  46. </view>
  47. </scroll-view>
  48. <view class="appraiseLayout" hidden="{{showAppraise}}" catchtap="toCommentPage">
  49. <text style="font-size: 31rpx;color: #ffffff;">评价</text>
  50. </view>
  51. </view>
  52. </view>