| | |
| | | }} |
| | | </template> |
| | | </el-table-column> |
| | | <el-table-column label="异常问题" align="center" prop="exception" > |
| | | <template slot-scope="scope"> |
| | | {{ scope.row.exception === 0 ? '计划超期' : scope.row.exception === 1 ? '进度超期' : '' }} |
| | | </template> |
| | | </el-table-column> |
| | | <el-table-column label="操作" align="center" class-name="small-padding fixed-width"> |
| | | <template slot-scope="scope"> |
| | | <el-button |
| | |
| | | this.$router.push({ |
| | | path: '/projectManage/planRecord', |
| | | query: { |
| | | id: row.id, |
| | | projectName: row.projectName, |
| | | projectCode: row.projectCode, |
| | | managerFlag: row.managerFlag |
| | | data: JSON.stringify(row) |
| | | } |
| | | }) |
| | | }) |