亚洲激情专区-91九色丨porny丨老师-久久久久久久女国产乱让韩-国产精品午夜小视频观看

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

element表格翻頁第2頁從1開始編號(后端從0開始分頁)

發布時間:2020-09-06 00:37:47 來源:腳本之家 閱讀:202 作者:溫言 欄目:web開發

項目中常見的分頁顯示,第二頁從1開始編號,然后在切換分頁的過程中,偶現不對,都是小問題,整理記錄一下,供參考。
template:

...
<el-table-column 
type="index" 
label="編號"
:index="getIndex"
width="80px">
 </el-table-column>
...
<Pagination
  :total="total"
  :pageSize="pageSize"
  :currentPage="currentPage"
  @sizeChange="sizeChange"
  @currentChange="currentChange">
</Pagination>

script:

 getIndex (index) {
  if (this.currentPage==0){
    return (this.currentPage) * this.pageSize + index + 1
  } else{
    return (this.currentPage-1) * this.pageSize + index + 1
  }
 },

由于后端第一頁是從0開始的,而前端是從第一頁開始,所以需要在當前頁減1。關于分頁,本頁條數

sizeChange(val){
  let that = this;
  that.currentPage = 1;
  that.pageSize = val;
  that.getPageInfo(that.currentPage, val);
},

跳轉頁面

currentChange(val){
  let that = this;
  that.currentPage = val;
  that.getPageInfo(val, that.pageSize);
},

頁面加載數據

getUserList(currentPage, pageSize){
  let that = this;
  that.$axios({
   method: 'get',
   url: '***',
   params: {
    currentPage: (currentPage || that.currentPage || 1)-1,
    pageSize: pageSize || that.pageSize || 10
   },
   needInterceptors: true,
   showError: true,
   loader: true
  }).then(function(result){
   let data = result && result.data || [];
   let page = result && result.pageCont || {};
   that.total = page.totalItems || 0;
   that.tableData = data;
  })
 },

試了幾次,這樣寫應該是沒有問題的,也解決了后端傳0開始的問題。

以上就是本文的全部內容,希望對大家的學習有所幫助,也希望大家多多支持億速云。

向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

肇东市| 天台县| 宜春市| 莲花县| 乐山市| 铁力市| 得荣县| 多伦县| 娄底市| 瑞丽市| 乌拉特前旗| 城步| 葫芦岛市| 华容县| 泸水县| 广宗县| 宿州市| 罗山县| 台山市| 祁连县| 娱乐| 阳高县| 土默特左旗| 宜川县| 沙坪坝区| 应城市| 五大连池市| 古田县| 城市| 东山县| 藁城市| 江永县| 沽源县| 大竹县| 苏尼特右旗| 西宁市| 淮安市| 宁南县| 五寨县| 珲春市| 都江堰市|