fuliqi
2025-02-11 a1bdd0c6a80f46bdf01ecf6f091960ce26db1fc6
审核按钮直接通过主管部门控制
1个文件已修改
5 ■■■■■ 已修改文件
src/views/projectEngineering/projectLibrary/projectDetails.vue 5 ●●●●● 补丁 | 查看 | 原始文档 | blame | 历史
src/views/projectEngineering/projectLibrary/projectDetails.vue
@@ -30,7 +30,7 @@
      :isShow="isShow"
      class="full-width custom-height"
    />
    <div v-hasRole="['auditor']" v-if="audit" class="button-container">
    <div v-if="audit" class="button-container">
      <el-button
        class="save-button"
        type="primary"
@@ -42,6 +42,7 @@
        @click="showDialog"
      >驳回</el-button>
    </div>
    <div v-if="!disabled" class="button-container">
      <el-button
        class="save-button"
@@ -149,6 +150,7 @@
    basicInfoForm(data) {
      this.projectForm.projectInfoForm = data;
      this.projectId = data.id;
      this.audit = this.$route.query.audit == 1 && this.projectForm.projectInfoForm.auditRole;
    },
    investInfoForm(data) {
      this.projectForm.projectInvestmentInfoForm = data;
@@ -195,7 +197,6 @@
    if (this.$route.query.disabled) {
      this.disabled = true;
    }
    this.audit = this.$route.query.audit == 1;
  },
};
</script>