|
@@ -2142,7 +2142,7 @@ a {
|
|
|
const { messageTaskId } = to.query
|
|
|
console.log(messageTaskId, '<======== messageTaskId')
|
|
|
if(messageTaskId && this.user.companyId == 876) {
|
|
|
- this.openTheReviewPopUpWindowSeparately(messageTaskId)
|
|
|
+ this.openTheReviewPopUpWindowSeparately(messageTaskId, ganttData)
|
|
|
}
|
|
|
}
|
|
|
}
|
|
@@ -2154,11 +2154,11 @@ a {
|
|
|
})
|
|
|
},
|
|
|
methods: {
|
|
|
- openTheReviewPopUpWindowSeparately(taskId) {
|
|
|
+ openTheReviewPopUpWindowSeparately(taskId, ganttData) {
|
|
|
this.isganttshow = true
|
|
|
setTimeout(() => {
|
|
|
console.log(this.$refs.projectganttRef, ',=========== this.$refs.projectganttRef')
|
|
|
- this.$refs.projectganttRef.parentLevelOpensPopUpWindowGantt({ taskId })
|
|
|
+ this.$refs.projectganttRef.parentLevelOpensPopUpWindowGantt({ taskId, ganttData })
|
|
|
}, 300)
|
|
|
},
|
|
|
qrCodeClickEvent() {
|
|
@@ -6315,9 +6315,9 @@ a {
|
|
|
this.getManDaySetting();
|
|
|
}
|
|
|
|
|
|
- const { messageTaskId } = this.$route.query
|
|
|
+ const { messageTaskId, ganttData } = this.$route.query
|
|
|
if(this.user.companyId == 876 && messageTaskId) {
|
|
|
- this.openTheReviewPopUpWindowSeparately(messageTaskId)
|
|
|
+ this.openTheReviewPopUpWindowSeparately(messageTaskId, ganttData)
|
|
|
}
|
|
|
},
|
|
|
};
|