...
|
...
|
@@ -282,7 +282,10 @@ class HouseBoard extends Api |
|
|
if(empty($house_id)){
|
|
|
$this->error('缺少必要参数');
|
|
|
}
|
|
|
$data = Db::name('house_phone')->field('id,name,phone')->where('house_id',$house_id)->order('weigh','DESC')->select();
|
|
|
$data = Db::name('house_phone')->field('id,name,phone,weigh')->where('house_id',$house_id)
|
|
|
->order('weigh','ASC')
|
|
|
->order('createtime','DESC')
|
|
|
->select();
|
|
|
$this->success('success',$data);
|
|
|
}
|
|
|
|
...
|
...
|
|