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/reportLibraryOne/index.vue | 6 ++++-- 1 files changed, 4 insertions(+), 2 deletions(-) diff --git a/culture/src/views/strainReportLibrary/reportLibraryOne/index.vue b/culture/src/views/strainReportLibrary/reportLibraryOne/index.vue index 5d34f3e..04e81e2 100644 --- a/culture/src/views/strainReportLibrary/reportLibraryOne/index.vue +++ b/culture/src/views/strainReportLibrary/reportLibraryOne/index.vue @@ -80,7 +80,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> @@ -244,7 +244,9 @@ this.$message.success('审核成功') this.showApproval = false this.getLists() - this.showEvaluate = true + if(params.statuss=='2'){ + this.showEvaluate = true + } } }) }, -- Gitblit v1.7.1