From 69a56969fe9ee4084a03f88a5c93123587b1df65 Mon Sep 17 00:00:00 2001
From: WXL <wl_5969728@163.com>
Date: 星期四, 18 九月 2025 13:43:06 +0800
Subject: [PATCH] 档案管理

---
 src/views/project/relativesconfirmation/index.vue |   58 +++++++++++++++++++++++++++++++++++++++++++++-------------
 1 files changed, 45 insertions(+), 13 deletions(-)

diff --git a/src/views/project/relativesconfirmation/index.vue b/src/views/project/relativesconfirmation/index.vue
index 4b60609..16104e2 100644
--- a/src/views/project/relativesconfirmation/index.vue
+++ b/src/views/project/relativesconfirmation/index.vue
@@ -85,7 +85,7 @@
         </el-col>
 
         <el-col :span="12">
-          <el-form-item label="鎶ュ憡鏃ユ湡">
+          <el-form-item label="纭鏃堕棿">
             <el-date-picker
               style="width: 100%"
               v-model="selecttime"
@@ -118,7 +118,17 @@
     </el-form>
     <el-table v-loading="loading" border :data="listnewRelativesconfirm">
       <el-table-column
-        label="鎶ュ憡鏃堕棿"
+        label="妗堜緥鏃堕棿"
+        align="center"
+        prop="donatetime"
+        width="120"
+      >
+        <template slot-scope="scope">
+          <span>{{ parseTime(scope.row.donatetime, "{y}-{m}-{d}") }}</span>
+        </template>
+      </el-table-column>
+      <el-table-column
+        label="纭鏃堕棿"
         align="center"
         prop="reporttime"
         width="120"
@@ -138,7 +148,19 @@
           />
         </template>
       </el-table-column>
-      <el-table-column label="骞撮緞" align="center" prop="age" width="100" />
+      <el-table-column label="骞撮緞" align="center" prop="age" width="100">
+        <template slot-scope="scope">
+           {{
+            `${
+              scope.row.age && scope.row.age !== 0 ? `${scope.row.age}${scope.row.ageunit?scope.row.ageunit:''}` : ""
+            } ${
+              scope.row.age2 && scope.row.age2 !== 0
+                ? `${scope.row.age2}${scope.row.ageunit2}`
+                : ""
+            }`.trim()
+          }}
+        </template>
+      </el-table-column>
 
       <el-table-column
         label="鍖荤枟鏈烘瀯"
@@ -186,7 +208,7 @@
             type="text"
             icon="el-icon-refrigerator"
             @click="handledownload(scope.row)"
-            v-if="scope.row.recordstate == '6'"
+            v-if="scope.row.workflow == '6'"
             >涓嬭浇</el-button
           >
           <!-- <el-button
@@ -1112,6 +1134,12 @@
     // this.getDicts('country').then(res=>{
     //   this.nationality =res.data
     // })
+    if (sessionStorage.getItem("relativesconfirmation")) {
+      this.queryParams = JSON.parse(
+        sessionStorage.getItem("relativesconfirmation")
+      );
+      console.log(this.queryParams, "queryParams");
+    }
     this.getuserlist();
     this.getLeaderList();
     this.getCoordinatorList1();
@@ -1429,7 +1457,11 @@
     /** 鏌ヨ鎹愮尞鍩虹鍒楄〃 */
     getList(e) {
       this.loading = true;
-
+      sessionStorage.removeItem("relativesconfirmation");
+      sessionStorage.setItem(
+        "relativesconfirmation",
+        JSON.stringify(this.queryParams)
+      );
       if (null != this.daterangeReporttime && "" != this.daterangeReporttime) {
         this.queryParams.params[
           "beginReporttime"
@@ -1578,14 +1610,14 @@
     },
     /** 瀹跺睘纭鎿嶄綔 */
     handleAdd(row) {
-      // this.$router.push({
-      //   path: "/organ/donationdetails/",
-      //   query: {
-      //     id: row.id,
-      //     organType: "edit",
-      //   }
-      // });
-      // return ;
+      this.$router.push({
+        path: "/organ/donationdetails/",
+        query: {
+          id: row.id,
+          organType: "edit"
+        }
+      });
+      return;
       console.log("ppppppp", row);
       this.showSaveBtn = false;
       this.flowname = "瀹跺睘纭鐧昏";

--
Gitblit v1.9.3