zxl
6 天以前 29ea0fd5d04dbaac800f211e0ac7701de0a7f3f4
src/views/system/check/result/detail/detail.vue
@@ -5,6 +5,7 @@
               >
          <el-menu-item index="0">省厅考核</el-menu-item>
          <el-menu-item index="1">区县考核</el-menu-item>
          <el-menu-item index="2" v-if ="examineCategory==1">公安部考核</el-menu-item>
        </el-menu>
      </div>
    <el-container>
@@ -133,7 +134,11 @@
            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">
@@ -307,6 +312,7 @@
        date: null,
        quarter: null,
        examineTag: null,
        examineTags: [],
        deptId: null
      },
      // 表单校验
@@ -329,9 +335,11 @@
    if(this.$route.query.deptId){
      this.queryParams.deptId = this.$route.query.deptId;
    }
    this.examineCategory = this.$route.query.examineCategory;
    let examineTag = this.$route.query.examineTag;
    this.activeIndex = examineTag;
    this.queryParams.examineTag = examineTag;
    this.queryParams.examineTags.push(examineTag);
    // 考核积分列表
    this.getList();
    this.areaSelect();