Commit 6d9588eb authored by clone's avatar clone

Merge branch '0813-v3.3.7' of https://gitee.com/zwyjjc/tl_estate into 0813-v3.3.7

parents 8f24ba4d bbd1bea4
......@@ -138,7 +138,6 @@ class Houses extends Basic
$pageNo = empty($this->params['pageNo']) ? 1 : $this->params['pageNo'];
$pageSize = empty($this->params['pageSize']) ? 15 : $this->params['pageSize'];
$agent_where = $list = [];
$where['status'] = [ '<>', 3 ];
/*精选商铺--0是1否*/
if ($this->params['is_carefully_chosen'] != -1) {
......@@ -284,6 +283,8 @@ class Houses extends Basic
/*楼盘编号*/
if ($this->params['id'] != NULL) {
$where['id'] = $this->params['id'];
} else {
$where['status'] = [ '<>', 3 ];
}
//盘方ID
if ($this->params['dish_id'] != NULL) {
......
......@@ -100,7 +100,7 @@ class Transfer extends Basic
$image = $m_img->getSubletImg('file_name', ['sublet_id'=>$v['id'], 'status'=>0]);
if ($image) {
foreach($image as $kk=>$vv) {
$list[$k]['image'][$kk] = 'static/chat_image/'.$vv['file_name'];
$list[$k]['image'][$kk] = 'resource/lib/Attachments/images/'.$vv['file_name'];
}
} else {
$list[$k]['image'] = [];
......
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