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