|
@@ -165,7 +165,7 @@ export default {
|
|
|
},
|
|
|
taskIds: {
|
|
|
handler(newV) {
|
|
|
- if (newV) {
|
|
|
+ if (newV[0]) {
|
|
|
this.taskId = newV
|
|
|
this.reportdelivertestInitReportRelease(newV)
|
|
|
}
|
|
@@ -209,6 +209,7 @@ export default {
|
|
|
if (from.devActualTimeStart) {
|
|
|
this.$set(this.from, 'devActualTimeStart', [from.devActualTimeStart, from.devActualTimeEnd]) // 实际开发时间
|
|
|
}
|
|
|
+ this.$set(this.from, 'delayReason', from.delayReason) // 延期原因
|
|
|
this.from.deliverTestActualTime = from.deliverTestActualTime // 实际提测时间
|
|
|
this.$set(this.from, 'followVersion', from.followVersion) // 是否跟版1 跟版 2 不跟版
|
|
|
this.$set(this.from, 'isCodeReview', from.isCodeReview) // 是否code review 0:否 1:是
|
|
@@ -256,6 +257,7 @@ export default {
|
|
|
data.taskIds = this.taskId
|
|
|
data.bizId = localStorage.getItem('bizId')
|
|
|
data.moduleId = this.tpltId
|
|
|
+ data.delayReason = this.from.delayReason
|
|
|
data.deliverTestPlanTime = this.from.deliverTestPlanTime // 计划提测时间
|
|
|
data.deliverTestActualTime = this.from.deliverTestActualTime // 实际提测时间
|
|
|
if (this.from.devPlanTimeStart) {
|
|
@@ -284,6 +286,7 @@ export default {
|
|
|
data.taskIds = this.taskId
|
|
|
data.bizId = localStorage.getItem('bizId')
|
|
|
data.moduleId = this.tpltId
|
|
|
+ data.delayReason = this.from.delayReason
|
|
|
data.deliverTestPlanTime = this.from.deliverTestPlanTime // 计划提测时间
|
|
|
data.deliverTestActualTime = this.from.deliverTestActualTime // 实际提测时间
|
|
|
if (this.from.devPlanTimeStart) {
|