| | |
| | | <el-table-column prop="controlMean" label="现有安全控制手段" show-overflow-tooltip></el-table-column> |
| | | <el-table-column prop="craftDraw" label="工艺图纸" show-overflow-tooltip> |
| | | <template #default="scope"> |
| | | <!-- <el-button v-if="scope.row.craftDraw !== ''" v-for="item in scope.row.craftDraw.split(',')" size="small" text type="primary" @click="openFile(item)">查看</el-button>--> |
| | | <div v-if="scope.row.craftDraw !== ''"> |
| | | <div v-if="scope.row.craftDraw && scope.row.craftDraw !== ''"> |
| | | <el-image |
| | | v-for="(item,index) in scope.row.craftDraw.split(',')" |
| | | style="width: 50px; height: 50px" |
| | |
| | | :preview-teleported= true |
| | | /> |
| | | </div> |
| | | |
| | | </template> |
| | | </el-table-column> |
| | | <el-table-column prop="reactionType" label="反应类型" show-overflow-tooltip></el-table-column> |
| | | <el-table-column prop="keyMonitorUnit" label="重点监控单元" show-overflow-tooltip></el-table-column> |
| | | <el-table-column prop="designCapacity" label="设计产能" show-overflow-tooltip></el-table-column> |
| | | <el-table-column label="操作" width="140"> |
| | | <template #default="scope"> |
| | | <el-button size="small" text type="primary" @click="openDialog('update',scope.row)">重新上报</el-button> |