request->isAjax()) { $get = $this->request->get(); $lists = CollectionLogic::stafflists($get); $this->_success('',$lists); } $this->assign('usertype',StaffLogic::staff_beed()); $this->assign('type',StaffLogic::type()); return $this->fetch(); } public function distance(){ $post = $this->request->post(); $staff=Db::name('staff')->where('id',$post['id'])->update(['distance'=>$post['number']]); $this->_success('增加距离成功'); } public function transit(){ $post = $this->request->post(); $staff=Db::name('staff')->where('id',$post['id'])->update(['transit'=>$post['transit']]); $this->_success('增加员工出行工具成功'); } }