fuliqi
2024-09-05 7e0ec9b7a6899cb47c0230231ca23924cef42c25
src/views/system/check/result/detail/detail.vue
@@ -37,6 +37,7 @@
                  type="text"
                  icon="el-icon-edit"
                  @click="handleRuleUpdate(item)"
                  v-hasPermi="['check:template:edit']"
                  >修改
                </el-button>
              </div>
@@ -182,7 +183,7 @@
              width="180px"
            >
              <template slot-scope="scope">
                <span>{{ scope.row[item.ruleIndex] }}</span>
                <span>{{ scope.row[item.ruleIndex] * 100 + '%' }}</span>
              </template>
            </el-table-column>
          </template>
@@ -344,7 +345,8 @@
        id: null,
        date: null,
        quarter: null,
        examineTag: null
        examineTag: null,
        deptId: null
      },
      // 表单校验
      rules: {},
@@ -362,6 +364,9 @@
    //考核成绩详情跳转参数接收
    if (this.$route.query.id) {
      this.queryParams.id = this.$route.query.id;
    }
    if(this.$route.query.deptId){
      this.queryParams.deptId = this.$route.query.deptId;
    }
    let examineTag = this.$route.query.examineTag;
    this.activeIndex = examineTag;
@@ -496,7 +501,7 @@
    /** 导出按钮操作 */
    handleExport() {
      this.download(
        "/check/score/export",
        "/check/score/detailExport",
        {
          ...this.queryParams,
        },