| | |
| | | <span>整改部门:</span> |
| | | <el-cascader :options="departmentList" :props="{ emitPath: false, checkStrictly: true, value: 'depId', label: 'depName' }" placeholder="请选择部门" clearable filterable class="input-box" v-model="rectifyData.params.rectifyDepId"> </el-cascader> |
| | | </div> |
| | | |
| | | <div class="basic-line"> |
| | | <span>隐患状态:</span> |
| | | <el-select class="input-box" v-model="rectifyData.params.dangerStatus" placeholder="隐患状态" filterable clearable> |
| | | <el-option v-for="item in dangerStatusList" :key="item.id" :label="item.name" :value="item.id"></el-option> |
| | | </el-select> |
| | | </div> |
| | | <el-button size="default" type="primary" class="ml10" v-throttle @click="handleSearch"> |
| | | <el-icon> |
| | | <ele-Search /> |
| | |
| | | </div> |
| | | <el-table :data="rectifyData.data" style="width: 100%" fit highlight-current-row> |
| | | <el-table-column type="index" label="序号" width="60" /> |
| | | <el-table-column prop="dangerCode" label="隐患名称" show-overflow-tooltip></el-table-column> |
| | | <el-table-column prop="rectifyDesc" label="整改内容说明" show-overflow-tooltip></el-table-column> |
| | | <el-table-column prop="rectifyTime" label="整改期限" min-width="130px" show-overflow-tooltip> |
| | | <template #default="scope"> |
| | | <span>{{ scope.row.rectifyTime }}</span> |
| | | <span v-if="scope.row.dangerStatus === 2" class="overdue-img">逾期</span> |
| | | <span v-if="scope.row.dangerStatus === 9" class="overdue-img">逾期</span> |
| | | <span v-if="scope.row.dangerStatus === 4" class="overdue-img">逾期</span> |
| | | </template> |
| | | </el-table-column> |
| | | <el-table-column prop="rectifyType" label=" 整改类型" show-overflow-tooltip> |