order_id = $orderId; parent::__construct($title); } public function render() { // 实例化表单类并传递自定义参数 $detail = MyDetailPage::make(['order_id'=>$this->order_id]); return Modal::make() ->xl() ->title('订单详情') ->body($detail) ->delay(300) ->button($this->title); } }