|
@@ -56,13 +56,41 @@
|
|
@selection-change="handleSelectionChange" :row-key="getRowKeys" @sort-change="sortChange">
|
|
@selection-change="handleSelectionChange" :row-key="getRowKeys" @sort-change="sortChange">
|
|
<el-table-column type="selection" width="50" :reserve-selection="true" align="center"/>
|
|
<el-table-column type="selection" width="50" :reserve-selection="true" align="center"/>
|
|
<el-table-column label="序号" type="index" width="60"/>
|
|
<el-table-column label="序号" type="index" width="60"/>
|
|
- <el-table-column label="学院单位" prop="deptName" v-if="identityType == 1" show-overflow-tooltip/>
|
|
|
|
- <el-table-column label="实验室名称" prop="subName" v-if="identityType != 1" show-overflow-tooltip/>
|
|
|
|
- <el-table-column label="检查数" prop="checkNum" width="180" show-overflow-tooltip/>
|
|
|
|
- <el-table-column label="隐患数" sortable="custom" prop="hazardNum" width="180" show-overflow-tooltip/>
|
|
|
|
- <el-table-column label="已整改数" prop="rectifyNum" width="180" show-overflow-tooltip/>
|
|
|
|
- <el-table-column label="未整改数" prop="notRectifyNum" width="180" show-overflow-tooltip/>
|
|
|
|
- <el-table-column label="整改完成率" prop="ratio" width="180" show-overflow-tooltip/>
|
|
|
|
|
|
+ <el-table-column label="学院单位" prop="deptName" v-if="identityType == 1" show-overflow-tooltip>
|
|
|
|
+ <template slot-scope="scope">
|
|
|
|
+ <span>{{scope.row.deptName}}</span>
|
|
|
|
+ </template>
|
|
|
|
+ </el-table-column>
|
|
|
|
+ <el-table-column label="实验室名称" prop="subName" v-if="identityType != 1" show-overflow-tooltip>
|
|
|
|
+ <template slot-scope="scope">
|
|
|
|
+ <span>{{scope.row.subName}}</span>
|
|
|
|
+ </template>
|
|
|
|
+ </el-table-column>
|
|
|
|
+ <el-table-column label="检查数" prop="checkNum" width="180" show-overflow-tooltip>
|
|
|
|
+ <template slot-scope="scope">
|
|
|
|
+ <span>{{scope.row.checkNum}}</span>
|
|
|
|
+ </template>
|
|
|
|
+ </el-table-column>
|
|
|
|
+ <el-table-column label="隐患数" sortable="custom" prop="hazardNum" width="180" show-overflow-tooltip>
|
|
|
|
+ <template slot-scope="scope">
|
|
|
|
+ <span>{{scope.row.hazardNum}}</span>
|
|
|
|
+ </template>
|
|
|
|
+ </el-table-column>
|
|
|
|
+ <el-table-column label="已整改数" prop="rectifyNum" width="180" show-overflow-tooltip>
|
|
|
|
+ <template slot-scope="scope">
|
|
|
|
+ <span>{{scope.row.rectifyNum}}</span>
|
|
|
|
+ </template>
|
|
|
|
+ </el-table-column>
|
|
|
|
+ <el-table-column label="未整改数" prop="notRectifyNum" width="180" show-overflow-tooltip>
|
|
|
|
+ <template slot-scope="scope">
|
|
|
|
+ <span>{{scope.row.notRectifyNum}}</span>
|
|
|
|
+ </template>
|
|
|
|
+ </el-table-column>
|
|
|
|
+ <el-table-column label="整改完成率" prop="ratio" width="180" show-overflow-tooltip>
|
|
|
|
+ <template slot-scope="scope">
|
|
|
|
+ <span>{{scope.row.ratio}}</span>
|
|
|
|
+ </template>
|
|
|
|
+ </el-table-column>
|
|
<el-table-column label="操作" width="112" show-overflow-tooltip >
|
|
<el-table-column label="操作" width="112" show-overflow-tooltip >
|
|
<template slot-scope="scope">
|
|
<template slot-scope="scope">
|
|
<div class="table-button-box">
|
|
<div class="table-button-box">
|