From 99ec73db9438abcdba51556488d83d26ca3b633f Mon Sep 17 00:00:00 2001 From: lideqin <694785430@qq.com> Date: Wed, 22 Nov 2023 13:47:59 +0800 Subject: [PATCH] =?UTF-8?q?[update]=20=E4=BF=AE=E6=94=B9=E4=BC=81=E6=A0=87?= =?UTF-8?q?=E5=A4=8D=E5=AE=A1=E6=B5=81=E7=A8=8B?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/api/enterpriseStandardLibraryApi.js | 15 +- src/common/lang/en-us.js | 4 + src/common/lang/zh-cn.js | 5 + .../selection/EnterprisePlanSelection.vue | 2 +- .../EnterpriseRecheckPlanSelection.vue | 80 +++++ .../EnterpriseRecheckPlanSelectionModal.vue | 282 ++++++++++++++++++ .../reviewPlan/ReviewPlanList.vue | 13 +- .../EnterpriseStandardRecheckFlow.vue | 33 +- .../modules/ContactInitBaseInfo.vue | 68 +++-- .../modules/StandardizationInitBaseInfo.vue | 13 +- 10 files changed, 462 insertions(+), 53 deletions(-) create mode 100644 src/components/selection/EnterpriseRecheckPlanSelection.vue create mode 100644 src/components/selection/EnterpriseRecheckPlanSelectionModal.vue diff --git a/src/api/enterpriseStandardLibraryApi.js b/src/api/enterpriseStandardLibraryApi.js index 4b7d05d9..e25aa560 100644 --- a/src/api/enterpriseStandardLibraryApi.js +++ b/src/api/enterpriseStandardLibraryApi.js @@ -52,13 +52,15 @@ const getCheckReportById = (params) => getAction('/enterprise/inspect/inspectRep // 企标稽查-根据id获取整改计划 const getRectificationPlanById = (params) => getAction('/enterprise/inspect/rectifyPlan', params) -// 企标复审计划-发起复审 -const initReview = (params) => getAction('', params) - // 企标计划-根据id获取计划详情 const getEnterpriseStandardPlanInfoById = (params) => getAction('/enterprise/plan/detail', params) // 企标计划-分页获取(选择企标计划组件中用) const getEnterpriseStandardPlanPage = (params) => getAction('/process/es/initChange/getESPList', params) +// 企标复审计划-分页获取(选择企标复审计划组件中用) +const getEnterpriseRecheckPlanPage = (params) => getAction('/enterprise/recheckPlan/page', params) + +// 企标复审计划-根据id获取数据 +const getEnterpriseRecheckPlanById = (params) => getAction('', params) export { getEnterpriseStandardTableHeader, @@ -89,8 +91,9 @@ export { getCheckReportById, getRectificationPlanById, - initReview, - getEnterpriseStandardPlanInfoById, - getEnterpriseStandardPlanPage + getEnterpriseStandardPlanPage, + getEnterpriseRecheckPlanPage, + + getEnterpriseRecheckPlanById } diff --git a/src/common/lang/en-us.js b/src/common/lang/en-us.js index aa1f43cf..21a7e7d8 100644 --- a/src/common/lang/en-us.js +++ b/src/common/lang/en-us.js @@ -531,6 +531,10 @@ module.exports = { enterprisePlanSelect: { title: '企标计划选择' }, + // 企标复审计划选择器 + enterpriseRecheckPlanSelect: { + title: '企标复审计划选择' + }, // 用户/组织结构选择器 userOrOrganSelect: { select: 'Select', diff --git a/src/common/lang/zh-cn.js b/src/common/lang/zh-cn.js index 38bc3166..e99deaac 100644 --- a/src/common/lang/zh-cn.js +++ b/src/common/lang/zh-cn.js @@ -171,6 +171,7 @@ module.exports = { pleaseSelectTime: '请选择时间', oneTableAdded: '只能添加一个表格', addATable: '请添加一个表格', + select: '选择', // 树右键 treeRight: { addFolder: '新增文件夹', @@ -561,6 +562,10 @@ module.exports = { enterprisePlanSelect: { title: '企标计划选择' }, + // 企标复审计划选择器 + enterpriseRecheckPlanSelect: { + title: '企标复审计划选择' + }, // 用户/组织结构选择器 userOrOrganSelect: { select: '选择', diff --git a/src/components/selection/EnterprisePlanSelection.vue b/src/components/selection/EnterprisePlanSelection.vue index f403ce5f..d8a0dab3 100644 --- a/src/components/selection/EnterprisePlanSelection.vue +++ b/src/components/selection/EnterprisePlanSelection.vue @@ -4,7 +4,7 @@ - {{this.$t('enterprisePlanSelect.title')}} + {{ $t('enterprisePlanSelect.title')}} diff --git a/src/components/selection/EnterpriseRecheckPlanSelection.vue b/src/components/selection/EnterpriseRecheckPlanSelection.vue new file mode 100644 index 00000000..ed2b1ccc --- /dev/null +++ b/src/components/selection/EnterpriseRecheckPlanSelection.vue @@ -0,0 +1,80 @@ + + + + + diff --git a/src/components/selection/EnterpriseRecheckPlanSelectionModal.vue b/src/components/selection/EnterpriseRecheckPlanSelectionModal.vue new file mode 100644 index 00000000..e0eb856f --- /dev/null +++ b/src/components/selection/EnterpriseRecheckPlanSelectionModal.vue @@ -0,0 +1,282 @@ + + + + + diff --git a/src/views/enterpriseStandardLibrary/reviewPlan/ReviewPlanList.vue b/src/views/enterpriseStandardLibrary/reviewPlan/ReviewPlanList.vue index faf8e073..bfd447cb 100644 --- a/src/views/enterpriseStandardLibrary/reviewPlan/ReviewPlanList.vue +++ b/src/views/enterpriseStandardLibrary/reviewPlan/ReviewPlanList.vue @@ -101,7 +101,6 @@