From 38b903493b8d0052fc878b8c16a16507e347cea7 Mon Sep 17 00:00:00 2001 From: yanfeiyong <2060201549@qq.com> Date: Fri, 25 Apr 2025 17:16:47 +0800 Subject: [PATCH 1/2] =?UTF-8?q?=E6=89=8B=E5=86=8C=E5=92=8C=E6=9C=88?= =?UTF-8?q?=E5=BA=A6?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/views/compilation/handbook/index.vue | 6 +-- .../components/ProjectDetails/Months.vue | 52 +++++++++---------- 2 files changed, 29 insertions(+), 29 deletions(-) diff --git a/src/views/compilation/handbook/index.vue b/src/views/compilation/handbook/index.vue index d9b6fd3..3552992 100644 --- a/src/views/compilation/handbook/index.vue +++ b/src/views/compilation/handbook/index.vue @@ -227,7 +227,7 @@ ref="projectTable" :data="projectList" @row-click="handleRowClick" - height="400" + height="200" :row-key="(row) => row.id" v-loading="loading" @select="handleSelect" @@ -1164,7 +1164,7 @@ export default { .pagination-box { display: flex; justify-content: right; - margin: 16px 0; + // margin: 16px 0; } /* 已选项目区域样式 */ @@ -1188,7 +1188,7 @@ export default { display: flex; flex-direction: column; gap: 12px; - max-height: 200px; + max-height: 100px; overflow-y: auto; padding-right: 10px; flex: 1; diff --git a/src/views/components/ProjectDetails/Months.vue b/src/views/components/ProjectDetails/Months.vue index 93da9d3..02b7662 100644 --- a/src/views/components/ProjectDetails/Months.vue +++ b/src/views/components/ProjectDetails/Months.vue @@ -47,10 +47,10 @@ {{ scope.row.cumulativeArea }} - + @@ -76,7 +76,7 @@ From de8962d04cfa184072a9a16e9742aaa9b71d31d0 Mon Sep 17 00:00:00 2001 From: yanfeiyong <2060201549@qq.com> Date: Sun, 27 Apr 2025 14:11:50 +0800 Subject: [PATCH 2/2] =?UTF-8?q?=E6=B8=85=E5=8D=95=E6=96=B0=E5=A2=9E?= =?UTF-8?q?=E5=AD=97=E6=AE=B5?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .env.production | 4 +- src/views/components/ProjectDetails/Basic.vue | 16 ++-- .../components/ProjectDetails/Buildings.vue | 47 ++++++++-- .../ProjectDetails/Companyenter.vue | 89 ++++++++++++++----- .../components/ProjectDetails/Months.vue | 40 ++++----- src/views/components/analysis/all.vue | 69 ++++++++++++-- src/views/components/analysis/map.vue | 2 +- src/views/manage-add/index.vue | 42 ++++----- src/views/manage-info/index.vue | 1 + src/views/statistics/index.vue | 2 +- vue.config.js | 2 +- 11 files changed, 229 insertions(+), 85 deletions(-) diff --git a/.env.production b/.env.production index 3cdcbb9..7036efd 100644 --- a/.env.production +++ b/.env.production @@ -5,6 +5,6 @@ VUE_APP_TITLE = 苏州工业园区工业上楼管理系统 ENV = 'production' # 苏州工业园区工业上楼管理系统/生产环境 -VUE_APP_BASE_API = '' -# VUE_APP_BASE_API = 'http://39.101.188.84:7071' +# VUE_APP_BASE_API = '' +VUE_APP_BASE_API = 'http://39.101.188.84:7071' # VUE_APP_BASE_API = '/api' diff --git a/src/views/components/ProjectDetails/Basic.vue b/src/views/components/ProjectDetails/Basic.vue index dc68376..5522468 100644 --- a/src/views/components/ProjectDetails/Basic.vue +++ b/src/views/components/ProjectDetails/Basic.vue @@ -30,7 +30,7 @@
+ :span="item.label === '项目法人单位简介' || item.label === '计划投资额' ? 3 : 1"> @@ -77,7 +77,7 @@ + style="width: 100%;"> @@ -85,7 +85,7 @@ - + @@ -131,7 +131,7 @@ - + @@ -162,7 +162,7 @@ - + @@ -180,6 +180,11 @@ + + + + + @@ -412,6 +417,7 @@ export default { { label: '竣工验收时间', value: data.acceptanceTime }, { label: '建设进度', value: data.jsjd }, { label: '统一社会信用代码', value: data.tyshxydm }, + { label: '计划投资额', value: data.jhtze }, { label: '项目法人单位简介', value: data.unitIntroduction }, { label: '项目简介', value: data.introduction } ]; diff --git a/src/views/components/ProjectDetails/Buildings.vue b/src/views/components/ProjectDetails/Buildings.vue index 9dc6843..7bd6566 100644 --- a/src/views/components/ProjectDetails/Buildings.vue +++ b/src/views/components/ProjectDetails/Buildings.vue @@ -104,6 +104,18 @@ {{ selectedBuilding.fourYslmhz }} + + + {{ selectedBuilding.djjcdj }} + + + + {{ selectedBuilding.dcqk }} + + + + {{ selectedBuilding.htqk }} +
@@ -118,7 +130,7 @@ - + @@ -181,7 +193,7 @@ - + @@ -191,7 +203,7 @@ - + @@ -203,6 +215,25 @@ + + + + + + + + + + + + + + + + + + + 取 消 @@ -280,7 +311,10 @@ export default { updateId: 0, updateTime: '', xmId: 0, - zj: 0 + zj: 0, + djjcdj:'', + dcqk:'', + htqk:'' }, // 用户导入参数 upload: { @@ -413,7 +447,10 @@ export default { updateId: '', updateTime: '', xmId: this.xmId, - zj: '' + zj: '', + djjcdj:'', + dcqk:'', + htqk:'' }; }, fetchBuildings() { diff --git a/src/views/components/ProjectDetails/Companyenter.vue b/src/views/components/ProjectDetails/Companyenter.vue index a21991b..44844f7 100644 --- a/src/views/components/ProjectDetails/Companyenter.vue +++ b/src/views/components/ProjectDetails/Companyenter.vue @@ -65,32 +65,81 @@
- - + + - + + + + + + + + + + + + + + + + + + + + + + + + +