From 46e29a50eccda9f92fb2feeb18fa8a0ea4092587 Mon Sep 17 00:00:00 2001
From: luohairen <3399054449@qq.com>
Date: 星期四, 28 十一月 2024 22:31:38 +0800
Subject: [PATCH] 页面传参bug

---
 src/views/projectManage/plan/planRecord.vue |   46 +++++++++++++++++++++++-----------------------
 1 files changed, 23 insertions(+), 23 deletions(-)

diff --git a/src/views/projectManage/plan/planRecord.vue b/src/views/projectManage/plan/planRecord.vue
index 19f0123..a28215b 100644
--- a/src/views/projectManage/plan/planRecord.vue
+++ b/src/views/projectManage/plan/planRecord.vue
@@ -1,8 +1,8 @@
 <template>
   <div class="app-container">
     <el-container>
-      <el-header v-show="planInfoData && planInfoData.projectName" class="header-title">椤圭洰鍚嶇О锛歿{ planInfoData.projectName }}</el-header>
-      <h4 v-show="planInfoData && planInfoData.projectCode" style="text-align: center">椤圭洰浠g爜锛歿{ planInfoData.projectCode }}</h4>
+      <el-header v-show="projectInfoData && projectInfoData.projectName" class="header-title">椤圭洰鍚嶇О锛歿{ projectInfoData.projectName }}</el-header>
+      <h4 v-show="projectInfoData && projectInfoData.projectCode" style="text-align: center">椤圭洰浠g爜锛歿{ projectInfoData.projectCode }}</h4>
       <el-main>
         <el-card shadow="hover">
           <el-row :gutter="20">
@@ -102,7 +102,7 @@
   data() {
     return {
       // 鎺ユ敹浼犻�掕繃鏉ョ殑椤圭洰璁″垝鏁版嵁
-      planInfoData: {},
+      projectInfoData: {},
       // 鏈堝害璁″垝鏁版嵁
       monthRecords: [],
       // 瀛e害璁″垝鏁版嵁
@@ -114,15 +114,13 @@
   methods: {
     // 椤甸潰鍔犺浇
     search() {
-      this.getPlanRecordData(this.planInfoData.id);
+      this.getPlanRecordData(this.projectInfoData.id);
     },
     // 鑾峰彇浼犻�掕繃鏉ョ殑椤圭洰璁″垝璇︽儏
-    getPlanInfoData() {
+    getProjectInfoData() {
       // 浠庢煡璇㈠弬鏁颁腑鑾峰彇鏁版嵁
-      if (this.$route.query.data) {
-        this.planInfoData = JSON.parse(this.$route.query.data);
-        this.getPlanRecordData(this.planInfoData.id);
-      }
+      this.projectInfoData = this.$route.query.data
+      this.getPlanRecordData(this.projectInfoData.id);
     },
     // 鑾峰彇椤圭洰璁″垝璁板綍鏁版嵁
     getPlanRecordData(id) {
@@ -138,13 +136,13 @@
     handleAddMonthPlan() {
       let planRecordData = {
         id: undefined,
-        projectInfoId: this.planInfoData.id,
+        projectInfoId: this.projectInfoData.id,
         planTimeFlag: 0
       }
       // 鍒ゆ柇鏈堝害璁″垝鏄惁涓虹┖
-      if (this.monthRecords.length === 0){
+      if (this.monthRecords.length === 0) {
         planRecordData.id = 0;
-      }else {
+      } else {
         planRecordData.id = this.monthRecords[this.monthRecords.length - 1].id;
       }
       // 鏂板涓�琛岃褰�
@@ -156,13 +154,13 @@
     handleAddSeasonPlan() {
       let planRecordData = {
         id: undefined,
-        projectInfoId: this.planInfoData.id,
+        projectInfoId: this.projectInfoData.id,
         planTimeFlag: 1
       }
       // 鍒ゆ柇瀛e害璁″垝鏄惁涓虹┖
-      if (this.seasonRecords.length === 0){
+      if (this.seasonRecords.length === 0) {
         planRecordData.id = 0;
-      }else {
+      } else {
         planRecordData.id = this.seasonRecords[this.seasonRecords.length - 1].id;
       }
       // 鏂板涓�琛岃褰�
@@ -174,13 +172,13 @@
     handleAddYearPlan() {
       let planRecordData = {
         id: undefined,
-        projectInfoId: this.planInfoData.id,
+        projectInfoId: this.projectInfoData.id,
         planTimeFlag: 2
       }
       // 鍒ゆ柇骞村害璁″垝鏄惁涓虹┖
-      if (this.yearRecords.length === 0){
+      if (this.yearRecords.length === 0) {
         planRecordData.id = 0;
-      }else {
+      } else {
         planRecordData.id = this.yearRecords[this.yearRecords.length - 1].id;
       }
       // 鏂板涓�琛岃褰�
@@ -191,10 +189,10 @@
     /** 淇敼椤圭洰璁″垝椤� */
     handlePlanInfo(row) {
       this.$router.push({
-        name: 'PlanInfo',
+        path: '/projectManage/planInfo',
         query: {
-          data: JSON.stringify(row),
-          planInfoData: this.planInfoData
+          data: row,
+          projectInfoData: this.projectInfoData
         }
       })
     },
@@ -206,16 +204,18 @@
     },
     // 鏌ョ湅椤圭洰璁″垝椤�
     handleCheckPlanInfo(row) {
+      console.log(this.projectInfoData);
       this.$router.push({
         path: '/projectManage/planInfoCheck',
         query: {
-          data: JSON.stringify(row),
+          data: row,
+          projectInfoData: this.projectInfoData
         }
       })
     }
   },
   created() {
-    this.getPlanInfoData();
+    this.getProjectInfoData();
   },
 };
 </script>

--
Gitblit v1.8.0