fix(缺陷管理): 缺陷管理关联用例的文案修改
--bug=1036509 --user=宋天阳 【缺陷管理】缺陷详情-用例列表-表头字段和需求不符 https://www.tapd.cn/55049933/s/1470752;--bug=1036507 --user=宋天阳 【缺陷管理】缺陷详情-关联用例窗口-表头字段版本未隐藏 https://www.tapd.cn/55049933/s/1470480
This commit is contained in:
parent
b362fd6a0c
commit
0e021d0bc3
|
@ -720,7 +720,7 @@
|
||||||
<include refid="queryByTestCaseProviderParam"/>
|
<include refid="queryByTestCaseProviderParam"/>
|
||||||
order by
|
order by
|
||||||
<if test="sort != null and sort != ''">
|
<if test="sort != null and sort != ''">
|
||||||
fc.${request.sort}
|
fc.${sort}
|
||||||
</if>
|
</if>
|
||||||
<if test="sort == null or sort == ''">
|
<if test="sort == null or sort == ''">
|
||||||
fc.create_time desc
|
fc.create_time desc
|
||||||
|
|
|
@ -92,16 +92,6 @@
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
</template>
|
</template>
|
||||||
<!--TODO:暂无版本-->
|
|
||||||
<!-- <template #right>
|
|
||||||
<a-select
|
|
||||||
v-model:model-value="version"
|
|
||||||
:options="versionOptions"
|
|
||||||
:placeholder="t('ms.case.associate.versionPlaceholder')"
|
|
||||||
class="w-[200px]"
|
|
||||||
allow-clear
|
|
||||||
/>
|
|
||||||
</template> -->
|
|
||||||
</MsAdvanceFilter>
|
</MsAdvanceFilter>
|
||||||
<ms-base-table v-bind="propsRes" no-disable class="mt-[16px]" v-on="propsEvent">
|
<ms-base-table v-bind="propsRes" no-disable class="mt-[16px]" v-on="propsEvent">
|
||||||
<template #num="{ record }">
|
<template #num="{ record }">
|
||||||
|
@ -308,20 +298,6 @@
|
||||||
|
|
||||||
const keyword = ref('');
|
const keyword = ref('');
|
||||||
const version = ref('');
|
const version = ref('');
|
||||||
// const versionOptions = ref([
|
|
||||||
// {
|
|
||||||
// label: '全部',
|
|
||||||
// value: 'all',
|
|
||||||
// },
|
|
||||||
// {
|
|
||||||
// label: '版本1',
|
|
||||||
// value: '1',
|
|
||||||
// },
|
|
||||||
// {
|
|
||||||
// label: '版本2',
|
|
||||||
// value: '2',
|
|
||||||
// },
|
|
||||||
// ]);
|
|
||||||
|
|
||||||
const columns: MsTableColumn = [
|
const columns: MsTableColumn = [
|
||||||
{
|
{
|
||||||
|
@ -352,12 +328,6 @@
|
||||||
slotName: 'caseLevel',
|
slotName: 'caseLevel',
|
||||||
width: 90,
|
width: 90,
|
||||||
},
|
},
|
||||||
{
|
|
||||||
title: 'ms.case.associate.version',
|
|
||||||
dataIndex: 'versionName',
|
|
||||||
width: 100,
|
|
||||||
showTooltip: true,
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
title: 'ms.case.associate.tags',
|
title: 'ms.case.associate.tags',
|
||||||
dataIndex: 'tags',
|
dataIndex: 'tags',
|
||||||
|
|
|
@ -148,7 +148,7 @@
|
||||||
showDrag: false,
|
showDrag: false,
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
title: 'caseManagement.featureCase.projectName',
|
title: 'bugManagement.project',
|
||||||
slotName: 'projectName',
|
slotName: 'projectName',
|
||||||
dataIndex: 'projectName',
|
dataIndex: 'projectName',
|
||||||
showInTable: true,
|
showInTable: true,
|
||||||
|
@ -157,15 +157,6 @@
|
||||||
ellipsis: true,
|
ellipsis: true,
|
||||||
showDrag: false,
|
showDrag: false,
|
||||||
},
|
},
|
||||||
{
|
|
||||||
title: 'caseManagement.featureCase.tableColumnVersion',
|
|
||||||
dataIndex: 'versionName',
|
|
||||||
showInTable: true,
|
|
||||||
showTooltip: true,
|
|
||||||
width: 300,
|
|
||||||
ellipsis: true,
|
|
||||||
showDrag: false,
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
title: 'caseManagement.featureCase.changeType',
|
title: 'caseManagement.featureCase.changeType',
|
||||||
dataIndex: 'relateCaseTypeName',
|
dataIndex: 'relateCaseTypeName',
|
||||||
|
|
|
@ -3,6 +3,7 @@ export default {
|
||||||
createBug: 'Create Bug',
|
createBug: 'Create Bug',
|
||||||
syncBug: 'Sync Bug',
|
syncBug: 'Sync Bug',
|
||||||
ID: 'ID',
|
ID: 'ID',
|
||||||
|
project: 'Project',
|
||||||
bugName: 'Bug Name',
|
bugName: 'Bug Name',
|
||||||
severity: 'Severity',
|
severity: 'Severity',
|
||||||
status: 'Status',
|
status: 'Status',
|
||||||
|
|
|
@ -6,6 +6,7 @@ export default {
|
||||||
createBug: '创建缺陷',
|
createBug: '创建缺陷',
|
||||||
syncBug: '同步缺陷',
|
syncBug: '同步缺陷',
|
||||||
ID: 'ID',
|
ID: 'ID',
|
||||||
|
project: '项目',
|
||||||
bugName: '缺陷名称',
|
bugName: '缺陷名称',
|
||||||
severity: '严重程度',
|
severity: '严重程度',
|
||||||
status: '状态',
|
status: '状态',
|
||||||
|
|
Loading…
Reference in New Issue