fix(测试跟踪): 脑图中版本筛选功能失效

--bug=1012876 --user=陈建星 [测试跟踪]github#10373脑图中版本筛选功能失效 https://www.tapd.cn/55049933/s/1167035
This commit is contained in:
chenjianxing 2022-05-27 18:26:16 +08:00 committed by 刘瑞斌
parent 86f0527fc8
commit f887d8a39d
5 changed files with 30 additions and 16 deletions

View File

@ -775,9 +775,11 @@
<select id="listForMinder" resultType="io.metersphere.track.dto.TestCaseDTO">
select
<include refid="io.metersphere.base.mapper.TestCaseMapper.Base_Column_List"/>,
<include refid="io.metersphere.base.mapper.TestCaseMapper.Blob_Column_List"/>
test_case.*,
project_version.name as versionName,
project_version.id as versionId
from test_case
left join project_version on project_version.id = test_case.version_id
<include refid="queryWhereCondition"/>
<if test="request.nodeId != null">
and test_case.node_id = #{request.nodeId}

View File

@ -54,7 +54,7 @@
"vue-float-action-button": "^0.6.6",
"vue-i18n": "^8.15.3",
"vue-jsonpath-picker": "^1.1.5",
"vue-minder-editor-plus": "1.0.43",
"vue-minder-editor-plus": "1.0.44",
"vue-papa-parse": "^2.0.0",
"vue-pdf": "^4.2.0",
"vue-router": "^3.1.3",

View File

@ -122,15 +122,18 @@ export default {
this.defaultMode = Number.parseInt(model);
}
}
this.$nextTick(() => {
if (this.selectNode && this.selectNode.data) {
this.handleNodeSelect(this.selectNode);
} else {
this.parse(this.importJson.root, this.treeNodes);
}
});
this.initData();
},
methods: {
initData() {
this.$nextTick(() => {
if (this.selectNode && this.selectNode.data) {
this.handleNodeSelect(this.selectNode);
} else {
this.parse(this.importJson.root, this.treeNodes);
}
});
},
getNoCaseModuleIds(ids, nodes) {
if (nodes) {
nodes.forEach(node => {

View File

@ -105,6 +105,7 @@
ref="testCaseList">
</test-case-list>
<test-case-minder
:current-version="currentVersion"
:tree-nodes="treeNodes"
:project-id="projectId"
:condition="condition"

View File

@ -87,6 +87,7 @@ name: "TestCaseMinder",
return []
}
},
currentVersion: String,
condition: Object,
projectId: String,
},
@ -120,6 +121,9 @@ name: "TestCaseMinder",
if (this.$refs.minder) {
this.$refs.minder.handleNodeSelect(this.selectNode);
}
},
currentVersion() {
this.$refs.minder.initData();
}
},
mounted() {
@ -182,6 +186,7 @@ name: "TestCaseMinder",
return {
request: {
projectId: this.projectId,
versionId: this.currentVersion,
orders: this.condition.orders
},
result: this.result,
@ -330,12 +335,7 @@ name: "TestCaseMinder",
this.saveExtraNode[parent.newId ? parent.newId : parent.id] = nodes;
}
},
buildSaveCase(node, parent, preNode, nextNode) {
let data = node.data;
if (!data.text) {
return;
}
validate(parent, data) {
if (parent.id === 'root') {
this.throwError(this.$t('test_track.case.minder_all_module_tip'));
}
@ -347,6 +347,14 @@ name: "TestCaseMinder",
if (data.type === 'node') {
this.throwError(this.$t('test_track.case.minder_is_module_tip', [data.text]));
}
},
buildSaveCase(node, parent, preNode, nextNode) {
let data = node.data;
if (!data.text) {
return;
}
this.validate(parent, data);
let isChange = false;