需要使用的时候调用这个函数
/**
* 数据表格删除后无数据自动跳上页
* @param {string} total 总页数
* @param {string} limit 当前页条数
* @param {string} page 当前页码
* @returns {string} 最新页码
*/
export function newsPage(ids, total, limit, page) {
const delNum = Array.isArray(ids) ? ids.length : 1 // 删除条数
const totalPage = Math.ceil((total - delNum) / limit) // 总页数
const currentPage = page > totalPage ? totalPage : page // 最新页码
return currentPage < 1 ? 1 : currentPage // 防止删空
}