payload(['id' => $this->getKey()]); // 实例化表单类 return Modal::make() ->lg() ->title($this->title) ->body($form) // 因为此处使用了表单异步加载功能,所以一定要用 onLoad 方法 ->button($this->title()); } public function confirm() { return [ "Are you sure you want to import?", $this->row->title, ]; } /** * 设置要POST到接口的数据 * * @return array */ public function parameters() { return [ // 发送当前行 username 字段数据到接口 'title' => $this->row->title, 'folder' => $this->row->folder ]; } }