fix(测试跟踪):功能用例关联的devops需求,保存后回显为空

--bug=1022341 --user=王旭 【测试跟踪】github#21508,功能用例关联的devops需求,保存后回显为空 https://www.tapd.cn/55049933/s/1357600
This commit is contained in:
WangXu10 2023-03-30 16:52:35 +08:00 committed by fit2-zhao
parent cfab7b6223
commit 082909d485
1 changed files with 12 additions and 12 deletions

View File

@ -144,7 +144,9 @@ export default {
selfEditable: false,
hoverEditable: false,
memberOptions: [],
isCustomNone: false
isCustomNone: false,
optionPlatform: '',
optionPlatformValue: ''
};
},
props: {
@ -317,46 +319,44 @@ export default {
if (!demandOptions) {
demandOptions = this.contentObject.content.demandOptions || [];
}
let optionPlatform = "";
if (demandOptions.length > 0) {
for (let i = 0; i < demandOptions.length; i++) {
if (demandOptions[i].value === this.contentObject.content.demandId) {
optionPlatform = this.handleDemandOptionPlatform(demandOptions[i]);
this.optionPlatform = this.handleDemandOptionPlatform(demandOptions[i]);
break;
}
if (demandOptions[i].children && demandOptions[i].children.length > 0) {
optionPlatform = this.getStoryPlatform(
this.optionPlatform = this.getStoryPlatform(
demandOptions[i].children,
this.contentObject.content.demandId,
);
}
}
}
return optionPlatform;
return this.optionPlatform;
},
getStoryLabel(demandOptions) {
if (!demandOptions) {
demandOptions = this.contentObject.content.demandOptions || [];
}
let optionPlatform = "";
if (demandOptions.length > 0) {
for (let i = 0; i < demandOptions.length; i++) {
if (demandOptions[i].value === this.contentObject.content.demandId) {
optionPlatform = this.handleDemandOptionLabel(demandOptions[i]);
this.optionPlatformValue = this.handleDemandOptionLabel(demandOptions[i]);
break;
}
if (demandOptions[i].children && demandOptions[i].children.length > 0) {
optionPlatform = this.getStoryLabel(
this.optionPlatformValue = this.getStoryLabel(
demandOptions[i].children,
this.contentObject.content.demandId,
);
}
if (demandOptions[i].value === "other") {
optionPlatform = this.$t("test_track.case.other");
}
}
if (this.optionPlatformValue === '') {
this.optionPlatformValue = this.$t("test_track.case.other");
}
}
return optionPlatform;
return this.optionPlatformValue;
},
handleDemandOptionPlatform(data) {
if (data.platform) {