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

产品

@@ -192,6 +192,21 @@ class ProductController extends HomeBaseController{ @@ -192,6 +192,21 @@ class ProductController extends HomeBaseController{
192 } 192 }
193 193
194 194
  195 + //显示产品中心
  196 + public function chanpins(){
  197 +
  198 + $data = Db::name('portal_category_post') -> where('category_id',15) -> find();
  199 + $shuju = Db::name('portal_post') -> where('id',$data['post_id']) -> find();
  200 + $shuju['post_content'] = cmf_replace_content_file_url(htmlspecialchars_decode($shuju['post_content']));
  201 + return json_encode($shuju);
  202 +
  203 +
  204 + }
  205 +
  206 +
  207 +
  208 +
  209 +
195 } 210 }
196 211
197 212
@@ -74,7 +74,7 @@ @@ -74,7 +74,7 @@
74 <div class="product_mainBox"> 74 <div class="product_mainBox">
75 75
76 <div class="pro_left"> 76 <div class="pro_left">
77 - <h1 class="proTitle">产品中心</h1> 77 + <h1 class="proTitle" onclick="chanpin()">产品中心</h1>
78 78
79 79
80 80
@@ -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()">
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>
@@ -162,6 +162,21 @@ @@ -162,6 +162,21 @@
162 $('.ce'+{$category}).children('h3').css({color:"red"}); 162 $('.ce'+{$category}).children('h3').css({color:"red"});
163 }) 163 })
164 164
  165 + //点击产品中心
  166 + function chanpin(id){
  167 +
  168 + $('.ce1_title').children('h2').css({color:""});
  169 + $('.ce1_2_Li_title').children('h3').css({color:""});
  170 +
  171 + $.post("{:url('Product/chanpins')}", {:}, function(data) {
  172 + shuju = JSON.parse(data);
  173 + $('.biaoti').text(shuju.post_title);
  174 + $('.zhaiyao').text(shuju.post_excerpt);
  175 + $('.pro_right_txt').html(shuju.post_content);
  176 + });
  177 +
  178 + }
  179 +
165 180
166 181
167 //点击查询单个文章 182 //点击查询单个文章
@@ -262,7 +262,6 @@ p{word-wrap:break-word} @@ -262,7 +262,6 @@ p{word-wrap:break-word}
262 color:white; 262 color:white;
263 263
264 } 264 }
265 -  
266 .footer_input input:-ms-input-placeholder,.footer_left textarea:-ms-input-placeholder{ /* Internet Explorer 10+ */ 265 .footer_input input:-ms-input-placeholder,.footer_left textarea:-ms-input-placeholder{ /* Internet Explorer 10+ */
267 font-size:14px; 266 font-size:14px;
268 border:0; 267 border:0;