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 @@ + + + + + + {{ $t('select') }} + + + + + + + + + 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 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + {{ $t('query') }} + {{ $t('reset') }} + + + + + + + + + + {{ text || text === 0 ? text : global.emptyLine }} + {{ text || text === 0 ? text : global.emptyLine }} + + + + + + + {{ text || text === 0 ? text : global.emptyLine }} + {{ text }} + {{ global.emptyLine }} + + + + + + + + {{ $t('cancel') }} + {{ $t('submit') }} + + + + + + + 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 @@