input('horseman_id'); $oid = request()->input('order_id'); $current_page = request()->input('current_page'); $horseman = LanzuEmployees::getName($hid);//骑手名称 $result = ImsCjdcOrderMain::where('id',$oid)->update(['shipping_type'=>1,'horseman_id'=>$hid,'shipping_name'=>$horseman,'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(LanzuEmployees::getHorseman(Auth::getMarket())) ->required(); $this->hidden('order_id'); $this->hidden('current_page'); } }