主頁 > 知識庫 > thinkphp5+layui實現(xiàn)的分頁樣式示例

thinkphp5+layui實現(xiàn)的分頁樣式示例

熱門標簽:沛縣400電話辦理 聊城電話外呼系統(tǒng)公司 銅川電話機器人價格 AI電話機器人OEM貼牌 青白江地圖標注 德陽中江如何申請400開頭電話 江蘇電商外呼系統(tǒng)運營商 辦理重慶400電話 智能電話機器人好公司門薩維

本文實例講述了thinkphp5+layui實現(xiàn)的分頁樣式。分享給大家供大家參考,具體如下:

tp5之layui分頁樣式

1.分頁類

路徑:\thinkphp\library\think\paginator\driver

Layui.php

?php
namespace think\paginator\driver;
use think\Paginator;
class Layui extends Paginator
{
  /**
   * 上一頁按鈕
   * @param string $text
   * @return string
   */
  protected function getPreviousButton($text = "上一頁")
  {
    if ($this->currentPage() = 1) {
      return $this->getDisabledTextWrapper($text);
    }
    $url = $this->url(
      $this->currentPage() - 1
    );
    return $this->getPageLinkWrapper($url, $text);
  }
  /**
   * 下一頁按鈕
   * @param string $text
   * @return string
   */
  protected function getNextButton($text = '下一頁')
  {
    if (!$this->hasMore) {
      return $this->getDisabledTextWrapper($text);
    }
    $url = $this->url($this->currentPage() + 1);
    return $this->getPageLinkWrapper($url, $text);
  }
  /**
   * 頁碼按鈕
   * @return string
   */
  protected function getLinks()
  {
    if ($this->simple)
      return '';
    $block = [
      'first' => null,
      'slider' => null,
      'last'  => null
    ];
    $side  = 3;
    $window = $side * 2;
    if ($this->lastPage  $window + 6) {
      $block['first'] = $this->getUrlRange(1, $this->lastPage);
    } elseif ($this->currentPage = $window) {
      $block['first'] = $this->getUrlRange(1, $window + 2);
      $block['last'] = $this->getUrlRange($this->lastPage - 1, $this->lastPage);
    } elseif ($this->currentPage > ($this->lastPage - $window)) {
      $block['first'] = $this->getUrlRange(1, 2);
      $block['last'] = $this->getUrlRange($this->lastPage - ($window + 2), $this->lastPage);
    } else {
      $block['first'] = $this->getUrlRange(1, 2);
      $block['slider'] = $this->getUrlRange($this->currentPage - $side, $this->currentPage + $side);
      $block['last']  = $this->getUrlRange($this->lastPage - 1, $this->lastPage);
    }
    $html = '';
    if (is_array($block['first'])) {
      $html .= $this->getUrlLinks($block['first']);
    }
    if (is_array($block['slider'])) {
      $html .= $this->getDots();
      $html .= $this->getUrlLinks($block['slider']);
    }
    if (is_array($block['last'])) {
      $html .= $this->getDots();
      $html .= $this->getUrlLinks($block['last']);
    }
    return $html;
  }
  /**
   * 渲染分頁html
   * @return mixed
   */
  public function render()
  {
    if ($this->hasPages()) {
      if ($this->simple) {
        return sprintf(
          'ul class="pager">%s %s/ul>',
          $this->getPreviousButton(),
          $this->getNextButton()
        );
      } else {
        return sprintf(
          '%s %s %s',
          $this->getPreviousButton(),
          $this->getLinks(),
          $this->getNextButton()
        );
      }
    }
  }
  /**
   * 生成一個可點擊的按鈕
   *
   * @param string $url
   * @param int  $page
   * @return string
   */
  protected function getAvailablePageWrapper($url, $page)
  {
    return 'a href="' . htmlentities($url) . '" rel="external nofollow" >' . $page . '/a>';
  }
  /**
   * 生成一個禁用的按鈕
   *
   * @param string $text
   * @return string
   */
  protected function getDisabledTextWrapper($text)
  {
    return 'a class="layui-laypage-prev" >' . $text . '/a>';
  }
  /**
   * 生成一個激活的按鈕
   *
   * @param string $text
   * @return string
   */
  protected function getActivePageWrapper($text)
  {
    return 'span class="layui-laypage-curr"> em class="layui-laypage-em">/em>em>' . $text . '/em>/span>';
  }
  /**
   * 生成省略號按鈕
   *
   * @return string
   */
  protected function getDots()
  {
    return $this->getDisabledTextWrapper('...');
  }
  /**
   * 批量生成頁碼按鈕.
   *
   * @param array $urls
   * @return string
   */
  protected function getUrlLinks(array $urls)
  {
    $html = '';
    foreach ($urls as $page => $url) {
      $html .= $this->getPageLinkWrapper($url, $page);
    }
    return $html;
  }
  /**
   * 生成普通頁碼按鈕
   *
   * @param string $url
   * @param int  $page
   * @return string
   */
  protected function getPageLinkWrapper($url, $page)
  {
    if ($page == $this->currentPage()) {
      return $this->getActivePageWrapper($page);
    }
    return $this->getAvailablePageWrapper($url, $page);
  }
}

