This commit is contained in:
DESKTOP-369JRHT\12997 2024-10-09 16:13:41 +08:00
parent 484af8e842
commit ec52b4c8ca
3 changed files with 34 additions and 13 deletions

View File

@ -6,7 +6,7 @@
{{ item.name }} {{ item.name }}
</div> </div>
</div> </div>
<div class="w_box" v-if="tabindex == 1" > <div class="w_boxs" v-if="tabindex == 1" >
<writeList></writeList> <writeList></writeList>
</div> </div>
<div class="w_box" v-if="tabindex == 0" > <div class="w_box" v-if="tabindex == 0" >
@ -17,7 +17,7 @@
</div> </div>
<div > <div >
<el-button type="primary" @click="getList">搜索 / 核销</el-button> <el-button type="primary" @click="getList">搜索 / 核销</el-button>
</div>+ </div>
</div> </div>
<div class="wrap-box"> <div class="wrap-box">
@ -30,7 +30,7 @@
</div> </div>
<div class="hx_"> <div class="hx_">
立即核销 立即核销
</div>-> </div>
</div> </div>
</div> </div>
<el-empty :image-size="300" v-if="total == 0"></el-empty> <el-empty :image-size="300" v-if="total == 0"></el-empty>
@ -220,6 +220,12 @@ export default {
min-height: 92vh; min-height: 92vh;
margin: 10px auto; margin: 10px auto;
} }
.w_boxs{
width: 98%;
box-sizing: border-box;
margin: 10px auto;
}
.tab-box { .tab-box {
width: 100%; width: 100%;
height: 40px; height: 40px;

View File

@ -203,16 +203,16 @@
</el-table-column> </el-table-column>
</el-table> </el-table>
<div class="pagination-box">
<pagination
:total="total3"
:page.sync="queryParams2.page"
:limit.sync="queryParams2.pageSize"
@pagination="getCreditUnits()"
/>
</div>
</div>
</div>
<div class="pagination-box">
<pagination
:total="total3"
:page.sync="queryParams2.page"
:limit.sync="queryParams2.pageSize"
@pagination="getCreditUnits()"
/>
</div>
</div> </div>
@ -1579,7 +1579,7 @@ import {getLodop} from "@/api/LodopFuncs";
} }
.table-box{ .table-box{
width: 100%; width: 100%;
height: 75vh; height: 70vh;
overflow: auto; overflow: auto;
} }
.pagination-box{ .pagination-box{

View File

@ -1,6 +1,7 @@
<template> <template>
<div> <div>
<div class="top_new"> <div class="top_new">
<el-form :model="queryParams" ref="queryForm" size="small" style="width: 100%" :inline="true" > <el-form :model="queryParams" ref="queryForm" size="small" style="width: 100%" :inline="true" >
@ -120,5 +121,19 @@ export default {
border-radius: 8px; border-radius: 8px;
box-sizing: border-box; box-sizing: border-box;
height: 64px; height: 64px;
margin-bottom: 5px;
box-sizing: border-box;
padding: 15px;
border-radius: 8px;
}
.table-box {
width: 100%;
height: 66vh;
overflow: auto;
background: #FFF;
box-sizing: border-box;
padding: 15px;
border-radius: 8px;
min-height: 85vh;
} }
</style> </style>