|
|
@@ -13,7 +13,11 @@ class LiveOrderController extends BaseController
|
|
|
//走播单列表 ssh 20241003
|
|
|
public function actionList()
|
|
|
{
|
|
|
+ $get = Yii::$app->request->get();
|
|
|
+ $staffId = $get['staffId'] ?? 0;
|
|
|
+ $where = [];
|
|
|
$where['mainId'] = $this->mainId;
|
|
|
+ $where['staffId'] = $staffId;
|
|
|
$respond = LiveOrderClass::getOrderList($where);
|
|
|
util::success($respond);
|
|
|
}
|