找回密码
 立即注册

QQ登录

只需一步,快速开始

查看: 1397|回复: 0

[分享] DEDEcms手机网站添加详情内页上一页/下一页的翻页功能

[复制链接]
发表于 2018-7-28 20:53:36 | 显示全部楼层 |阅读模式 来自 中国–河南–新乡
修改文件include/arc.archives.class.php文件。

1、搜索

  1. function GetPreNext($gtype='')
复制代码


2、将这个函数的所有内容替换为

   
  1. function GetPreNext($gtype='')
  2.     {
  3.         $rs = '';
  4.         if(count($this->PreNext)<2)
  5.         {
  6.             $aid = $this->ArcID;
  7.             $preR =  $this->dsql->GetOne("Select id From `dede_arctiny` where id<$aid And arcrank>-1 And typeid='{$this->Fields['typeid']}' order by id desc");
  8.             $nextR = $this->dsql->GetOne("Select id From `dede_arctiny` where id>$aid And arcrank>-1 And typeid='{$this->Fields['typeid']}' order by id asc");
  9.             $next = (is_array($nextR) ? " where arc.id={$nextR['id']} " : ' where 1>2 ');
  10.             $pre = (is_array($preR) ? " where arc.id={$preR['id']} " : ' where 1>2 ');
  11.             $query = "Select arc.id,arc.title,arc.shorttitle,arc.typeid,arc.ismake,arc.senddate,arc.arcrank,arc.money,arc.filename,arc.litpic,
  12.                         t.typedir,t.typename,t.namerule,t.namerule2,t.ispart,t.moresite,t.siteurl,t.sitepath
  13.                         from `dede_archives` arc left join dede_arctype t on arc.typeid=t.id  ";
  14.             $nextRow = $this->dsql->GetOne($query.$next);
  15.             $preRow = $this->dsql->GetOne($query.$pre);
  16.             
  17.             
  18.             
  19.    
  20.             if(is_array($preRow))
  21.             {
  22.                 $mlink = GetFileUrl($preRow['id'],$preRow['typeid'],$preRow['senddate'],$preRow['title'],$preRow['ismake'],$preRow['arcrank'],
  23.                 $preRow['namerule'],$preRow['typedir'],$preRow['money'],$preRow['filename'],$preRow['moresite'],$preRow['siteurl'],$preRow['sitepath']);
  24.                 $mobile_mlink = "/m/view.php?aid=".$preRow['id'];
  25.                 $this->PreNext['pre'] = "上一篇:<a href='$mlink'>{$preRow['title']}</a> ";
  26.                 $this->PreNext['mobile_pre'] = "上一篇:<a href='$mobile_mlink'>{$preRow['title']}</a> ";
  27.                 $this->PreNext['preimg'] = "<a href='$mlink'><img src="{$preRow['litpic']}" alt="{$preRow['title']}"/></a> ";
  28.             }
  29.             else
  30.             {
  31.                 $this->PreNext['pre'] = "上一篇:没有了 ";
  32.                 $this->PreNext['mobile_pre'] = "上一篇:没有了 ";
  33.                 $this->PreNext['preimg'] ="<img src="/templets/default/images/nophoto.jpg" alt="对不起,没有上一图集了!"/>";
  34.             }
  35.             if(is_array($nextRow))
  36.             {
  37.                 $mlink = GetFileUrl($nextRow['id'],$nextRow['typeid'],$nextRow['senddate'],$nextRow['title'],$nextRow['ismake'],$nextRow['arcrank'],
  38.                 $nextRow['namerule'],$nextRow['typedir'],$nextRow['money'],$nextRow['filename'],$nextRow['moresite'],$nextRow['siteurl'],$nextRow['sitepath']);               
  39.                 $mobile_mlink = "/m/view.php?aid=".$nextRow['id'];
  40.                 $this->PreNext['next'] = "下一篇:<a href='$mlink'>{$nextRow['title']}</a> ";
  41.                 $this->PreNext['mobile_next'] = "下一篇:<a href='$mobile_mlink'>{$nextRow['title']}</a> ";
  42.                 $this->PreNext['nextimg'] = "<a href='$mlink'><img src="{$nextRow['litpic']}" alt="{$nextRow['title']}"/></a> ";
  43.             }
  44.             else
  45.             {
  46.                 $this->PreNext['next'] = "下一篇:没有了 ";
  47.                 $this->PreNext['mobile_next'] = "下一篇:没有了 ";
  48.                 $this->PreNext['nextimg'] ="<a href='javascript:void(0)' alt=""><img src="/templets/default/images/nophoto.jpg" alt="对不起,没有下一图集了!"/></a>";
  49.             }
  50.         }
  51.         if($gtype=='pre')
  52.         {
  53.             $rs =  $this->PreNext['pre'];
  54.         }
  55.         else if($gtype=='preimg'){
  56.             
  57.             $rs =  $this->PreNext['preimg'];
  58.         }        
  59.         else if($gtype=='mobile_pre'){
  60.             
  61.             $rs =  $this->PreNext['mobile_pre'];
  62.         }
  63.         else if($gtype=='next')
  64.         {
  65.             $rs =  $this->PreNext['next'];
  66.         }        
  67.         else if($gtype=='mobile_next')
  68.         {
  69.             $rs =  $this->PreNext['mobile_next'];
  70.         }
  71.         else if($gtype=='nextimg'){
  72.             
  73.             $rs =  $this->PreNext['nextimg'];
  74.         }
  75.         else
  76.         {
  77.             $rs =  $this->PreNext['pre']." &nbsp; ".$this->PreNext['next'];
  78.         }
  79.         return $rs;
  80.     }
复制代码



3、在手机网站详情页模板内,将调用上一页、下一页标签插入。


   
  1. <ul class="am-pagination blog-pagination">

  2.       <li>{dede:prenext get='mobile_pre'/}</li>
  3.       <div style="clear:both;"></div>
  4.       <li>{dede:prenext get='mobile_next'/}</li>

  5.     </ul>
复制代码


大功告成

发帖求助前要善用【论坛搜索】功能,那里可能会有你要找的答案;

如何回报帮助你解决问题的坛友,好办法就是点击帖子下方的评分按钮给对方加【金币】不会扣除自己的积分,做一个热心并受欢迎的人!

您需要登录后才可以回帖 登录 | 立即注册

本版积分规则 需要先绑定手机号

关闭

站长推荐上一条 /1 下一条

QQ|侵权投诉|广告报价|手机版|小黑屋|西部数码代理|飘仙建站论坛 ( 豫ICP备2022021143号-1 )

GMT+8, 2024-11-27 08:27 , Processed in 0.041131 second(s), 8 queries , Redis On.

Powered by Discuz! X3.5

© 2001-2024 Discuz! Team.

快速回复 返回顶部 返回列表