| | |
| | | <el-table-column property="id" label="作业证编号" width="200"/> |
| | | <el-table-column property="workType" label="作业类型" width="200"/> |
| | | <el-table-column property="checkInfo" label="检查内容"/> |
| | | <el-table-column property="result" label="检查结果"/> |
| | | <el-table-column property="result" label="检查结果"> |
| | | <template #default="scope"> |
| | | <span :class="scope.row.result == '异常' ? 'red': ''">{{ scope.row.result }}</span> |
| | | </template> |
| | | </el-table-column> |
| | | <el-table-column property="desc" label="描述" width="200"/> |
| | | <el-table-column property="name" label="分析人"/> |
| | | <el-table-column property="updateTime" label="分析时间"/> |
| | |
| | | |
| | | <style scoped lang="scss"> |
| | | $homeNavLengh: 8; |
| | | .red{ |
| | | color: red; |
| | | } |
| | | .home-container { |
| | | height: calc(100vh - 144px); |
| | | box-sizing: border-box; |