中文字幕av专区_日韩电影在线播放_精品国产精品久久一区免费式_av在线免费观看网站

溫馨提示×

溫馨提示×

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

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

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

北安市| 阿荣旗| 浮梁县| 开远市| 桂阳县| 仙居县| 泽州县| 日土县| 周口市| 伊宁县| 张家港市| 波密县| 霍州市| 隆子县| 项城市| 霍城县| 邵阳市| 汉阴县| 张北县| 黄梅县| 潼南县| 巴青县| 新晃| 大厂| 凤翔县| 永善县| 平度市| 安化县| 望奎县| 迁安市| 榆林市| 平南县| 绥芬河市| 板桥市| 北海市| 宁国市| 综艺| 盘锦市| 瓦房店市| 上虞市| 皋兰县|