| | |
| | | <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> |
| | | <!-- <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 !== ''"> |
| | | <el-image |
| | | v-for="(item,index) in scope.row.craftDraw.split(',')" |
| | | style="width: 50px; height: 50px" |
| | | :src="item" |
| | | fit="cover" |
| | | :preview-teleported= true |
| | | /> |
| | | </div> |
| | | |
| | | </template> |
| | | </el-table-column> |
| | | <el-table-column prop="reactionType" label="反应类型" show-overflow-tooltip></el-table-column> |