title = $title; $this->name = $name; $this->option = $option; $this->adminUid = $adminUid; $this->searchTime = $searchTime; parent::__construct($title); } public function render() { // 实例化表单类并传递自定义参数 $table = CsInfo::make(['admin_user_id'=>$this->adminUid,'name'=>$this->name,'option'=>$this->option,'created_at'=>$this->searchTime]); return Modal::make() ->lg() ->title('数据明细') ->body($table) ->button('详情'); } }