...
|
...
|
@@ -166,16 +166,16 @@ class OrderController extends Controller |
|
|
* @title 新媒体订单
|
|
|
* @description
|
|
|
* @author panhaowen
|
|
|
* @url /portal/order/BusinessOrderIndex
|
|
|
* @url /portal/Order/businessOrderIndex
|
|
|
* @param name:param type:varchar require:1 desc:搜索参数(order_sn,name,user_login1,status)
|
|
|
* @param name:category_id type:int require:1 desc:新媒体类型
|
|
|
* @method POST
|
|
|
*/
|
|
|
public function BusinessOrderIndex()
|
|
|
public function businessOrderIndex()
|
|
|
{
|
|
|
$param=$this->request->param();
|
|
|
$where=[];
|
|
|
$where['c.id']=$param['category_id'];
|
|
|
// $where['c.id']=$param['category_id'];
|
|
|
if (!empty($param['order_sn'])){
|
|
|
$where['bo.order_sn']=['like','%'.$param['order_sn'].'%'];
|
|
|
}
|
...
|
...
|
|