|
@@ -62,6 +62,22 @@ class WeixinController extends WeChatBaseController{ |
|
@@ -62,6 +62,22 @@ class WeixinController extends WeChatBaseController{ |
62
|
|
62
|
|
63
|
}
|
63
|
}
|
64
|
|
64
|
|
|
|
65
|
+ //显示核心医疗团队
|
|
|
66
|
+ public function hexin(){
|
|
|
67
|
+
|
|
|
68
|
+ //查询显示首页logo
|
|
|
69
|
+ $logo = Db::name('slide_item') -> where('slide_id',1) -> find();
|
|
|
70
|
+ $this -> assign('logo',$logo);
|
|
|
71
|
+
|
|
|
72
|
+ $data = Db::name('portal_category_post') -> where('category_id',30) -> find();
|
|
|
73
|
+ $res = Db::name('portal_post') -> where('id',$data['post_id']) -> find();
|
|
|
74
|
+ $res['post_content'] = cmf_replace_content_file_url(htmlspecialchars_decode($res['post_content']));
|
|
|
75
|
+ $this -> assign('res',$res);
|
|
|
76
|
+
|
|
|
77
|
+ return $this -> fetch();
|
|
|
78
|
+
|
|
|
79
|
+ }
|
|
|
80
|
+
|
65
|
|
81
|
|
66
|
|
82
|
|
67
|
|
83
|
|