From 652c5c6675bbd961ad17ca8285fb4481c9d15815 Mon Sep 17 00:00:00 2001
From: lideqin <694785430@qq.com>
Date: Sat, 14 Sep 2024 09:08:26 +0800
Subject: [PATCH] =?UTF-8?q?[update]=20=E4=BF=AE=E6=94=B9UAT=E9=97=AE?=
=?UTF-8?q?=E9=A2=98=EF=BC=9A=E4=BC=81=E6=A0=87=E5=A4=8D=E5=AE=A1=E8=AE=A1?=
=?UTF-8?q?=E5=88=92=E5=A2=9E=E5=8A=A0=E6=89=B9=E9=87=8F=E5=A4=8D=E5=AE=A1?=
=?UTF-8?q?=E5=8A=9F=E8=83=BD?=
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit
---
src/api/enterpriseStandardLibraryApi.js | 5 +++-
.../lang/enterpriseStandardLibrary/zh.js | 1 +
.../reviewPlan/ReviewPlanList.vue | 28 +++++++++++++++++--
3 files changed, 31 insertions(+), 3 deletions(-)
diff --git a/src/api/enterpriseStandardLibraryApi.js b/src/api/enterpriseStandardLibraryApi.js
index 574d32fd..9ff74377 100644
--- a/src/api/enterpriseStandardLibraryApi.js
+++ b/src/api/enterpriseStandardLibraryApi.js
@@ -65,6 +65,8 @@ const getEnterpriseRecheckPlanPage = (params) => getAction('/enterprise/recheckP
// 企标复审计划-根据id获取数据
const getEnterpriseRecheckPlanById = (id, params) => getAction(`/enterprise/recheckPlan/getById/${id}`, params)
+// 企标复审计划-批量复审
+const reviewPlanBatchReview = (params) => postAction('/enterprise/recheckPlan/batchStartRecheckPlan', params)
export {
getEnterpriseStandardTableHeader,
@@ -101,5 +103,6 @@ export {
getEnterpriseStandardPlanPage,
getEnterpriseRecheckPlanPage,
- getEnterpriseRecheckPlanById
+ getEnterpriseRecheckPlanById,
+ reviewPlanBatchReview
}
diff --git a/src/common/lang/enterpriseStandardLibrary/zh.js b/src/common/lang/enterpriseStandardLibrary/zh.js
index 6283870e..2ab8e8cd 100644
--- a/src/common/lang/enterpriseStandardLibrary/zh.js
+++ b/src/common/lang/enterpriseStandardLibrary/zh.js
@@ -126,6 +126,7 @@ module.exports = {
publishDate: '发布日期',
reviewDate: '复审日期',
initReview: '发起复审',
+ batchReview: '批量复审',
reviewResult: '复审结果',
principalDrafter: '主起草人',
mainDraftingUnit: '主起草单位'
diff --git a/src/views/enterpriseStandardLibrary/reviewPlan/ReviewPlanList.vue b/src/views/enterpriseStandardLibrary/reviewPlan/ReviewPlanList.vue
index bfd447cb..ad8443a6 100644
--- a/src/views/enterpriseStandardLibrary/reviewPlan/ReviewPlanList.vue
+++ b/src/views/enterpriseStandardLibrary/reviewPlan/ReviewPlanList.vue
@@ -61,6 +61,11 @@
@click="handleInitReview">
{{ $t('enterpriseStandardLibrary.reviewPlan.initReview') }}
+
+