|
@@ -129,16 +129,20 @@
|
|
|
<span>{{scope.row.buildName}}-{{scope.row.floorName}}</span>
|
|
|
</template>
|
|
|
</el-table-column>
|
|
|
- <el-table-column label="实验室" prop="subName" width="230" show-overflow-tooltip/>
|
|
|
+ <el-table-column label="实验室" prop="subName" width="230" show-overflow-tooltip>
|
|
|
+ <template slot-scope="scope">
|
|
|
+ <span>{{scope.row.subName}}{{scope.row.roomNum?' - ('+scope.row.roomNum+')':''}}</span>
|
|
|
+ </template>
|
|
|
+ </el-table-column>
|
|
|
<el-table-column label="实验室负责人" prop="adminName" width="180" show-overflow-tooltip>
|
|
|
<template slot-scope="scope">
|
|
|
- <span>{{scope.row.adminName}}-{{scope.row.adminPhone}}</span>
|
|
|
+ <span>{{scope.row.adminName}}{{scope.row.adminPhone?' - '+scope.row.adminPhone:''}}</span>
|
|
|
</template>
|
|
|
</el-table-column>
|
|
|
<el-table-column label="安全员" prop="oneSafeName" width="180" show-overflow-tooltip>
|
|
|
<template slot-scope="scope">
|
|
|
- <span v-if="scope.row.oneSafeName">{{scope.row.oneSafeName}}-{{scope.row.oneSafePhone}}</span>
|
|
|
- <span v-if="scope.row.twoSafeName">{{scope.row.twoSafeName}}-{{scope.row.twoSafePhone}}</span>
|
|
|
+ <span v-if="scope.row.oneSafeName">{{scope.row.oneSafeName}}{{scope.row.oneSafePhone?' - '+scope.row.oneSafePhone:''}}</span>
|
|
|
+ <span v-if="scope.row.twoSafeName">{{scope.row.twoSafeName}}{{scope.row.twoSafePhone?' - '+scope.row.twoSafePhone:''}}</span>
|
|
|
</template>
|
|
|
</el-table-column>
|
|
|
<el-table-column label="入库期限" prop="createTime" width="160" show-overflow-tooltip>
|