Commit b8a07ea2 authored by zhuwei's avatar zhuwei

1

parent c498913f
...@@ -1027,7 +1027,7 @@ class HouseService ...@@ -1027,7 +1027,7 @@ class HouseService
{ {
$m_video = new GHousesVideo(); $m_video = new GHousesVideo();
$field = 'id,video_name'; $field = 'id,video_name,upload_id';
$params['house_id'] = $house_id; $params['house_id'] = $house_id;
$params['is_del'] = 0; $params['is_del'] = 0;
$params['check_id'] = ['>', 0]; $params['check_id'] = ['>', 0];
...@@ -1043,7 +1043,8 @@ class HouseService ...@@ -1043,7 +1043,8 @@ class HouseService
} }
foreach ($result as $k=>$v) { foreach ($result as $k=>$v) {
$result_[$k]['id'] = $v['id']; $result_[$k]['id'] = $v['id'];
$result_[$k]['video_creenshot'] = $internet_path.$v['video_name']; $result_[$k]['upload_id'] = $v['upload_id'];
$result_[$k]['video_image'] = $internet_path.$v['video_image'];
$result_[$k]['video_path'] = $internet_path.$v['video_name']; $result_[$k]['video_path'] = $internet_path.$v['video_name'];
} }
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment