...
|
...
|
@@ -173,7 +173,6 @@ class OrderController extends Controller |
|
|
*/
|
|
|
public function BusinessOrderIndex()
|
|
|
{
|
|
|
return "";
|
|
|
$param=$this->request->param();
|
|
|
$where['c.id']=$param['category_id'];
|
|
|
if (!empty($param['order_sn'])){
|
...
|
...
|
@@ -188,6 +187,7 @@ class OrderController extends Controller |
|
|
if (!empty($param['status'])){
|
|
|
$where['bo.status']=$param['status'];
|
|
|
}
|
|
|
$this->success('获取信息成功',"");
|
|
|
$data=Db::name('business_order')
|
|
|
->alias('bo')
|
|
|
->join('user u1','bo.user_id=u1.id')
|
...
|
...
|
|