From eac6b7989a6cbb9d09b20a1c46f51bb68d9f5ae7 Mon Sep 17 00:00:00 2001
From: xiangpei <xiangpei@timesnew.cn>
Date: 星期三, 19 二月 2025 10:01:50 +0800
Subject: [PATCH] 项目信息一对多的情况列表不显示、相关文书不要了

---
 src/views/projectEngineering/projectLibrary/component/BasicInfo.vue |   18 ++++++++++++++++--
 1 files changed, 16 insertions(+), 2 deletions(-)

diff --git a/src/views/projectEngineering/projectLibrary/component/BasicInfo.vue b/src/views/projectEngineering/projectLibrary/component/BasicInfo.vue
index 77e4517..22b8c0f 100644
--- a/src/views/projectEngineering/projectLibrary/component/BasicInfo.vue
+++ b/src/views/projectEngineering/projectLibrary/component/BasicInfo.vue
@@ -269,6 +269,19 @@
             <span style="margin-left: 2px">鍏�</span>
           </el-form-item>
         </el-col>
+        <el-col :span="6">
+          <el-form-item label="寤鸿鎬ц川" label-width="100px" prop="constructionNature" style="width: 100%; min-width: 260px">
+            <el-select
+              v-model="projectForm.constructionNature"
+              clearable
+              placeholder="璇烽�夋嫨"
+              style="width: 100%"
+            >
+              <el-option v-for="item in dict.type.construction_nature" :key="item.value" :label="item.label"
+                         :value="item.value"/>
+            </el-select>
+          </el-form-item>
+        </el-col>
       </el-row>
       <el-row :gutter="0">
         <el-col :span="18">
@@ -324,7 +337,7 @@
 export default {
   name: 'BasicInfo',
   dicts: ['sys_funding_type', 'sys_investment_type', 'sys_project_type', 'sys_project_status', 'sys_competent_department'
-    , 'sys_administrative_divisions', 'sys_centralized_management', 'sys_approval_type', 'sys_key_categories', 'sys_annual_plan'],
+    , 'sys_administrative_divisions', 'sys_centralized_management', 'sys_approval_type', 'sys_key_categories', 'sys_annual_plan', 'construction_nature'],
   components: {
     Map,
     TagList,
@@ -348,7 +361,7 @@
         projectName: '',
         projectCode: '',
         projectType: '',
-        projectStatus: '',
+        projectStatus: 'pendding',
         fundType: '',
         investType: '',
         importanceType: '',
@@ -373,6 +386,7 @@
         projectAddress: '',
         engineeringIdList: [],
         content: '',
+        constructionNature: '',
         contact: '',
         projectOwnerUnit: null,
         planStartTime: '',

--
Gitblit v1.8.0