|
@@ -59,7 +59,7 @@
|
|
|
</el-col>
|
|
|
<el-col v-if="from.followVersion === 1" :span="12" class="Layout_flex_start">
|
|
|
<span class="from-namer">跟版客户端</span>
|
|
|
- <el-select v-model="from.involveApp" filterable remote size="small" :disabled="releaseType" clearable placeholder="请选择" style="width: -webkit-fill-available;">
|
|
|
+ <el-select v-model="from.involveAppIds" filterable remote multiple size="small" :disabled="releaseType" clearable placeholder="请选择" style="width: -webkit-fill-available;">
|
|
|
<el-option v-for="item in appClient" :key="item.code" :label="item.msg" :value="item.code" />
|
|
|
</el-select>
|
|
|
</el-col>
|
|
@@ -189,8 +189,8 @@ export default {
|
|
|
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:是
|
|
|
+ this.$set(this.from, 'involveAppIds', Number(from.involveAppIds)) // 跟版客户端
|
|
|
this.from.codeReviewExecutor = from.codeReviewExecutor ? from.codeReviewExecutor.split() : '' // 执行人
|
|
|
- this.$set(this.from, 'involveApp', Number(from.involveApp)) // 跟版客户端
|
|
|
}
|
|
|
},
|
|
|
|
|
@@ -205,12 +205,12 @@ export default {
|
|
|
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:是
|
|
|
- this.$set(this.from, 'involveApp', Number(from.involveApp)) // 跟版客户端
|
|
|
+ this.$set(this.from, 'involveAppIds', Number(from.involveAppIds)) // 跟版客户端
|
|
|
this.from.codeReviewExecutor = from.codeReviewExecutor ? from.codeReviewExecutor.split() : '' // 执行人
|
|
|
}
|
|
|
const res2 = await reportdelivertestGetRequiresByTaskIds({ taskIds: val })
|
|
|
if (res2.code === 200) {
|
|
|
- this.tableData = res.data.list
|
|
|
+ this.tableData = res2.data
|
|
|
}
|
|
|
},
|
|
|
|
|
@@ -255,7 +255,7 @@ export default {
|
|
|
data.devActualTimeStart = this.from.devActualTimeStart[0] // 实际开发开始时间
|
|
|
data.devActualTimeEnd = this.from.devActualTimeStart[1] // 实际开发结束时间
|
|
|
}
|
|
|
- data.involveApp = this.from.involveApp // 跟版客户端
|
|
|
+ data.involveAppIds = this.from.involveAppIds // 跟版客户端
|
|
|
data.followVersion = this.from.followVersion // 是否跟版1 跟版 2 不跟版
|
|
|
data.isCodeReview = this.from.isCodeReview // 是否code review 0:否 1:是
|
|
|
data.codeReviewExecutor = this.from.codeReviewExecutor ? this.from.codeReviewExecutor.toString() : '' // 执行人
|
|
@@ -282,7 +282,7 @@ export default {
|
|
|
data.devActualTimeStart = this.from.devActualTimeStart[0] // 实际开发开始时间
|
|
|
data.devActualTimeEnd = this.from.devActualTimeStart[1] // 实际开发结束时间
|
|
|
}
|
|
|
- data.involveApp = this.from.involveApp // 跟版客户端
|
|
|
+ data.involveAppIds = this.from.involveAppIds // 跟版客户端
|
|
|
data.followVersion = this.from.followVersion // 是否跟版1 跟版 2 不跟版
|
|
|
data.isCodeReview = this.from.isCodeReview // 是否code review 0:否 1:是
|
|
|
data.codeReviewExecutor = this.from.codeReviewExecutor ? this.from.codeReviewExecutor.toString() : '' // 执行人
|