Merge pull request '简化预订单详情页面参数获取' (#264) from dev into main

Reviewed-on: #264
This commit is contained in:
mkm 2024-10-13 22:00:45 +08:00
commit b1e671e9ae

View File

@ -131,7 +131,7 @@ class BeforehandOrderController extends BaseAdminController
*/ */
public function detail() public function detail()
{ {
$params = (new BeforehandOrderValidate())->goCheck('detail'); $params = $this->request->get();
$result = BeforehandOrderLogic::detail($params); $result = BeforehandOrderLogic::detail($params);
return $this->data($result); return $this->data($result);
} }