fix(测试跟踪): 修复table高度
This commit is contained in:
parent
adff3b26f0
commit
3cf57c48fa
|
@ -22,11 +22,11 @@
|
||||||
{{ $t('test_track.plan.test_plan') }}
|
{{ $t('test_track.plan.test_plan') }}
|
||||||
</el-menu-item>
|
</el-menu-item>
|
||||||
|
|
||||||
<el-menu-item :index="'/track/issue'">
|
<el-menu-item :index="'/track/issue'" popper-class="submenu">
|
||||||
{{ $t("缺陷管理") }}
|
{{ $t("缺陷管理") }}
|
||||||
</el-menu-item>
|
</el-menu-item>
|
||||||
|
|
||||||
<el-menu-item :index="'/track/testPlan/reportList'">
|
<el-menu-item :index="'/track/testPlan/reportList'" popper-class="submenu">
|
||||||
{{ $t("commons.report") }}
|
{{ $t("commons.report") }}
|
||||||
</el-menu-item>
|
</el-menu-item>
|
||||||
</el-menu>
|
</el-menu>
|
||||||
|
@ -84,7 +84,7 @@ export default {
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
pathName: '',
|
pathName: '',
|
||||||
}
|
};
|
||||||
},
|
},
|
||||||
watch: {
|
watch: {
|
||||||
'$route': {
|
'$route': {
|
||||||
|
@ -130,7 +130,7 @@ export default {
|
||||||
},
|
},
|
||||||
beforeDestroy() {
|
beforeDestroy() {
|
||||||
}
|
}
|
||||||
}
|
};
|
||||||
|
|
||||||
</script>
|
</script>
|
||||||
|
|
||||||
|
|
|
@ -1,7 +1,7 @@
|
||||||
<template>
|
<template>
|
||||||
<el-main>
|
<ms-container>
|
||||||
<el-card>
|
<ms-main-container>
|
||||||
|
<el-card class="table-card">
|
||||||
<template v-slot:header>
|
<template v-slot:header>
|
||||||
<ms-table-header :condition.sync="page.condition" @search="getIssues" @create="handleCreate"
|
<ms-table-header :condition.sync="page.condition" @search="getIssues" @create="handleCreate"
|
||||||
:create-tip="$t('test_track.issue.create_issue')" :title="$t('test_track.issue.issue_list')"
|
:create-tip="$t('test_track.issue.create_issue')" :title="$t('test_track.issue.issue_list')"
|
||||||
|
@ -57,7 +57,7 @@
|
||||||
prop="resourceName">
|
prop="resourceName">
|
||||||
<template v-slot="scope">
|
<template v-slot="scope">
|
||||||
<el-link v-if="scope.row.resourceName" @click="$router.push('/track/plan/view/' + scope.row.resourceId)">
|
<el-link v-if="scope.row.resourceName" @click="$router.push('/track/plan/view/' + scope.row.resourceId)">
|
||||||
{{scope.row.resourceName}}
|
{{ scope.row.resourceName }}
|
||||||
</el-link>
|
</el-link>
|
||||||
<span v-else>
|
<span v-else>
|
||||||
--
|
--
|
||||||
|
@ -69,13 +69,14 @@
|
||||||
|
|
||||||
</ms-table>
|
</ms-table>
|
||||||
|
|
||||||
<ms-table-pagination :change="getIssues" :current-page.sync="page.currentPage" :page-size.sync="page.pageSize" :total="page.total"/>
|
<ms-table-pagination :change="getIssues" :current-page.sync="page.currentPage" :page-size.sync="page.pageSize"
|
||||||
|
:total="page.total"/>
|
||||||
|
|
||||||
<issue-edit @refresh="getIssues" ref="issueEdit"/>
|
<issue-edit @refresh="getIssues" ref="issueEdit"/>
|
||||||
|
|
||||||
</el-card>
|
</el-card>
|
||||||
</el-main>
|
</ms-main-container>
|
||||||
|
</ms-container>
|
||||||
</template>
|
</template>
|
||||||
|
|
||||||
<script>
|
<script>
|
||||||
|
@ -87,7 +88,8 @@ import MsTablePagination from "@/business/components/common/pagination/TablePagi
|
||||||
import {
|
import {
|
||||||
CUSTOM_FIELD_SCENE_OPTION,
|
CUSTOM_FIELD_SCENE_OPTION,
|
||||||
CUSTOM_FIELD_TYPE_OPTION,
|
CUSTOM_FIELD_TYPE_OPTION,
|
||||||
FIELD_TYPE_MAP, ISSUE_STATUS_MAP,
|
FIELD_TYPE_MAP,
|
||||||
|
ISSUE_STATUS_MAP,
|
||||||
SYSTEM_FIELD_NAME_MAP
|
SYSTEM_FIELD_NAME_MAP
|
||||||
} from "@/common/js/table-constants";
|
} from "@/common/js/table-constants";
|
||||||
import MsTableHeader from "@/business/components/common/components/MsTableHeader";
|
import MsTableHeader from "@/business/components/common/components/MsTableHeader";
|
||||||
|
@ -95,17 +97,23 @@ import IssueDescriptionTableItem from "@/business/components/track/issue/IssueDe
|
||||||
import IssueEdit from "@/business/components/track/issue/IssueEdit";
|
import IssueEdit from "@/business/components/track/issue/IssueEdit";
|
||||||
import {getIssues} from "@/network/Issue";
|
import {getIssues} from "@/network/Issue";
|
||||||
import {getPageInfo} from "@/common/js/tableUtils";
|
import {getPageInfo} from "@/common/js/tableUtils";
|
||||||
|
import MsContainer from "@/business/components/common/components/MsContainer";
|
||||||
|
import MsMainContainer from "@/business/components/common/components/MsMainContainer";
|
||||||
|
|
||||||
export default {
|
export default {
|
||||||
name: "CustomFieldList",
|
name: "CustomFieldList",
|
||||||
components: {
|
components: {
|
||||||
|
MsMainContainer,
|
||||||
|
MsContainer,
|
||||||
IssueEdit,
|
IssueEdit,
|
||||||
IssueDescriptionTableItem,
|
IssueDescriptionTableItem,
|
||||||
MsTableHeader,
|
MsTableHeader,
|
||||||
MsTablePagination, MsTableButton, MsTableOperators, MsTableColumn, MsTable},
|
MsTablePagination, MsTableButton, MsTableOperators, MsTableColumn, MsTable
|
||||||
|
},
|
||||||
data() {
|
data() {
|
||||||
return {
|
return {
|
||||||
page: getPageInfo(),
|
page: getPageInfo(),
|
||||||
screenHeight: 'calc(100vh - 310px)',
|
screenHeight: 'calc(100vh - 290px)',
|
||||||
operators: [
|
operators: [
|
||||||
{
|
{
|
||||||
tip: this.$t('commons.edit'), icon: "el-icon-edit",
|
tip: this.$t('commons.edit'), icon: "el-icon-edit",
|
||||||
|
@ -181,5 +189,13 @@ export default {
|
||||||
</script>
|
</script>
|
||||||
|
|
||||||
<style scoped>
|
<style scoped>
|
||||||
|
.table-page {
|
||||||
|
padding-top: 20px;
|
||||||
|
margin-right: -9px;
|
||||||
|
float: right;
|
||||||
|
}
|
||||||
|
|
||||||
|
.el-table {
|
||||||
|
cursor: pointer;
|
||||||
|
}
|
||||||
</style>
|
</style>
|
||||||
|
|
Loading…
Reference in New Issue