get('horseman_id'); $oid = request()->get('order_id'); $current_page = request()->get('current_page'); $result = ImsCjdcOrderMain::where('id',$oid)->update(['shipping_type'=>1,'horseman_id'=>$hid,'updated_at'=>time()]); if ($result){ return $this->success('操作成功',"order?page={$current_page}"); }else{ return $this->error('操作失败'); } } /** * Build a form here. */ public function form() { $this->select('horseman_id','配送员') ->options(LanzuServiceHorseman::getHorseman()) ->required(); $this->hidden('order_id')->value($this->data['order_id']); $this->hidden('current_page')->value($this->data['current_page']); } /** * The data of the form. * * @return array */ public function default() { } }