溫馨提示×

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

密碼登錄×
登錄注冊(cè)×
其他方式登錄
點(diǎn)擊 登錄注冊(cè) 即表示同意《億速云用戶服務(wù)條款》

小程序如何實(shí)現(xiàn)簡(jiǎn)單分頁(yè)組件

發(fā)布時(shí)間:2022-08-24 15:51:37 來(lái)源:億速云 閱讀:135 作者:iii 欄目:開(kāi)發(fā)技術(shù)

這篇文章主要介紹了小程序如何實(shí)現(xiàn)簡(jiǎn)單分頁(yè)組件的相關(guān)知識(shí),內(nèi)容詳細(xì)易懂,操作簡(jiǎn)單快捷,具有一定借鑒價(jià)值,相信大家閱讀完這篇小程序如何實(shí)現(xiàn)簡(jiǎn)單分頁(yè)組件文章都會(huì)有所收獲,下面我們一起來(lái)看看吧。

wxml:

 <!-- 分頁(yè)組件 -->
    <view class="page_div">
      <view class="page_sum">共{{pagetotal}}頁(yè)</view>
      <view class="page_prev" bindtap="prevFn">上一頁(yè)</view>
      <view class="page_number_div">
        <input value="{{pageNumber}}" bindinput="inputValue" data-name="pageNumber"></input>
        <view class="pageGo" bindtap="pageGo">Go</view>
      </view>
      <view class="page_next" bindtap="nextFn">下一頁(yè)</view>
</view>

wxss:

/************分頁(yè)樣式****************/
.page_div{
  display: flex;
  width: 100%;
  justify-content: flex-end;
  box-sizing: border-box;
  padding:20rpx;
  background-color: #fff;
}
.page_div .page_sum,
.page_div .page_prev,
.page_div .page_number_div,
.page_div .page_next{
  height: 50rpx;
  line-height: 50rpx;
  font-size:24rpx;
  color: #333;
}
.page_div .page_prev,
.page_div .page_next{
  background-color: #eee;
  padding:0 10rpx;
  margin:0 10rpx;
}
.page_div .page_number_div .pageGo{
  display: inline-block;
  vertical-align: middle;
  width: 50rpx;
  box-sizing: border-box;
  background-color: #eee;
  text-align: center;
  margin:0 10rpx;
}
.page_div .page_number_div input{
  width: 100rpx;
  display: inline-block;
  vertical-align: middle;
  text-align: center;
  border:1px solid #eee;
}
/************分頁(yè)樣式結(jié)束************/

js:

Page({
  data: {
    //分頁(yè)數(shù)據(jù)
    pageNumber:1,
    pagetotal:5,
    page:1
  },
  onLoad: function (options) {
   
  },
  //input輸入雙向綁定數(shù)據(jù)
  inputValue:function(e){
    let name = e.currentTarget.dataset.name;
    let mapName ={};
    mapName[name]=e.detail && e.detail.value;
    // console.log(mapName);
    this.setData(mapName);
  },
  //上一頁(yè)
  prevFn:function(){
    if(this.data.pageNumber <=1){
      wx.showToast({
        icon:'none',
        title: '已經(jīng)是最前一頁(yè)',
      })
      return;
    }
    
    wx.showLoading({
      title: '加載中...',
    })
    this.setData({
      pageNumber:Number(this.data.pageNumber)-1
    })
    console.log(this.data.pageNumber);
    setTimeout(function(){
      wx.hideLoading()
    },1000)
  },
  //下一頁(yè)
  nextFn:function(){
    if(this.data.pageNumber === this.data.pagetotal){
      wx.showToast({
        icon:'none',
        title: '已經(jīng)是最后一頁(yè)',
      })
      return;
    }
    wx.showLoading({
      title: '加載中...',
    })
    this.setData({
      pageNumber:Number(this.data.pageNumber)+1
    })
    console.log(this.data.pageNumber);
    setTimeout(function(){
      wx.hideLoading()
    },1000)
  },
  //去到某一頁(yè)
  pageGo:function(){
    console.log(Number(this.data.pageNumber));
    if(Number(this.data.pageNumber) > this.data.pagetotal){
      this.setData({
        pageNumber:this.data.pagetotal
      })
    }else if(Number(this.data.pageNumber) <= 0){
      this.setData({
        pageNumber:1
      })
    }
    console.log(Number(this.data.pageNumber));
    wx.showLoading({
      title: '加載中...',
    })
    setTimeout(function(){
      wx.hideLoading()
    },1000)
  }
})

效果圖:

小程序如何實(shí)現(xiàn)簡(jiǎn)單分頁(yè)組件

關(guān)于“小程序如何實(shí)現(xiàn)簡(jiǎn)單分頁(yè)組件”這篇文章的內(nèi)容就介紹到這里,感謝各位的閱讀!相信大家對(duì)“小程序如何實(shí)現(xiàn)簡(jiǎn)單分頁(yè)組件”知識(shí)都有一定的了解,大家如果還想學(xué)習(xí)更多知識(shí),歡迎關(guān)注億速云行業(yè)資訊頻道。

向AI問(wèn)一下細(xì)節(jié)

免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點(diǎn)不代表本網(wǎng)站立場(chǎng),如果涉及侵權(quán)請(qǐng)聯(lián)系站長(zhǎng)郵箱:is@yisu.com進(jìn)行舉報(bào),并提供相關(guān)證據(jù),一經(jīng)查實(shí),將立刻刪除涉嫌侵權(quán)內(nèi)容。

AI