|
|
@ -10,15 +10,15 @@ |
|
|
|
<!-- 等级表格 --> |
|
|
|
<div class="table-container"> |
|
|
|
<el-table :data="tableData" style="width: 100%" :row-style="{ height: '60px' }"> |
|
|
|
<el-table-column type="index" label="ID" width="120px" fixed="left"> |
|
|
|
<el-table-column type="index" label="ID" width="120px" fixed="left" show-overflow-tooltip> |
|
|
|
<template #default="scope"> |
|
|
|
{{ pagination.pageSize * (pagination.pageNum - 1) + scope.$index + 1 }} |
|
|
|
</template> |
|
|
|
</el-table-column> |
|
|
|
<el-table-column prop="gradeName" label="等级名称" width="240" align="center" /> |
|
|
|
<el-table-column prop="amount" label="数量" width="250" align="center" /> |
|
|
|
<el-table-column prop="perWin" label="每轮抽取人数" width="300" align="center" /> |
|
|
|
<el-table-column prop="sort" label="排序" width="240" align="center" /> |
|
|
|
<el-table-column prop="gradeName" label="等级名称" width="240" align="center" show-overflow-tooltip /> |
|
|
|
<el-table-column prop="amount" label="数量" width="250" align="center" show-overflow-tooltip /> |
|
|
|
<el-table-column prop="perWin" label="每轮抽取人数" width="300" align="center" show-overflow-tooltip /> |
|
|
|
<el-table-column prop="sort" label="排序" width="240" align="center" show-overflow-tooltip /> |
|
|
|
<el-table-column prop="operation" fixed="right" width="240" label="操作" align="center"> |
|
|
|
<template #default="scope"> |
|
|
|
<div style="display: flex; gap: 10px; justify-content: center;"> |
|
|
|