正在显示
2 个修改的文件
包含
8 行增加
和
3 行删除
@@ -193,8 +193,12 @@ class IndexController extends HomeBaseController | @@ -193,8 +193,12 @@ class IndexController extends HomeBaseController | ||
193 | ->where('id',$id) | 193 | ->where('id',$id) |
194 | ->field('id,more') | 194 | ->field('id,more') |
195 | ->find(); | 195 | ->find(); |
196 | - $video = json_decode($res['more'],true); | ||
197 | - $video_url = $video['video']; | 196 | + if($res['more']){ |
197 | + $video = json_decode($res['more'],true); | ||
198 | + $video_url = $video['video']; | ||
199 | + }else{ | ||
200 | + $video_url = ''; | ||
201 | + } | ||
198 | return $video_url; | 202 | return $video_url; |
199 | } | 203 | } |
200 | 204 |
@@ -110,7 +110,8 @@ | @@ -110,7 +110,8 @@ | ||
110 | </div> | 110 | </div> |
111 | <!--id--> | 111 | <!--id--> |
112 | <input type="hidden" value="{$vo.id}" class="li_id"> | 112 | <input type="hidden" value="{$vo.id}" class="li_id"> |
113 | - <input type="hidden" value="{:cmf_get_file_download_url($vo.video)}" class="li_video"> | 113 | + <!--<input type="hidden" value="{:cmf_get_file_download_url($vo.video)}" class="li_video">--> |
114 | + <input type="hidden" value="/portal/index/getVideoById?id={$vo.id}" class="li_video"> | ||
114 | <!--标题--> | 115 | <!--标题--> |
115 | <input type="hidden" value="{$vo.post_title}" class="li_post_title"> | 116 | <input type="hidden" value="{$vo.post_title}" class="li_post_title"> |
116 | <!--国家--> | 117 | <!--国家--> |
-
请 注册 或 登录 后发表评论