current:当前页数
pageSize:每页显示条数
<template #xh="{ index }"> {{ `${index + (pagination.current - 1) * pagination.pageSize + 1}` }} </template>
const columns = [
{
title: '序号',
dataIndex: 'xh',
key: 'xh',
width: 180,
slots: {
customRender: 'xh',
},
},
]