This commit is contained in:
parent
509c1d4172
commit
c0f33de4b3
|
|
@ -202,3 +202,7 @@ aside {
|
|||
.el-table__fixed-right {
|
||||
z-index: 99;
|
||||
}
|
||||
|
||||
.my-table {
|
||||
min-height: 546px;
|
||||
}
|
||||
|
|
@ -73,7 +73,7 @@
|
|||
</el-row> -->
|
||||
<el-card class="content-box">
|
||||
<div >
|
||||
<el-table v-loading="loading" :data="tableData" border stripe height="700px">
|
||||
<el-table v-loading="loading" :data="tableData" border stripe class="my-table">
|
||||
<el-table-column label="序号" align="center" width="80" type="index">
|
||||
<template slot-scope="scope">
|
||||
<span>{{ (queryParams.pageNum - 1) * queryParams.pageSize + scope.$index + 1 }}</span>
|
||||
|
|
@ -327,7 +327,7 @@ export default {
|
|||
|
||||
.content-box {
|
||||
border-radius: 8px;
|
||||
height: calc(100vh - 210px);
|
||||
// height: calc(100vh - 210px);
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
overflow: hidden;
|
||||
|
|
|
|||
Loading…
Reference in New Issue