From 65ef66fb1ea61a450cb75e206a3a4784794868e6 Mon Sep 17 00:00:00 2001
From: Tcsm <1377977403@qq.com>
Date: 星期二, 30 五月 2023 22:45:06 +0800
Subject: [PATCH] 1.将通讯录的”成员姓名“改成”家人姓名“ 2.修改成长经历阅历几处新增的bug

---
 ruoyi-ui/src/views/genealogy/index.vue |   85 +++++++++++++++++++++++++++++-------------
 1 files changed, 59 insertions(+), 26 deletions(-)

diff --git a/ruoyi-ui/src/views/genealogy/index.vue b/ruoyi-ui/src/views/genealogy/index.vue
index 19393de..eb291bd 100644
--- a/ruoyi-ui/src/views/genealogy/index.vue
+++ b/ruoyi-ui/src/views/genealogy/index.vue
@@ -19,14 +19,20 @@
       </el-form-item>
 
       <el-form-item label="韬唤" prop="identity" >
-        <el-input
+        <el-select
           v-model="queryParams.identity"
-          placeholder="璇疯緭鍏ヨ韩浠�"
+          placeholder="璇烽�夋嫨韬唤"
           clearable
           style="width: 240px"
-          @keyup.enter.native="handleQuery">
-          <i slot="prefix" class="el-input__icon el-icon-search"></i>
-        </el-input>
+          @keyup.enter.native="handleQuery"
+        >
+          <el-option
+            v-for="item in typeOptions"
+            :key="item.value"
+            :label="item.label"
+            :value="item.value"
+          />
+        </el-select>
 
       </el-form-item>
 
@@ -71,14 +77,14 @@
       </el-form-item>
     </el-form>
     <div>
-      <div style="width: 149px;
-      height: 24px;
-      font-size: 18px;
-      font-family: Microsoft YaHei-Regular, Microsoft YaHei;
-      font-weight: 400;
-      color: #000000;
-      line-height: 21px;
-      ">寮犳皬涓�瑙堣〃</div>
+<!--      <div style="width: 149px;-->
+<!--      height: 24px;-->
+<!--      font-size: 18px;-->
+<!--      font-family: Microsoft YaHei-Regular, Microsoft YaHei;-->
+<!--      font-weight: 400;-->
+<!--      color: #000000;-->
+<!--      line-height: 21px;-->
+<!--      ">寮犳皬涓�瑙堣〃</div>-->
 
       <el-row :gutter="10" class="mb8">
 <!--        <el-col :span="1.5">-->
@@ -149,6 +155,7 @@
         <template slot-scope="scope">
           <span>绗瑊{scope.row.identity}}浠�</span>
         </template>
+<!--        <template slot-scope="scope">{{ getSrc(scope.row.identity) }}</template>-->
       </el-table-column>
       <el-table-column label="濮撳悕" prop="nickName" sortable :show-overflow-tooltip="true" width="100" align="center"/>
       <el-table-column label="鎬у埆" prop="sex" sortable width="100" align="center" >
@@ -456,12 +463,24 @@
         }],
 
       },
-      typeOptions: [],
+      typeOptions: [{
+        value:'1',
+        label:'绗�1浠�'
+      },{
+        value:'2',
+        label:'绗�2浠�'
+      },{
+        value:'3',
+        label:'绗�3浠�'
+      },{
+        value:'4',
+        label:'绗�4浠�'
+      }],
     };
   },
   created() {
     this.getList();
-    // this.getCateInfor()
+    this.getCateInfor()
     // for (let i = 0; i < this.contactList.length; i++) {
     //   this.formDat[i] = this.contactList[i];
     // }
@@ -526,16 +545,30 @@
       );
     },
     /** 鏌ヨ绫诲埆淇℃伅 */
-    // getCateInfor()
-    // {
-    //   let _this = this
-    //   getCategory().then(response=>{
-    //
-    //     response.data.itemValues.replace("{","").replace("}","").split(",").map(elem=>{
-    //       _this.typeOptions.push({"label":elem.split(":")[0], "value":elem.split(":")[0]})
-    //     })
-    //   })
-    // },
+    getCateInfor()
+    {
+      let _this = this
+      getCategory().then(response=>{
+
+        response.data.itemValues.replace("{","").replace("}","").split(",").map(elem=>{
+          _this.typeOptions.push({"label":elem.split(":")[0], "value":elem.split(":")[0]})
+        })
+      })
+    },
+    //韬唤閫夋嫨
+    getSrc(identity) {
+      if (identity === '1'){
+        return '绗�1浠�'
+      }else if(identity === '2'){
+        return '绗�2浠�'
+      }else if(identity === '3'){
+        return '绗�3浠�'
+      }else if(identity === '4'){
+        return '绗�4浠�'
+      }else {
+        return '鍏跺畠'
+      }
+    },
 
     handleRemove(file) {
       alert(323)
@@ -605,7 +638,7 @@
     handleCheck(row){
       const id = row.userId;
       alert(id)
-     this.$router.push("/familymodel/jiagenwang/getPInfo/" + id);
+     this.$router.push("/familymodel/jiagenwang/personInfo/" + id);
     },
 
 

--
Gitblit v1.9.1