This commit is contained in:
BianLzhaoMin 2025-12-12 13:54:22 +08:00
parent 931429dd69
commit f912dc8016
1 changed files with 8 additions and 10 deletions

View File

@ -70,7 +70,7 @@
</el-card> </el-card>
</el-col> </el-col>
<el-col :span="14"> <el-col :span="14">
<el-card> <el-card class="table-container">
<el-form :model="queryParams" ref="queryForm" size="small" :inline="true" label-width="68px"> <el-form :model="queryParams" ref="queryForm" size="small" :inline="true" label-width="68px">
<el-form-item label="关键字" prop="keyWord"> <el-form-item label="关键字" prop="keyWord">
<el-input <el-input
@ -92,19 +92,13 @@
<el-row :gutter="10" class="mb8"> <el-row :gutter="10" class="mb8">
<el-col :span="1.5"> <el-col :span="1.5">
<el-button type="warning" plain icon="el-icon-edit" size="mini" @click="onBatchEditPrice" <el-button type="warning" plain icon="el-icon-edit" size="mini" @click="onBatchEditPrice">
>批量修改租赁价 批量修改租赁价
</el-button> </el-button>
</el-col> </el-col>
</el-row> </el-row>
<el-table <el-table v-loading="loading" :data="typeList" border @selection-change="handleSelectionChange">
v-if="typeList.length > 0"
v-loading="loading"
:data="typeList"
border
@selection-change="handleSelectionChange"
>
<el-table-column type="selection" width="50" align="center" /> <el-table-column type="selection" width="50" align="center" />
<el-table-column <el-table-column
label="专业" label="专业"
@ -459,4 +453,8 @@ export default {
::v-deep .el-card__body { ::v-deep .el-card__body {
padding: 10px; padding: 10px;
} }
.table-container {
overflow: auto;
}
</style> </style>