el-table翻頁序號不從1開始(已解決)

weixin_30588675發表於2020-04-05

法一:賦值方式(親測有效)

<el-table-column
type="index"
fixed="left"
align="center"
:index="table_index" //這裡繫結一個方法,將返回值賦給index,即表格每行資料的下標
>
</el-table-column>

 

然後再在methods內寫頁碼的返回值 :

methods: {
table_index(index){

return (this.currentPage-1) * this.pageSize + index + 1
}

法二:其他博主分享的方式:

<el-table-column
label="序號"
type="index"
width="50"
align="center">
<template scope="scope">
<span>{{(page - 1) * pageSize + scope.$index + 1}}</span>
</template>
</el-table-column>

親測該方式不行,控制檯直接報錯!各位可根據自身情況選擇方式。

 
 
 
 
 

轉載於:https://www.cnblogs.com/LindaBlog/p/11127862.html

相關文章