diff --git a/src/api/ManageApi/index.js b/src/api/ManageApi/index.js
new file mode 100644
index 0000000..f2eb4b0
--- /dev/null
+++ b/src/api/ManageApi/index.js
@@ -0,0 +1,25 @@
+import request from '@/utils/request';
+
+// 企业--基本信息==展示
+export function getBasicInformationById(id) {
+ return request({
+ url: `/gysl/basicInformation/${id}`,
+ method: 'get'
+ });
+}
+
+// 企业--基本信息==修改
+export function updateBasicInformation(data) {
+ return request({
+ url: `/gysl/basicInformation/edit`,
+ method: 'post',
+ })
+}
+
+// 通过主键查询单条基本信息(企业规划信息)
+export function getProgrammeInformationById(id) {
+ return request({
+ url: `/gysl/planInformation/{id}`,
+ method: 'get'
+ });
+}
\ No newline at end of file
diff --git a/src/views/components/ProjectDetails/Basic.vue b/src/views/components/ProjectDetails/Basic.vue
index f6314e1..66a5bb8 100644
--- a/src/views/components/ProjectDetails/Basic.vue
+++ b/src/views/components/ProjectDetails/Basic.vue
@@ -7,11 +7,11 @@
基本信息
-
+
编辑
-
+
导出
@@ -22,145 +22,187 @@
-
-
- 项目名称
-
- THi SIP高端装备工业港
-
-
-
- 项目法人单位
-
- 泰凌医药(中国)有限公司
-
-
-
- 项目法人单位性质
-
- 项目法人单位性质
-
-
-
- 施工单位
-
- kooriookami
-
-
-
- 设计单位
-
- 18100000000
-
-
-
- 总投资额(万元)
-
- 苏州市
-
-
-
- 所属功能区
-
- kooriookami
-
-
-
- 建设起止时间
-
- 18100000000
-
-
-
- 现状分类
-
- 苏州市
-
-
-
- 建设地点
-
- kooriookami
-
-
-
- 重点发展产业
-
- 18100000000
-
-
+
-
- 建设模式
+ {{ item.label }}
- 苏州市
-
-
-
- 项目标签
-
- kooriookami
-
-
-
- 项目负责人
-
- 18100000000
-
-
-
- 联系方式
-
- 苏州市
-
-
-
- 施工许可证发放时间
-
- kooriookami
-
-
-
- 竣工验收时间
-
- 18100000000
-
-
-
-
-
-
-
-
- 项目法人单位简介
-
- 江苏省苏州市吴中区吴中大道 1188 号江苏省苏州市吴中区吴中大道 1188 号
- 江苏省苏州市吴中区吴中大道 1188 号江苏省苏州市吴中区吴中大道 1188 号
- 江苏省苏州市吴中区吴中大道 1188 号江苏省苏州市吴中区吴中大道 1188 号
-
-
-
- 项目简介
-
- 江苏省苏州市吴中区吴中大道 1188 号江苏省苏州市吴中区吴中大道 1188 号
- 江苏省苏州市吴中区吴中大道 1188 号江苏省苏州市吴中区吴中大道 1188 号
- 江苏省苏州市吴中区吴中大道 1188 号江苏省苏州市吴中区吴中大道 1188 号
+ {{ item.value }}
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/src/views/components/ProjectDetails/Models.vue b/src/views/components/ProjectDetails/Models.vue
index 08b1e92..a100f97 100644
--- a/src/views/components/ProjectDetails/Models.vue
+++ b/src/views/components/ProjectDetails/Models.vue
@@ -22,9 +22,9 @@
{{ row.left }} |
- {{ row.right1 }} |
- {{ row.right2 }} |
- {{ row.right3 }} |
+ {{ row.label1 }} {{ row.right1 }} |
+ {{ row.label2 }} {{ row.right2 }} |
+ {{ row.label3 }} {{ row.right3 }} |
@@ -35,25 +35,25 @@
@@ -122,25 +122,30 @@ export default {
.two-row-item {
height: 20rem;
}
+
.custom-table {
- width: 100%;
- border-collapse: collapse;
- border: 1px solid #ccc;
+ width: 100%;
+ border-collapse: collapse;
+ border: 1px solid #E6EAF2;
}
.custom-table th,
.custom-table td {
padding: 8px;
text-align: left;
- border-top: 1px solid #ccc;
- border-bottom: 1px solid #ccc;
+ border-top: 1px solid #E6EAF2;
+ border-bottom: 1px solid #E6EAF2;
}
.left-column {
- border-right: 1px solid #ccc;
+ border-right: 1px solid #E6EAF2;
+ background-color: #F4F7FE;
}
.right-columns {
- border-right: none;
+ border-right: none;
+}
+.label-color{
+ color: #808080;
}
diff --git a/src/views/components/ProjectDetails/Programme.vue b/src/views/components/ProjectDetails/Programme.vue
index 64b6872..b7222fe 100644
--- a/src/views/components/ProjectDetails/Programme.vue
+++ b/src/views/components/ProjectDetails/Programme.vue
@@ -31,7 +31,7 @@
容积率
- 泰凌医药(中国)有限公司
+ 泰凌医药(中国)有限公司
diff --git a/src/views/manage/details/index.vue b/src/views/manage/details/index.vue
index 05bfc4f..5e6b6f3 100644
--- a/src/views/manage/details/index.vue
+++ b/src/views/manage/details/index.vue
@@ -9,29 +9,53 @@
-
+
+
+
-
+
-
+
+
+
-
+
+
+
-
+
+
+
-
+
+
+
-
+
-
+
-
+
-
+
+
+
-
+
+
+
-
+
+
+