-
水性工業漆類企業網站織...
-
環保設備研發制造類網站...
-
園林綠化景觀建設類網站...
-
灶具電器設備類網站織夢...
-
環保電動掃地車類網站織...
-
水上樂園設備類網站織夢...
-
農業機械設備類網站織夢...
-
LED顯示屏中英雙外貿類網...
-
潮流資訊信息類網站織夢...
-
辦公學習教程資訊類網站...
-
車輛機油工業潤滑油類網...
-
網站建設營銷類網站織夢...
-
新媒體自媒體運營資訊類...
-
園林景觀設計類網站織夢...
-
APP應用程序官網類網站織...
-
汽車配件類網站織夢模板...
-
道路護欄交通設施類網站...
-
中藥藥材百科資訊類網站...
-
企業公司行業通用類網站...
-
攝影拍攝短視頻類網站織...
織夢搜索結果頁里的分頁是跟欄目列表頁的分頁是2個完全不同樣式的,為了美觀整站統一分頁樣式,我們可以用css大難度的實現,也可以修改PHP文件來實現
打開 /include/arc.searchview.class.php 找到 ,大概在532行左右
$this->dtp->Assign($tagid,$this->GetPageListDM($list_len));
改成
$ctag->GetAtt("listitem")=="" ? $listitem="index,pre,pageno,next,end,option" : $listitem=$ctag->GetAtt("listitem");$this->dtp->Assign($tagid,$this->GetPageListDM($list_len,$listitem));
如圖

繼續找到 ,大概在 812 行左右
function GetPageListDM($list_len)
把整個函數改成
function GetPageListDM($list_len,$listitem="index,end,pre,next,pageno"){global $oldkeyword;$prepage="";$nextpage="";$prepagenum = $this->PageNo - 1;$nextpagenum = $this->PageNo + 1;if($list_len=="" || preg_match("/[^0-9]/", $list_len)){$list_len=3;}$totalpage = ceil($this->TotalResult / $this->PageSize);if($totalpage<=1 && $this->TotalResult>0){return "<li><span class=\"pageinfo\">共 1 頁 / ".$this->TotalResult." 條記錄</span></li>\r\n";}if($this->TotalResult == 0){return "<li><span class=\"pageinfo\">共 0 頁/ ".$this->TotalResult." 條記錄</span></li>\r\n";}$maininfo = "<li><span class=\"pageinfo\">共 <strong>{$totalpage}</strong>頁 <strong>".$this->TotalResult."</strong>條</span></li>\r\n";$purl = $this->GetCurUrl();$oldkeyword = (empty($oldkeyword) ? $this->Keyword : $oldkeyword);//當結果超過限制時,重設結果頁數if($this->TotalResult > $this->SearchMaxRc){$totalpage = ceil($this->SearchMaxRc/$this->PageSize);}$geturl = "keyword=".urlencode($oldkeyword)."&searchtype=".$this->SearchType;$geturl .= "&channeltype=".$this->ChannelType."&orderby=".$this->OrderBy;$geturl .= "&kwtype=".$this->KType."&pagesize=".$this->PageSize;$geturl .= "&typeid=".$this->TypeID."&TotalResult=".$this->TotalResult."&";$purl .= "?".$geturl;//獲得上一頁和下一頁的鏈接if($this->PageNo != 1){$prepage.="<li><a href='".$purl."PageNo=$prepagenum'>上一頁</a></li>\r\n";$indexpage="<li><a href='".$purl."PageNo=1'>首頁</a></li>\r\n";}else{$indexpage="<li><a href='".$purl."PageNo=1'>首頁</a></li>\r\n";}if($this->PageNo!=$totalpage && $totalpage>1){$nextpage.="<li><a href='".$purl."PageNo=$nextpagenum'>下一頁</a></li>\r\n";$endpage="<li><a href='".$purl."PageNo=$totalpage'>末頁</a></li>\r\n";}else{$endpage="<li><a href='".$purl."PageNo=$totalpage'>末頁</a></li>\r\n";}//獲得數字鏈接$listdd="";$total_list = $list_len * 2 + 1;if($this->PageNo >= $total_list){$j = $this->PageNo - $list_len;$total_list = $this->PageNo + $list_len;if($total_list > $totalpage){$total_list = $totalpage;}}else{$j=1;if($total_list > $totalpage){$total_list = $totalpage;}}for($j; $j<=$total_list; $j++){if($j == $this->PageNo){$listdd.= "<li class=\"thisclass\"><a href='".$purl."PageNo=$j'>$j</a></li>\r\n";}else{$listdd.="<li><a href='".$purl."PageNo=$j'>$j</a></li>\r\n";}}$plist = '';if(preg_match('/index/i', $listitem)) $plist .= $indexpage;if(preg_match('/pre/i', $listitem)) $plist .= $prepage;if(preg_match('/pageno/i', $listitem)) $plist .= $listdd;if(preg_match('/next/i', $listitem)) $plist .= $nextpage;if(preg_match('/end/i', $listitem)) $plist .= $endpage;if(preg_match('/option/i', $listitem)) $plist .= $optionlist;if(preg_match('/info/i', $listitem)) $plist .= $maininfo;return $plist;}
搜索結果頁 分頁條標簽寫法(跟欄目列表分頁標簽一樣)
<div class="dede_pages"><ul class="pagelist">{dede:pagelist listitem="index,end,pre,next,pageno,info" listsize="5"/}</ul></div>




