success('请求成功'); } public function getConfiguration() { $name = $this->request->post('name'); $website = $this->request->post('website'); $where['name']=$name; $where['website']=$website; $where['status']='normal'; $list = Db::name('functional')->where($where)->find(); unset($where); $where['fid']=$list['id']; $where['status']='normal'; $list['details']=Db::name('functional_del')->where($where)->select(); $this->success('请求成功',$list); } }