shish 1 year ago
parent
commit
8444edd633
1 changed files with 4 additions and 0 deletions
  1. 4 0
      app-ghs/controllers/LiveOrderController.php

+ 4 - 0
app-ghs/controllers/LiveOrderController.php

@@ -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);
     }