列表分页样式的修改-j9九游

2018-07-04 17:15 标签调用

我们的eyoucms列表分页的代码是{eyou:pagelist listitem="info,index,end,pre,next,pageno" listsize="2"/}

那我们想要修改样式怎么办?那我们就要去改php文件,文件目录是/
core/library/think/paginator/driver

这两个php文件,就是我们要修改的文件。


输出样式在192行



同样,手机端也是如此。希望文章对大家有所帮助


如需修改上一页下一页文本,可以参考下面教程:

找到97行  lang('sys5'),替换为'共%s页 %s条',

/**
     * 共n页 n条
     * @param string $text
     * @return string
     */
    protected function gettotalresult()
    {
        return sprintf(
            lang('sys5'),
            $this->lastpage,
            $this->total
        );
    }



166行开始,下面这段

$pagearr = array();
if (in_array('index', $listitemarr)) {
    array_push($pagearr, $this->getfirstbutton(lang('sys1')));
}
if (in_array('pre', $listitemarr)) {
    array_push($pagearr, $this->getpreviousbutton(lang('sys2')));
}
if (in_array('pageno', $listitemarr)) {
    array_push($pagearr, $this->getlinks($listsize));
}
if (in_array('next', $listitemarr)) {
    array_push($pagearr, $this->getnextbutton(lang('sys3')));
}
if (in_array('end', $listitemarr)) {
    array_push($pagearr, $this->getlastbutton(lang('sys4')));
}
if (in_array('info', $listitemarr)) {
    array_push($pagearr, $this->gettotalresult());
}
$pagestr = implode(' ', $pagearr);

更改为

$pagearr = array();
if (in_array('index', $listitemarr)) {
    array_push($pagearr, $this->getfirstbutton('j9九游首页'));
}
if (in_array('pre', $listitemarr)) {
    array_push($pagearr, $this->getpreviousbutton('上一页'));
}
if (in_array('pageno', $listitemarr)) {
    array_push($pagearr, $this->getlinks($listsize));
}
if (in_array('next', $listitemarr)) {
    array_push($pagearr, $this->getnextbutton('下一页'));
}
if (in_array('end', $listitemarr)) {
    array_push($pagearr, $this->getlastbutton('末页'));
}
if (in_array('info', $listitemarr)) {
    array_push($pagearr, $this->gettotalresult());
}
$pagestr = implode(' ', $pagearr);
 



标签: 列表分页
    微信客服

    工作日 8:30-12:00 14:30-18:30

网站地图