getKey(); $modal = Modal::make() ->xl() ->title($this->title) ->body(CouponTimeForm::make()->setKey($id)->payload([ 'id'=>$this->row->id, 'inventory'=>$this->row->inventory, 'title'=>$this->row->title, 'start_time'=>$this->row->start_time, 'end_time'=>$this->row->end_time, 'usable_start_time'=>$this->row->usable_start_time, 'usable_end_time'=>$this->row->usable_end_time, ])) ->button($this->title); return $modal; } // 确认弹窗信息 public function confirm() { return '您确定要修改时间吗?'; } public function parameters() { return [ ]; } }