From 8a88dd57bc5bcd009c8a4d5807c526cdf2b36cd7 Mon Sep 17 00:00:00 2001 From: kun <1422840143@qq.com> Date: Thu, 20 Jul 2023 18:23:56 +0800 Subject: [PATCH] =?UTF-8?q?fix:=20BUG=E4=BF=AE=E6=94=B9?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/api/modules/huizhou.ts | 8 +++++++ .../progressManagement/index.vue | 14 +++++++++++ .../qualityControl/index.vue | 10 +++++++- .../safetyManagement/index.vue | 10 +++++++- .../largeScreenOne/components/BDmaps.vue | 10 ++++---- .../planFinishSituation/index.vue | 8 +++---- .../progressManagement/index.vue | 24 +++++++++++-------- .../qualityManagement/index.vue | 13 ++++++++++ .../projectMonitor/safetyManagement/index.vue | 13 ++++++++++ 9 files changed, 90 insertions(+), 20 deletions(-) diff --git a/src/api/modules/huizhou.ts b/src/api/modules/huizhou.ts index a3d622e..63f2cbc 100644 --- a/src/api/modules/huizhou.ts +++ b/src/api/modules/huizhou.ts @@ -281,6 +281,10 @@ export const getEntSubItemproject = (params: User.ReqUserParams) => { return http.post>(BASEURL + `/ent/projectSubItem/engineeringPage`, params); }; // 分部分项全部数据 +export const bigEntItemAll = (params: any) => { + return http.post(BASEURL + `/ent/projectSubItem/list`, params); +}; +// 分部分项分页数据 export const bigEntItemPage = (params: any) => { return http.post(BASEURL + `/ent/projectSubItem/page`, params); }; @@ -356,6 +360,10 @@ export const entApplyTimeList = (params: any) => { export const entSubItemDetailAdd = (params: any) => { return http.post(BASEURL + `/ent/investmentPaymentDetail/add`, params); }; +// 分页列表查询投资支付工程 +export const getEntApplyTimeproject = (params: User.ReqUserParams) => { + return http.post>(BASEURL + `/ent/investmentApply/engineeringPage`, params); +}; // 申报时段分页列表 export const entApplyTimePage = (params: any) => { return http.post(BASEURL + `/ent/investmentApply/page`, params); diff --git a/src/views/goverment/huizhou/projectMonitoring/progressManagement/index.vue b/src/views/goverment/huizhou/projectMonitoring/progressManagement/index.vue index d60534f..e0f87b3 100644 --- a/src/views/goverment/huizhou/projectMonitoring/progressManagement/index.vue +++ b/src/views/goverment/huizhou/projectMonitoring/progressManagement/index.vue @@ -46,6 +46,9 @@ 新增 + + @@ -102,16 +105,6 @@ const columns: ColumnProps[] = [ { prop: "planEndTime", label: "结束日期" }, { prop: "completeRatio", label: "完成百分比(%)" }, { prop: "slippage", label: "逾期情况(天)" }, - // { - // prop: "state", - // label: "状态", - // search: { el: "select" }, - // isShow: false, - // enum: [ - // { label: "启用", value: 1 }, - // { label: "禁用", value: 0 } - // ] - // }, { prop: "createTime", label: "时间筛选", @@ -126,6 +119,17 @@ const columns: ColumnProps[] = [ } } }, + { + prop: "state", + label: "状态", + search: { el: "select" }, + enum: [ + { label: "未开始", value: 1 }, + { label: "进行中", value: 2 }, + { label: "已完成", value: 3 }, + { label: "已逾期", value: 4 } + ] + }, { prop: "operation", label: "操作", fixed: "right", width: 100 } ]; // 项目或者工程名字 diff --git a/src/views/hz-enterprise/projectMonitor/qualityManagement/index.vue b/src/views/hz-enterprise/projectMonitor/qualityManagement/index.vue index 6664c50..1df82fd 100644 --- a/src/views/hz-enterprise/projectMonitor/qualityManagement/index.vue +++ b/src/views/hz-enterprise/projectMonitor/qualityManagement/index.vue @@ -142,6 +142,19 @@ const columns: ColumnProps[] = [ width: 150 }, { prop: "slippage", label: "逾期情况(天)", width: 150 }, + { + prop: "state", + label: "状态", + search: { el: "select" }, + width: 150, + enum: [ + { label: "执法中", value: 1 }, + { label: "待整改", value: 2 }, + { label: "待审核", value: 3 }, + { label: "已闭合", value: 4 }, + { label: "已驳回", value: 5 } + ] + }, { prop: "operation", label: "操作", fixed: "right", width: 100 } ]; const detailsDialog = ref(false); diff --git a/src/views/hz-enterprise/projectMonitor/safetyManagement/index.vue b/src/views/hz-enterprise/projectMonitor/safetyManagement/index.vue index fe2bfef..e6ae5d9 100644 --- a/src/views/hz-enterprise/projectMonitor/safetyManagement/index.vue +++ b/src/views/hz-enterprise/projectMonitor/safetyManagement/index.vue @@ -140,6 +140,19 @@ const columns: ColumnProps[] = [ width: 150 }, { prop: "slippage", label: "逾期情况(天)", width: 150 }, + { + prop: "state", + label: "状态", + search: { el: "select" }, + width: 150, + enum: [ + { label: "执法中", value: 1 }, + { label: "待整改", value: 2 }, + { label: "待审核", value: 3 }, + { label: "已闭合", value: 4 }, + { label: "已驳回", value: 5 } + ] + }, { prop: "operation", label: "操作", fixed: "right", width: 100 } ]; const detailsDialog = ref(false);