fix: 测试计划场景列表tag显示问题
This commit is contained in:
parent
f70995e175
commit
3e4e1272e6
|
@ -60,9 +60,23 @@
|
||||||
name: "ApiFailureCasesList",
|
name: "ApiFailureCasesList",
|
||||||
components: {MsTag, PriorityTableItem, TypeTableItem, MethodTableItem, StatusTableItem},
|
components: {MsTag, PriorityTableItem, TypeTableItem, MethodTableItem, StatusTableItem},
|
||||||
props: ['apiTestCases'],
|
props: ['apiTestCases'],
|
||||||
|
watch: {
|
||||||
|
apiTestCases() {
|
||||||
|
this.parseTags();
|
||||||
|
}
|
||||||
|
},
|
||||||
methods: {
|
methods: {
|
||||||
goFailureTestCase(row) {
|
goFailureTestCase(row) {
|
||||||
this.$emit("openFailureTestCase", row);
|
this.$emit("openFailureTestCase", row);
|
||||||
|
},
|
||||||
|
parseTags() {
|
||||||
|
if (this.apiTestCases) {
|
||||||
|
this.apiTestCases.forEach(item => {
|
||||||
|
if (item.tags && item.tags.length > 0) {
|
||||||
|
item.tags = JSON.parse(item.tags);
|
||||||
|
}
|
||||||
|
});
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -70,4 +84,4 @@
|
||||||
|
|
||||||
<style scoped>
|
<style scoped>
|
||||||
|
|
||||||
</style>
|
</style>k
|
||||||
|
|
|
@ -64,9 +64,21 @@
|
||||||
name: "ScenarioFailureCasesList",
|
name: "ScenarioFailureCasesList",
|
||||||
components: {MsTag, PriorityTableItem, TypeTableItem, MethodTableItem, StatusTableItem},
|
components: {MsTag, PriorityTableItem, TypeTableItem, MethodTableItem, StatusTableItem},
|
||||||
props: ['scenarioTestCases'],
|
props: ['scenarioTestCases'],
|
||||||
|
watch: {
|
||||||
|
scenarioTestCases() {
|
||||||
|
this.parseTags();
|
||||||
|
}
|
||||||
|
},
|
||||||
methods: {
|
methods: {
|
||||||
goFailureTestCase(row) {
|
goFailureTestCase(row) {
|
||||||
this.$emit("openFailureTestCase", row);
|
this.$emit("openFailureTestCase", row);
|
||||||
|
},
|
||||||
|
parseTags() {
|
||||||
|
this.scenarioTestCases.forEach(item => {
|
||||||
|
if (item.tags && item.tags.length > 0) {
|
||||||
|
item.tags = JSON.parse(item.tags);
|
||||||
|
}
|
||||||
|
});
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue