| | |
| | | <view class="hidden_text">隐患标题</view> |
| | | <view class="hidden_datas">{{hiddenDetails.title}}</view> |
| | | </view> |
| | | <view class="check_details_card"> |
| | | <view class="hidden_text">隐患等级</view> |
| | | <view class="hidden_datas">{{hiddenDetails.levelName}}</view> |
| | | </view> |
| | | <view class="check_details_card"> |
| | | <view class="hidden_text">积分</view> |
| | | <view class="hidden_datas">{{hiddenDetails.integral===null?'':hiddenDetails.integral}}</view> |
| | | </view> |
| | | <view class="check_details_card"> |
| | | <view class="hidden_text">审核状态</view> |
| | | <view class="hidden_datas" :class="{'goThrough':hiddenDetails.auditStatus===1,'notGoThrough':hiddenDetails.auditStatus===0}">{{hiddenDetails.auditStatusName}}</view> |
| | | </view> |
| | | </view> |
| | | </view> |
| | | </template> |
| | |
| | | padding: 15px; |
| | | |
| | | .check_details_matter{ |
| | | height: calc(100vh - 112px); |
| | | height: calc(100vh - 80px); |
| | | background-color: #FFFFFF; |
| | | border-radius: 6px; |
| | | |
| | |
| | | flex: 1; |
| | | margin-left: 15px; |
| | | } |
| | | .goThrough{ |
| | | color: lawngreen; |
| | | } |
| | | .notGoThrough{ |
| | | color: red; |
| | | } |
| | | } |
| | | .check_details_contents{ |
| | | height: calc(100% - 460px); |