|
@@ -80,7 +80,9 @@
|
|
|
<el-table border :data="tableList" ref="multipleTable" @sort-change="sortChange">
|
|
|
<el-table-column label="序号" align="center" type="index" width="60" />
|
|
|
<el-table-column label="学院" align="center" prop="deptName" show-overflow-tooltip/>
|
|
|
- <el-table-column label="实验室" align="center" prop="subName" show-overflow-tooltip width="220"/>
|
|
|
+ <el-table-column label="实验室" align="center" prop="subName" show-overflow-tooltip width="220">
|
|
|
+ <template slot-scope="scope">{{scope.row.roomNum?scope.row.subName+'-'+scope.row.roomNum:scope.row.subName}}</template>
|
|
|
+ </el-table-column>
|
|
|
<el-table-column label="安全责任人" align="center" prop="safetyPeople" show-overflow-tooltip width="120"/>
|
|
|
<el-table-column label="上报人" align="center" prop="createName" show-overflow-tooltip width="90"/>
|
|
|
<el-table-column label="上报时间" sortable="custom" align="center" prop="createTime" show-overflow-tooltip width="157"/>
|