2.配置文件

paginate.php

?php
/**
 * @auther: xxf
 * Date: 2019/9/2
 * Time: 10:24
 */
//分頁配置
return [
  'type' => 'Layui',
  'var_page' => 'page',
];

3.模型查詢

public function getUserShowList($size = 20, $where = null)
{
    $res = $this
      ->field('id,title,list_order,is_top,create_time,create_time time')
      ->where($where)
      ->order(['is_top' => 'desc', 'list_order' => 'desc', 'id' => 'desc'])
      ->paginate($size);
    return $res;
}

4.模板渲染

div class="layui-box layui-laypage layui-laypage-molv">{$list|raw}/div>

效果

更多關(guān)于thinkPHP相關(guān)內(nèi)容感興趣的讀者可查看本站專題:《ThinkPHP入門教程》、《thinkPHP模板操作技巧總結(jié)》、《ThinkPHP常用方法總結(jié)》、《codeigniter入門教程》、《CI(CodeIgniter)框架進階教程》、《Zend FrameWork框架入門教程》及《PHP模板技術(shù)總結(jié)》。

希望本文所述對大家基于ThinkPHP框架的PHP程序設(shè)計有所幫助。

您可能感興趣的文章:
  • ThinkPHP5.1+Ajax實現(xiàn)的無刷新分頁功能示例
  • thinkphp5框架前后端分離項目實現(xiàn)分頁功能的方法分析
  • ThinkPHP5&5.1框架關(guān)聯(lián)模型分頁操作示例
  • thinkPHP5框架分頁樣式類完整示例
  • thinkPHP5框架實現(xiàn)基于ajax的分頁功能示例
  • thinkPHP5分頁功能實現(xiàn)方法分析
  • ThinkPHP5分頁paginate代碼實例解析

標簽:濟寧 赤峰 山南 鷹潭 南寧 迪慶 烏魯木齊 三亞

巨人網(wǎng)絡(luò)通訊聲明:本文標題《thinkphp5+layui實現(xiàn)的分頁樣式示例》,本文關(guān)鍵詞  thinkphp5+layui,實現(xiàn),的,分頁,;如發(fā)現(xiàn)本文內(nèi)容存在版權(quán)問題,煩請?zhí)峁┫嚓P(guān)信息告之我們,我們將及時溝通與處理。本站內(nèi)容系統(tǒng)采集于網(wǎng)絡(luò),涉及言論、版權(quán)與本站無關(guān)。
  • 相關(guān)文章
  • 下面列出與本文章《thinkphp5+layui實現(xiàn)的分頁樣式示例》相關(guān)的同類信息!
  • 本頁收集關(guān)于thinkphp5+layui實現(xiàn)的分頁樣式示例的相關(guān)信息資訊供網(wǎng)民參考!
  • 推薦文章