Commit 9239bb9b authored by hujun's avatar hujun

商铺列表盘方去除删除

parent 92e151c1
......@@ -82,6 +82,7 @@ class GHouses extends BaseModel
->field('a.houses_id,b.id,b.name,b.phone,a.type')
->join('a_agents b', 'a.agents_id=b.id','left')
->where('a.houses_id','IN', implode(',',$house_id))
->where('a.is_del',0)
->select();
foreach ($data as $k=>$v) {
......@@ -140,6 +141,7 @@ class GHouses extends BaseModel
->field('a.houses_id,b.id,b.name,b.phone,a.type')
->join('a_agents b', 'a.agents_id=b.id','left')
->where('a.houses_id','IN', implode(',',$house_id))
->where('a.is_del',0)
->select();
foreach ($data as $k=>$v) {
......
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