fix(测试跟踪): 用例关联多层级需求显示为空

This commit is contained in:
chenjianxing 2023-02-02 16:56:42 +08:00 committed by jianxing
parent 248659080d
commit a05d6202db
1 changed files with 1 additions and 1 deletions

View File

@ -538,6 +538,7 @@ export default {
.then(r => { .then(r => {
this.demandOptions = []; this.demandOptions = [];
if (r.data && r.data.length > 0) { if (r.data && r.data.length > 0) {
this.demandValue = [];
this.buildDemandCascaderOptions(r.data, this.demandOptions, []); this.buildDemandCascaderOptions(r.data, this.demandOptions, []);
} }
this.addOtherOption(); this.addOtherOption();
@ -558,7 +559,6 @@ export default {
this.result = {loading: false}; this.result = {loading: false};
}, },
buildDemandCascaderOptions(data, options, pathArray) { buildDemandCascaderOptions(data, options, pathArray) {
this.demandValue = [];
data.forEach(item => { data.forEach(item => {
let option = { let option = {
label: item.platform + ': ' + item.name, label: item.platform + ': ' + item.name,