vue中el-table翻页序号连续+表格合计

1、遇到问题分页后数据的排序是不连续的

解决方式:





methods: {
    table_index(index){
        return (this.currentPage-1) * this.pageSize + index + 1
}

(其中:this.currentPage为当前页码,this.pageSize为每页数据条数。)

 

2、表格合计

vue中el-table翻页序号连续+表格合计_第1张图片

    

你可能感兴趣的:(vue,vue.js,javascript,html,elementui)