1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859 |
- <!--pages/faultInfo/faultInfo.wxml-->
- <view class="container">
- <view style="display: flex;flex-direction: column;height: 100%;">
- <scroll-view class="pageScroll" scroll-y enable-flex="{{true}}">
- <view class="pageScrollLayout">
- <view>
- <view>
- <text class="numberText">报修单号:{{itemData.repairNo}}</text>
- </view>
- <view class="centerInfoLayout">
- <view id="contentView" style="display: flex;flex-direction: column;justify-content: start; align-items: center;">
- <view class="centerInfoLayout_Line" style="height: {{contentLineHeight}}px;"></view>
- <view wx:for="{{faultProcessList}}" wx:key="index">
- <faultInfoItem itemData="{{item}}"></faultInfoItem>
- </view>
- </view>
- <view class="centerFaultDeviceLayout">
- <text class="centerFaultDeviceLayout_Title">设备详情</text>
- <view class="centerFaultDeviceLayout_ItemLayout">
- <view class="centerFaultDeviceLayout_ItemLayout2">
- <view class="centerFaultDeviceLayout_ItemLayout3">
- <text class="centerFaultDeviceLayout_ItemLayout3_Left">故障级别</text>
- <text class="centerFaultDeviceLayout_ItemLayout3_Rgiht">{{faultLevText}}</text>
- </view>
- <view class="centerFaultDeviceLayout_ItemLayout3">
- <text class="centerFaultDeviceLayout_ItemLayout3_Left">地区:</text>
- <text class="centerFaultDeviceLayout_ItemLayout3_Rgiht">{{itemData.provinceCity}}</text>
- </view>
- <view class="centerFaultDeviceLayout_ItemLayout3">
- <text class="centerFaultDeviceLayout_ItemLayout3_Left">学校:</text>
- <text class="centerFaultDeviceLayout_ItemLayout3_Rgiht">{{itemData.schoolName}}</text>
- </view>
- <view class="centerFaultDeviceLayout_ItemLayout3">
- <text class="centerFaultDeviceLayout_ItemLayout3_Left">班级:</text>
- <text class="centerFaultDeviceLayout_ItemLayout3_Rgiht">{{itemData.className}}</text>
- </view>
- <view class="centerFaultDeviceLayout_ItemLayout3">
- <text class="centerFaultDeviceLayout_ItemLayout3_Left">设备ID:</text>
- <text class="centerFaultDeviceLayout_ItemLayout3_Rgiht">{{itemData.deviceId}}</text>
- </view>
- </view>
- </view>
- </view>
- </view>
- </view>
- </view>
- </scroll-view>
- <view class="appraiseLayout" hidden="{{showAppraise}}" catchtap="toCommentPage">
- <text style="font-size: 31rpx;color: #ffffff;">评价</text>
- </view>
- </view>
- </view>
|