This commit is contained in:
bb_pan 2025-09-03 09:20:10 +08:00
parent f9540e0bc1
commit cafa401d15
5 changed files with 6 additions and 5 deletions

View File

@ -30,7 +30,7 @@
</el-form-item>
</el-form>
<el-table v-loading="loading" :data="tableList" border stripe>
<el-table v-loading="loading" :data="tableList" border stripe :max-height="650">
<el-table-column label="序号" align="center" type="index" width="60">
<template slot-scope="scope">
<span>{{ scope.$index + 1 }}</span>

View File

@ -42,7 +42,7 @@
</el-form-item>
</el-form>
<el-table v-loading="loading" :data="tableList" border stripe>
<el-table v-loading="loading" :data="tableList" border stripe :max-height="650">
<el-table-column label="序号" align="center" type="index" width="60">
<template slot-scope="scope">
<span>{{

View File

@ -42,7 +42,7 @@
</el-form-item>
</el-form>
<el-table v-loading="loading" :data="tableList" border stripe>
<el-table v-loading="loading" :data="tableList" border stripe :max-height="650">
<el-table-column label="序号" align="center" type="index" width="60">
<template slot-scope="scope">
<span>{{

View File

@ -42,7 +42,7 @@
</el-form-item>
</el-form>
<el-table v-loading="loading" :data="tableList" >
<el-table v-loading="loading" :data="tableList" :max-height="650">
<el-table-column label="序号" align="center" type="index" width="60">
<template slot-scope="scope">
<span>{{

View File

@ -29,7 +29,7 @@
</el-form-item>
</el-form>
<el-table v-loading="loading" :data="tableList" >
<el-table v-loading="loading" :data="tableList" :max-height="650">
<el-table-column label="序号" align="center" type="index" width="60">
<template slot-scope="scope">
<span>{{
@ -128,6 +128,7 @@
:total="total"
:page.sync="queryParams.pageNum"
:limit.sync="queryParams.pageSize"
:page-sizes="[10, 50, 200, 500, 2000]"
@pagination="getList"
/>