bug
luohairen
2024-12-10 b87174cde67aaa8420ea492af9b79fcc9a692036
src/views/projectManage/plan/planInfo.vue
@@ -101,7 +101,9 @@
      }
    }
  },
  created() {
    this.getProjectInfoData();
  },
  methods: {
    // 页面加载
    search() {
@@ -111,7 +113,12 @@
    getProjectInfoData() {
      // 从查询参数中获取数据
      this.projectInfoData = this.$route.query.projectInfoData
      this.planInfoData = this.$route.query.data
      this.planInfoData.id = this.$route.query.id;
      this.planInfoData.projectName = this.$route.query.projectName;
      this.planInfoData.projectCode = this.$route.query.projectCode;
      this.planInfoData.planTime = this.$route.query.planTime;
      this.planInfoData.planTimeFlag = this.$route.query.planTimeFlag;
      this.planInfoData.managerFlag = this.$route.query.managerFlag;
      this.search();
    },
    // 获取项目计划项
@@ -179,9 +186,6 @@
        }
      })
    }
  },
  created() {
    this.getProjectInfoData();
  },
};
</script>