1. 审核撤回的按钮显示逻辑修改 2. 通过改为审核通过 3. 审核驳回隐藏
已修改1个文件
19 ■■■■■ 文件已修改
src/views/fysp/check/components/CompProblemCard.vue 19 ●●●●● 补丁 | 查看 | 原始文档 | blame | 历史
src/views/fysp/check/components/CompProblemCard.vue
@@ -92,8 +92,12 @@
            :disabled="!proStatus.deletable"
            >删除</el-button
          >
          <el-button
            v-if="proStatus.name.indexOf('不通过') != -1"
          <!-- 审核驳回操作 -->
          <!-- <el-button
            v-if="
              this.problem.extension3 == 'fail' ||
              this.problem.extension3 == 'change_fail'
            "
            type="danger"
            size="small"
            @click="revokePro"
@@ -106,12 +110,12 @@
            size="small"
            @click="rejectPro"
            :disabled="!proStatus.checkable"
            >驳回</el-button
          >
            >审核驳回</el-button
          > -->
          <el-button
            v-if="
              proStatus.name.indexOf('不通过') == -1 &&
              proStatus.name.indexOf('通过') != -1
              this.problem.extension3 == 'pass' ||
              this.problem.extension3 == 'change_pass'
            "
            type="danger"
            size="small"
@@ -125,7 +129,7 @@
            size="small"
            @click="passPro"
            :disabled="!proStatus.checkable"
            >通过</el-button
            >审核通过</el-button
          >
        </el-row>
      </el-col>
@@ -291,7 +295,6 @@
      this.proAddOrUpdDialogVisible = false;
    },
    onChangeCanceled() {
      this.changeDialogVisible = false;
    },
    onChangeSubmited(isOk) {
      this.$emit('submit', isOk);