This commit is contained in:
parent
6816c13272
commit
3fd4e2ee6c
|
@ -1,6 +1,5 @@
|
|||
<template>
|
||||
<div class="main-content">
|
||||
|
||||
<el-container class="case-container">
|
||||
<el-aside class="tree-aside">
|
||||
<select-menu
|
||||
|
@ -17,7 +16,7 @@
|
|||
</node-tree>
|
||||
</el-aside>
|
||||
|
||||
<el-main>
|
||||
<el-main class="test-case-list">
|
||||
<test-case-list
|
||||
:current-project="currentProject"
|
||||
@openTestCaseEditDialog="openTestCaseEditDialog"
|
||||
|
@ -218,7 +217,12 @@
|
|||
}
|
||||
|
||||
.main-content {
|
||||
background: white;
|
||||
/*background: white;*/
|
||||
}
|
||||
|
||||
.test-case-list {
|
||||
padding: 15px;
|
||||
}
|
||||
|
||||
|
||||
</style>
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
<template>
|
||||
|
||||
<el-main>
|
||||
<div>
|
||||
<el-card v-loading="result.loading">
|
||||
<template v-slot:header>
|
||||
<div>
|
||||
|
@ -85,7 +85,7 @@
|
|||
:total="total"/>
|
||||
|
||||
</el-card>
|
||||
</el-main>
|
||||
</div>
|
||||
</template>
|
||||
|
||||
<script>
|
||||
|
|
|
@ -18,7 +18,7 @@
|
|||
|
||||
</el-aside>
|
||||
|
||||
<el-main class="view-main">
|
||||
<el-main>
|
||||
<test-plan-test-case-list
|
||||
@openTestCaseRelevanceDialog="openTestCaseRelevanceDialog"
|
||||
@refresh="refresh"
|
||||
|
@ -110,14 +110,15 @@
|
|||
position: relative;
|
||||
border: 1px solid #EBEEF5;
|
||||
box-sizing: border-box;
|
||||
}
|
||||
|
||||
.view-main {
|
||||
padding-top: 0;
|
||||
}
|
||||
|
||||
.main-content {
|
||||
background: white;
|
||||
}
|
||||
|
||||
.el-main {
|
||||
padding: 15px;
|
||||
}
|
||||
|
||||
.main-content {
|
||||
/*background: white;*/
|
||||
}
|
||||
|
||||
</style>
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
<template>
|
||||
|
||||
<el-main>
|
||||
<div>
|
||||
<el-card v-loading="result.loading">
|
||||
<template v-slot:header>
|
||||
<div>
|
||||
|
@ -158,7 +158,7 @@
|
|||
@refresh="initTableData"/>
|
||||
|
||||
</el-card>
|
||||
</el-main>
|
||||
</div>
|
||||
</template>
|
||||
|
||||
<script>
|
||||
|
|
|
@ -212,6 +212,11 @@ export default {
|
|||
}
|
||||
},
|
||||
test_track: {
|
||||
// test_track: "测试跟踪",
|
||||
// case: {
|
||||
//
|
||||
//
|
||||
// },
|
||||
'test_track': '测试跟踪',
|
||||
'test_case': '测试用例',
|
||||
'case_list': '用例列表',
|
||||
|
|
Loading…
Reference in New Issue