主题 : 分页地址BUG修复之后,第二页提示页面不存在
级别: 童生
UID: 80886
积分:47 加为好友
威望: 0 精华: 0
主题:4 回复:18
注册时间:2015-10-10
在线时长:0
1#   发表于:2017-03-28 15:21:12  IP:221.178.*.*
分页地址BUG修复之后,第二页提示页面不存在,指向了 404.html

页面找不到

对不起,您访问的页面不存在。
级别: 版主
UID: 70293
积分:78391 加为好友
威望: 1 精华: 0
主题:7 回复:68397
注册时间:2014-12-03
在线时长:0
2#   发表于:2017-03-28 15:23:03  IP:106.167.*.*
你生成了静态页吗
1
级别: 童生
UID: 80886
积分:47 加为好友
威望: 0 精华: 0
主题:4 回复:18
注册时间:2015-10-10
在线时长:0
3#   发表于:2017-03-28 15:27:35  IP:221.178.*.*
回复第2楼

重新生成了的,页面静态化里面四个都生成了一遍。还是那样。
级别: 版主
UID: 70293
积分:78391 加为好友
威望: 1 精华: 0
主题:7 回复:68397
注册时间:2014-12-03
在线时长:0
4#   发表于:2017-03-28 15:28:21  IP:106.167.*.*
分页标签怎么写的
1
级别: 童生
UID: 80886
积分:47 加为好友
威望: 0 精华: 0
主题:4 回复:18
注册时间:2015-10-10
在线时长:0
5#   发表于:2017-03-28 15:34:46  IP:221.178.*.*
回复第4楼

分页标签用的修复那个帖子里的,请看附件

page.rar
级别: 版主
UID: 70293
积分:78391 加为好友
威望: 1 精华: 0
主题:7 回复:68397
注册时间:2014-12-03
在线时长:0
6#   发表于:2017-03-28 15:36:32  IP:106.167.*.*
我说栏目模板上的content_page标签
1
级别: 童生
UID: 80886
积分:47 加为好友
威望: 0 精华: 0
主题:4 回复:18
注册时间:2015-10-10
在线时长:0
7#   发表于:2017-03-28 15:38:51  IP:221.178.*.*
回复第6楼


<div class="main container clearfix">  
  <section class="tssj">
<p>当前位置:${channel.title!channel.name}</p>
    <!--<div class="tssjNav"></div>-->
[@cms_content_page count='6' orderBy='4' titLen='18' channelId=channel.id channelOption='1' dateFormat='yyyy-MM-dd HH:mm:ss'] 
    <div class="tssjList clearfix"> 
     [#list tag_pagination.list as a]
      <div class="tssjItem" style="margin-left:0;width:150px;height:240px;">
        <div class="biankuang biankuang_1"></div>
<div class="biankuang biankuang_2"></div>
<div class="biankuang biankuang_3"></div>
<div class="biankuang biankuang_4"></div>
        <a class="tssjImg" style="width:150px;height:200px;" href="${a.url}"><img src="${a.typeImg!site.defImg}"></a>
        <h1><a href="${a.url}" style="font-size:15px;display:block;width:150px;text-overflow: ellipsis;overflow: hidden;white-space: nowrap;">[@text_cut s=a.title len=titLen append='...'/]</a></h1>
        <p style="margin-top:6px;">${a.date?string(dateFormat)}</p>        
      </div>
      [/#list]
      <script type="text/javascript">
//边框效果--移入
function biankuang(obj){
$(obj).find('.biankuang_1').stop(true).animate({
height:'310px'
},300)
$(obj).find('.biankuang_2').stop(true).delay(300).animate({
width:'370px'
},300)
$(obj).find('.biankuang_3').stop(true).animate({
height:'310px'
},300)
$(obj).find('.biankuang_4').stop(true).delay(300).animate({
width:'370px'
},300)
}
//边框效果--移出
function biankuang1(obj){

$(obj).find('.biankuang_1').stop(true).delay(100).animate({
height:'0px'
},100)
$(obj).find('.biankuang_2').stop(true).animate({
width:'0px'
},100)
$(obj).find('.biankuang_3').stop(true).delay(100).animate({
height:'0px'
},100)
$(obj).find('.biankuang_4').stop(true).animate({
width:'0px'
},100)
}
//触发
$('.tssjItem').hover(
function () {
  var obj = $(this);
biankuang(obj);
},
function () {
  var obj = $(this);
biankuang1(obj);
}
);
</script>
    </div>
    [#include "../include/page.html"/]
    [/@cms_content_page]
  </section> 
</div>
级别: 版主
UID: 70293
积分:78391 加为好友
威望: 1 精华: 0
主题:7 回复:68397
注册时间:2014-12-03
在线时长:0
8#   发表于:2017-03-28 15:40:01  IP:106.167.*.*
栏目里设置了多少
1
级别: 童生
UID: 80886
积分:47 加为好友
威望: 0 精华: 0
主题:4 回复:18
注册时间:2015-10-10
在线时长:0
9#   发表于:2017-03-28 15:45:12  IP:221.178.*.*
回复第8楼

和这里设置的页码不对应。已修改~
级别: 总版主
UID: 10736
积分:149787 加为好友
威望: 212 精华: 42
主题:297 回复:127674
注册时间:2010-09-08
在线时长:90.1
10#   发表于:2017-03-28 15:45:43  IP:106.167.*.*
路漫漫其修远兮,吾将上下而求索!
1 共1页