作者 anyv
1 个管道 的构建 通过 耗费 0 秒

产品

@@ -204,6 +204,19 @@ class ProductController extends HomeBaseController{ @@ -204,6 +204,19 @@ class ProductController extends HomeBaseController{
204 } 204 }
205 205
206 206
  207 + public function erji(){
  208 +
  209 +
  210 + $id = input('post.id');
  211 + $data = Db::name('portal_category_post') -> where('category_id',$id) -> find();
  212 + $shuju = Db::name('portal_post') -> where('id',$data['post_id']) -> find();
  213 + $shuju['post_content'] = cmf_replace_content_file_url(htmlspecialchars_decode($shuju['post_content']));
  214 + return json_encode($shuju);
  215 +
  216 +
  217 + }
  218 +
  219 +
207 220
208 221
209 222
@@ -84,7 +84,7 @@ @@ -84,7 +84,7 @@
84 84
85 <volist name="jdata" id="vo"> 85 <volist name="jdata" id="vo">
86 <div class="ce1"> 86 <div class="ce1">
87 - <div class="ce1_title ce1{$vo.id}" > 87 + <div class="ce1_title ce1{$vo.id}" onclick="title($vo.id)" >
88 <img src="__TMPL__/public/assets/images/aicon09.png" alt=""> 88 <img src="__TMPL__/public/assets/images/aicon09.png" alt="">
89 <h2>{$vo.name}</h2> 89 <h2>{$vo.name}</h2>
90 </div> 90 </div>
@@ -177,6 +177,21 @@ @@ -177,6 +177,21 @@
177 177
178 } 178 }
179 179
  180 + //点击二级分类
  181 + function title(id){
  182 +
  183 + $('.ce1_title').children('h2').css({color:""});
  184 + $('.ce1_2_Li_title').children('h3').css({color:""});
  185 + $('.ce1'+id).children('h2').css({color:"red"});
  186 + $.post("{:url('Product/erji')}",{id:id},function(data){
  187 + shuju = JSON.parse(data);
  188 + $('.biaoti').text(shuju.post_title);
  189 + $('.zhaiyao').text(shuju.post_excerpt);
  190 + $('.pro_right_txt').html(shuju.post_content);
  191 + });
  192 +
  193 + }
  194 +
180 195
181 196
182 //点击查询单个文章 197 //点击查询单个文章