| | |
| | | > |
| | | <el-menu-item index="0">省厅考核</el-menu-item> |
| | | <el-menu-item index="1">区县考核</el-menu-item> |
| | | <el-menu-item index="2">公安部考核</el-menu-item> |
| | | </el-menu> |
| | | </div> |
| | | <el-container> |
| | |
| | | fixed |
| | | > |
| | | <template slot-scope="scope"> |
| | | {{ scope.row.examine_tag === 0 ? '省厅考核' : '区县考核' }} |
| | | {{ |
| | | scope.row.examine_tag === 0 ? '省厅考核' : |
| | | scope.row.examine_tag === 1 ? '区县考核' : |
| | | scope.row.examine_tag === 2 ? '公安部考核' : '未知' |
| | | }} |
| | | </template> |
| | | </el-table-column> |
| | | <template v-for="item in tableData"> |
| | |
| | | date: null, |
| | | quarter: null, |
| | | examineTag: null, |
| | | examineTags: [], |
| | | deptId: null |
| | | }, |
| | | // 表单校验 |
| | |
| | | let examineTag = this.$route.query.examineTag; |
| | | this.activeIndex = examineTag; |
| | | this.queryParams.examineTag = examineTag; |
| | | this.queryParams.examineTags.push(examineTag); |
| | | // 考核积分列表 |
| | | this.getList(); |
| | | this.areaSelect(); |