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

公司介绍

... ... @@ -43,7 +43,7 @@ class AboutController extends HomeBaseController{
$data = Db::name('portal_category_post') -> where('category_id',15) -> find();
$shuju = Db::name('portal_post') -> where('id',$data['post_id']) -> find();
$shuju['post_content'] = cmf_replace_content_file_url(htmlspecialchars_decode($shuju['post_content']));
$this -> assign('data',$shuju);
$this -> assign('shuju',$shuju);
return $this -> fetch();
}
... ...
... ... @@ -10,29 +10,27 @@
</head>
<body class="pro2_box">
<include file="public@nav"/>
<div class="product2_main">
<div class="prp_tit">
<div class="product2_main product2_main22">
<div class="prp_tit prp_tit2">
<a href="">首页</a>
<img src="__TMPL__/public/assets/images/aicon09.png" alt="">
<a href="">公司介绍</a>
</div>
<div class="product2_mainBox">
<div class="pro2_tit">
<h2>{$data.post_title}</h2>
<p>发布时间:{$data.create_time|date="Y-m-d H:i:s",###}</p>
<h2>{$shuju.post_title}</h2>
<p>发布时间:{$shuju.create_time|date="Y-m-d H:i:s",###}</p>
</div>
<div class="pro2_Txt">
{$data.post_content}
{$shuju.post_content}
</div>
</div>
</div>
<include file="public@footer" />
... ...