From 438d54bb3f5123bcd4be35dcb5d85a8b3e2a7567 Mon Sep 17 00:00:00 2001 From: chenjianxing Date: Thu, 2 Feb 2023 16:56:42 +0800 Subject: [PATCH] =?UTF-8?q?fix(=E6=B5=8B=E8=AF=95=E8=B7=9F=E8=B8=AA):=20?= =?UTF-8?q?=E7=94=A8=E4=BE=8B=E5=85=B3=E8=81=94=E5=A4=9A=E5=B1=82=E7=BA=A7?= =?UTF-8?q?=E9=9C=80=E6=B1=82=E6=98=BE=E7=A4=BA=E4=B8=BA=E7=A9=BA?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../src/business/case/components/TestCaseEditOtherInfo.vue | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test-track/frontend/src/business/case/components/TestCaseEditOtherInfo.vue b/test-track/frontend/src/business/case/components/TestCaseEditOtherInfo.vue index c363f57f12..ebb1e92012 100644 --- a/test-track/frontend/src/business/case/components/TestCaseEditOtherInfo.vue +++ b/test-track/frontend/src/business/case/components/TestCaseEditOtherInfo.vue @@ -538,6 +538,7 @@ export default { .then(r => { this.demandOptions = []; if (r.data && r.data.length > 0) { + this.demandValue = []; this.buildDemandCascaderOptions(r.data, this.demandOptions, []); } this.addOtherOption(); @@ -558,7 +559,6 @@ export default { this.result = {loading: false}; }, buildDemandCascaderOptions(data, options, pathArray) { - this.demandValue = []; data.forEach(item => { let option = { label: item.platform + ': ' + item.name,