From 7c64025f9f2cb7231317db9ff2d3655066e12522 Mon Sep 17 00:00:00 2001
From: qq787203167 <787203167@qq.com>
Date: Thu, 19 May 2022 20:32:38 +0800
Subject: [PATCH] =?UTF-8?q?=E5=AF=B9=E6=8E=A5=E4=BB=BB=E5=8A=A1=E7=A1=AE?=
=?UTF-8?q?=E8=AE=A4=E6=B5=81=E7=A8=8B?=
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit
---
.../components/engineeringConfirmation.vue | 11 +-
.../reviewedByThePersonInCharge.vue | 28 +-
.../processForm/taskListProcess/index.vue | 15 +-
.../ProjectDetails/index.vue | 252 +++++++++---------
.../ProjectDetails/index.vue | 4 +-
.../projectManagement/components/TaskList.vue | 5 +
6 files changed, 163 insertions(+), 152 deletions(-)
diff --git a/jero-web/src/views/processCenter/components/engineeringConfirmation.vue b/jero-web/src/views/processCenter/components/engineeringConfirmation.vue
index f485910d0..902c8a6e5 100644
--- a/jero-web/src/views/processCenter/components/engineeringConfirmation.vue
+++ b/jero-web/src/views/processCenter/components/engineeringConfirmation.vue
@@ -7,19 +7,19 @@
@@ -205,6 +209,7 @@
}
},
mounted() {
+ this.$route.query.isDisplay = JSON.parse(this.$route.query.isDisplay)
if (this.queryBy) {
this.formInline.reviewResult = this.queryBy.reviewResult || undefined
this.formInline.approvalOpinion = ''
@@ -214,7 +219,6 @@
this.formInline.deliveryRequirements = this.queryPersonInCharge.deliveryRequirements
this.formInline.engineerFeedbackContent = this.queryPersonInCharge.engineerFeedbackContent
this.formInline.fileId = this.queryPersonInCharge.fileId
- console.log(this.formInline)
this.formInline = { ...this.formInline }
}
},
diff --git a/jero-web/src/views/processCenter/processForm/taskListProcess/index.vue b/jero-web/src/views/processCenter/processForm/taskListProcess/index.vue
index 3465650e1..7c565020e 100644
--- a/jero-web/src/views/processCenter/processForm/taskListProcess/index.vue
+++ b/jero-web/src/views/processCenter/processForm/taskListProcess/index.vue
@@ -147,19 +147,19 @@
},
computed: {
isSendBack() {
- if (this.$route.query.TaskKey == 'fqrsh') {
+ if (this.$route.query.TaskKey == 'fqrsh' && this.$route.query.isDisplay) {
return true
}
return false
},
isTerminationProcess() {
- if (this.$route.query.TaskKey == 'fqrsh') {
+ if (this.$route.query.TaskKey == 'fqrsh' && this.$route.query.isDisplay) {
return true
}
return false
},
isAdopt() {
- if (this.$route.query.TaskKey == 'fqrsh') {
+ if (this.$route.query.TaskKey == 'fqrsh' && this.$route.query.isDisplay) {
if (this.queryBy.reviewResult == 'Compliance' || this.queryBy.reviewResult == 'NA') {
return true
}
@@ -167,9 +167,9 @@
return false
},
isSubmit() {
- if (this.$route.query.TaskKey == 'zrrclrw') {
+ if (this.$route.query.TaskKey == 'zrrclrw' && this.$route.query.isDisplay) {
return true
- } else if (this.$route.query.TaskKey == 'dreDispose') {
+ } else if (this.$route.query.TaskKey == 'dreDispose' && this.$route.query.isDisplay) {
if (!this.queryPersonInCharge.engineerFeedbackContent && this.queryPersonInCharge.status != 'haveDone') {
return true
}
@@ -177,7 +177,7 @@
return false
},
isResubmit() {
- if (this.$route.query.TaskKey == 'dreDispose') {
+ if (this.$route.query.TaskKey == 'dreDispose' && this.$route.query.isDisplay) {
if (this.queryPersonInCharge.engineerFeedbackContent && this.queryPersonInCharge.status != 'haveDone') {
return true
}
@@ -187,6 +187,7 @@
},
mounted() {
let _this = this
+ this.$route.query.isDisplay = JSON.parse(this.$route.query.isDisplay)
let query = {
actiProcInstId: this.$route.query.actiProcInstId,
createBy: this.userInfo().username
@@ -272,7 +273,7 @@
projectTaskInventoryId: this.$route.query.projectTaskInventoryId,
deliveryRequirements: val.deliveryRequirements
}
- postAction(this.url.dreSubmit, query).then((res) => {
+ putAction(this.url.dreSubmit, query).then((res) => {
})
},
diff --git a/jero-web/src/views/projectManagement/ParameterItemCollection/ProjectDetails/index.vue b/jero-web/src/views/projectManagement/ParameterItemCollection/ProjectDetails/index.vue
index 7d8efe6c1..dc15a49ad 100644
--- a/jero-web/src/views/projectManagement/ParameterItemCollection/ProjectDetails/index.vue
+++ b/jero-web/src/views/projectManagement/ParameterItemCollection/ProjectDetails/index.vue
@@ -1,6 +1,6 @@
-
+