order_id = $orderId; parent::__construct($title); } public function render() { // 实例化表单类并传递自定义参数 $form = SelectHorseman::make(['order_id'=>$this->order_id]); return Modal::make() ->lg() ->title($this->title) ->body($form) ->button($this->title); } }