fix(测试跟踪): 用例评审ID排序显示问题

--bug=1016674 --user=宋昌昌 【测试跟踪】github #17805,用例评审关联的功能测试用例列表按ID排序的显示结果和功能用例列表不一致 https://www.tapd.cn/55049933/s/1250441
This commit is contained in:
song-cc-rock 2022-09-22 15:53:16 +08:00 committed by jianxing
parent 27b68fe9de
commit d869b2e706
3 changed files with 46 additions and 7 deletions

View File

@ -115,6 +115,9 @@
<when test="order.name == 'custom_num'">
test_case.custom_num ${order.type}
</when>
<when test="order.name == 'num'">
test_case.num ${order.type}
</when>
<when test="order.name == 'priority'">
test_case.priority ${order.type}
</when>

View File

@ -54,7 +54,8 @@
v-if="!customNum"
:field="item"
:fields-width="fieldsWidth"
prop="num"
:column-key="'num'"
:prop="'num'"
sortable
:label="$t('commons.id')"
min-width="80">
@ -68,7 +69,8 @@
<ms-table-column
v-if="item.id === 'num' && customNum"
:fields-width="fieldsWidth"
prop="customNum"
:column-key="'customNum'"
:prop="'customNum'"
sortable
:label="$t('commons.id')"
min-width="80">

View File

@ -40,12 +40,31 @@
>
<span v-for="item in fields" :key="item.key">
<ms-table-column
v-if="item.id === 'num'"
prop="customNum"
sortable="custom"
v-if="!customNum"
:field="item"
:fields-width="fieldsWidth"
:column-key="'num'"
:prop="'num'"
sortable
:label="$t('commons.id')"
min-width="120px"/>
min-width="80">
<template v-slot:default="scope">
{{ scope.row.num }}
</template>
</ms-table-column>
<ms-table-column
v-if="item.id === 'num' && customNum"
:fields-width="fieldsWidth"
:column-key="'customNum'"
:prop="'customNum'"
sortable
:label="$t('commons.id')"
min-width="80">
<template v-slot:default="scope">
{{ scope.row.customNum }}
</template>
</ms-table-column>
<ms-table-column
prop="name"
@ -316,7 +335,13 @@ export default {
},
editTestReviewTestCaseOrder() {
return editTestReviewTestCaseOrder;
}
},
customNum() {
return this.$store.state.currentProjectIsCustomNum;
},
projectId() {
return getCurrentProjectID();
},
},
created() {
this.condition.orders = getLastTableSortField(this.tableHeaderKey);
@ -328,6 +353,7 @@ export default {
this.isTestManagerOrTestUser = true;
this.initTableHeader();
this.getVersionOptions();
this.getProject();
},
methods: {
nextPage() {
@ -425,6 +451,14 @@ export default {
this.initTableData();
this.$emit('search');
},
getProject() {
this.$get('/project_application/get/config/' + this.projectId + "/CASE_CUSTOM_NUM", result => {
let data = result.data;
if (data) {
this.$store.commit('setCurrentProjectIsCustomNum', data.caseCustomNum);
}
});
},
buildPagePath(path) {
return path + "/" + this.currentPage + "/" + this.pageSize;
},