91超碰碰碰碰久久久久久综合_超碰av人澡人澡人澡人澡人掠_国产黄大片在线观看画质优化_txt小说免费全本

溫馨提示×

溫馨提示×

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

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

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

新密市| 龙南县| 温州市| 凤庆县| 黎城县| 玉龙| 松滋市| 荆州市| 河北区| 瑞昌市| 甘德县| 罗定市| 唐山市| 闽侯县| 潮州市| 黎平县| 江津市| 孝义市| 公主岭市| 海门市| 南安市| 通河县| 闻喜县| 太湖县| 三河市| 临漳县| 桃园市| 蚌埠市| 隆尧县| 榕江县| 南宫市| 古蔺县| 石家庄市| 察隅县| 盐城市| 河西区| 南乐县| 贵德县| 吉林省| 四会市| 汶川县|