From 0e4f2f1e441e3423bd77a9357e2f3cae9893b5f9 Mon Sep 17 00:00:00 2001 From: 董国庆 <364620639@qq.com> Date: 星期二, 24 六月 2025 09:52:03 +0800 Subject: [PATCH] Merge branch 'main' of http://120.76.84.145:10101/gitblit/r/H5/leshan-laboratory --- 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