|
@@ -77,7 +77,7 @@
|
|
|
</el-col>
|
|
|
<el-col v-if="from.isCodeReview === 1" :span="12" class="Layout_space_between">
|
|
|
<span class="from-namer"><span style="color: red;">*</span>执行人:</span>
|
|
|
- <searchTeam :value.sync="from.codeReviewExecutor" :clearable="true" :multiple="true" :size="'small'" :disabled="releaseType" style="width: 100%;" />
|
|
|
+ <searchTeam :value.sync="from.codeReviewExecutor" :clearable="true" :multiple="true" :size="'small'" :placeholder="'请输入姓名或邮箱前缀'" :disabled="releaseType" style="width: 100%;" />
|
|
|
</el-col>
|
|
|
</el-row>
|
|
|
</el-form>
|
|
@@ -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) {
|
|
@@ -363,6 +366,12 @@ export default {
|
|
|
opacity:1;
|
|
|
>>> .el-form-item__label {
|
|
|
color: #333;
|
|
|
+}
|
|
|
+>>> .el-date-editor .el-range-separator {
|
|
|
+ padding: 0 5px;
|
|
|
+ line-height: 26px;
|
|
|
+ width: auto;
|
|
|
+ color: #303133;
|
|
|
}
|
|
|
.from-name {
|
|
|
width: 150px !important;
|