From 92606a1a818d2016d9f8ddab45cc084de580d0b2 Mon Sep 17 00:00:00 2001 From: 13404089107 <puwei@sinata.cn> Date: 星期一, 23 六月 2025 20:10:50 +0800 Subject: [PATCH] 修改bug --- culture/src/views/strainReportLibrary/reportLibraryOneFour/index.vue | 7 ++++--- 1 files changed, 4 insertions(+), 3 deletions(-) diff --git a/culture/src/views/strainReportLibrary/reportLibraryOneFour/index.vue b/culture/src/views/strainReportLibrary/reportLibraryOneFour/index.vue index ff03e04..d170a47 100644 --- a/culture/src/views/strainReportLibrary/reportLibraryOneFour/index.vue +++ b/culture/src/views/strainReportLibrary/reportLibraryOneFour/index.vue @@ -79,7 +79,7 @@ <el-button type="text" v-if="roleType == 3 && row.status == 4 || isDraft" @click="handleDetail(row)">编辑</el-button> <el-button type="text" v-if="roleType == 3 && isDraft" @click="handleDelete(row)">删除</el-button> - <el-button type="text" v-if="row.status == 1 && roleType == 3" + <el-button type="text" v-if="row.status == 1 && roleType == 3&&!isDraft" @click="handleRevoke(row)">撤销审批</el-button> </template> </el-table-column> @@ -265,8 +265,9 @@ this.$message.success('审核成功') this.showApproval = false this.getLists() - // this.showEvaluate = true - this.showChoiceMethod = true + if(params.statuss==2){ + this.showChoiceMethod = true + } } }) }, -- Gitblit v1.7.1