| | |
| | | <el-table-column label="检查单位" prop="checkUnitName" align="center"></el-table-column> |
| | | <el-table-column label="检查层级" prop="checkUnitType" align="center"> |
| | | <template slot-scope="scope"> |
| | | <span>{{ scope.row.checkUnitType ==1?'省级':(scope.row.checkUnitType ==2?'市级':(scope.row.checkUnitType ==3?'区县级':'自查')) }}</span> |
| | | <span>{{ scope.row.checkUnitType ==1?'省级':(scope.row.checkUnitType ==2?'地(州、市)级':(scope.row.checkUnitType ==3?'区县级':'自查')) }}</span> |
| | | </template> |
| | | </el-table-column> |
| | | <el-table-column label="隐患总数" prop="hiddendangerSum" align="center"></el-table-column> |
| | |
| | | methods:{ |
| | | toCheck(row){ |
| | | const t = this |
| | | console.log(row.checkUnitType,'type') |
| | | if(row.checkUnitType == 4){ |
| | | t.$refs.report.id = row.id |
| | | t.$refs.report.enterpriseType = t.enterpriseType |