| | |
| | | <el-table-column prop="programmeName" label="方案名称" show-overflow-tooltip></el-table-column> |
| | | <el-table-column prop="startTime" label="开始时间" show-overflow-tooltip></el-table-column> |
| | | <el-table-column prop="endTime" label="结束时间" show-overflow-tooltip></el-table-column> |
| | | <el-table-column prop="programmeType" label="开停车类型" show-overflow-tooltip></el-table-column> |
| | | <el-table-column prop="programmeType" label="开停车类型" show-overflow-tooltip> |
| | | <template #default="scope"> |
| | | {{scope.row.programmeType == 1?'开车':scope.row.programmeType == 2?'停车':''}} |
| | | </template> |
| | | </el-table-column> |
| | | <el-table-column prop="responsibleDept" label="负责部门" show-overflow-tooltip></el-table-column> |
| | | <el-table-column prop="responsiblePerson" label="负责人" show-overflow-tooltip></el-table-column> |
| | | <el-table-column prop="craftName" label="危险工艺" show-overflow-tooltip></el-table-column> |
| | | <el-table-column prop="seq" label="顺序" show-overflow-tooltip></el-table-column> |
| | | <el-table-column prop="preparation" label="准备" show-overflow-tooltip></el-table-column> |
| | | <el-table-column prop="programme" label="方案" show-overflow-tooltip></el-table-column> |
| | | <el-table-column prop="filePath" label="附件" show-overflow-tooltip> |
| | | <template #default="scope"> |
| | | <div v-if="scope.row.filePath && scope.row.filePath !== ''"> |
| | | <el-image |
| | | v-for="(item,index) in scope.row.filePath.split(',')" |
| | | style="width: 50px; height: 50px" |
| | | :src="item" |
| | | fit="cover" |
| | | :preview-teleported= true |
| | | /> |
| | | </div> |
| | | </template> |
| | | </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> |