-
大理石瓷磚生產(chǎn)類網(wǎng)站織...
-
旅游公司類網(wǎng)站織夢(mèng)模板...
-
創(chuàng)業(yè)資訊博客教程類網(wǎng)站...
-
財(cái)富管理培訓(xùn)咨詢類網(wǎng)站...
-
網(wǎng)站優(yōu)化快速排名類科技...
-
家禽飼養(yǎng)基地類網(wǎng)站織夢(mèng)...
-
金屬工藝品加工廠家類網(wǎng)...
-
中英雙語(yǔ)建材瓷磚裝飾類...
-
商用貨架展架類網(wǎng)站織夢(mèng)...
-
花卉養(yǎng)殖資訊類網(wǎng)站織夢(mèng)...
-
電子產(chǎn)品營(yíng)銷類網(wǎng)站織夢(mèng)...
-
戀愛(ài)情感資訊類網(wǎng)站織夢(mèng)...
-
重工業(yè)機(jī)械鋼鐵類網(wǎng)站織...
-
蔬菜水果批發(fā)類網(wǎng)站織夢(mèng)...
-
玻璃制品廠家類網(wǎng)站織夢(mèng)...
-
壓濾機(jī)過(guò)濾設(shè)備類網(wǎng)站織...
-
汽車音箱喇叭低音炮類網(wǎng)...
-
齒輪設(shè)備類網(wǎng)站織夢(mèng)模板...
-
室內(nèi)設(shè)計(jì)裝修工程類網(wǎng)站...
-
汽車銷售縱覽類網(wǎng)站織夢(mèng)...
織夢(mèng)搜索結(jié)果頁(yè)里的分頁(yè)是跟欄目列表頁(yè)的分頁(yè)是2個(gè)完全不同樣式的,為了美觀整站統(tǒng)一分頁(yè)樣式,我們可以用css大難度的實(shí)現(xiàn),也可以修改PHP文件來(lái)實(shí)現(xiàn)
打開(kāi) /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));
如圖

繼續(xù)找到 ,大概在 812 行左右
function GetPageListDM($list_len)
把整個(gè)函數(shù)改成
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 頁(yè) / ".$this->TotalResult." 條記錄</span></li>\r\n";}if($this->TotalResult == 0){return "<li><span class=\"pageinfo\">共 0 頁(yè)/ ".$this->TotalResult." 條記錄</span></li>\r\n";}$maininfo = "<li><span class=\"pageinfo\">共 <strong>{$totalpage}</strong>頁(yè) <strong>".$this->TotalResult."</strong>條</span></li>\r\n";$purl = $this->GetCurUrl();$oldkeyword = (empty($oldkeyword) ? $this->Keyword : $oldkeyword);//當(dāng)結(jié)果超過(guò)限制時(shí),重設(shè)結(jié)果頁(yè)數(shù)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;//獲得上一頁(yè)和下一頁(yè)的鏈接if($this->PageNo != 1){$prepage.="<li><a href='".$purl."PageNo=$prepagenum'>上一頁(yè)</a></li>\r\n";$indexpage="<li><a href='".$purl."PageNo=1'>首頁(yè)</a></li>\r\n";}else{$indexpage="<li><a href='".$purl."PageNo=1'>首頁(yè)</a></li>\r\n";}if($this->PageNo!=$totalpage && $totalpage>1){$nextpage.="<li><a href='".$purl."PageNo=$nextpagenum'>下一頁(yè)</a></li>\r\n";$endpage="<li><a href='".$purl."PageNo=$totalpage'>末頁(yè)</a></li>\r\n";}else{$endpage="<li><a href='".$purl."PageNo=$totalpage'>末頁(yè)</a></li>\r\n";}//獲得數(shù)字鏈接$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;}
搜索結(jié)果頁(yè) 分頁(yè)條標(biāo)簽寫法(跟欄目列表分頁(yè)標(biāo)簽一樣)
<div class="dede_pages"><ul class="pagelist">{dede:pagelist listitem="index,end,pre,next,pageno,info" listsize="5"/}</ul></div>


