request->params([ ['keywords', ''], ['status', ''], ['app', ''], ]); return success((new AuthSiteService())->getSitePage($data)); } /** * 站点详情 * @param int $id * @return Response */ public function info(int $id) { return success((new AuthSiteService())->getSiteInfo($id)); } /** * 站点更新 */ public function edit($id) { $data = $this->request->params([ ['site_name', ''], ['logo', ''], ['keywords', ''], ['desc', ''], //地址 // ['latitude', ''], // ['longitude', ''], // ['province_id', 0], // ['city_id', 0], // ['district_id', 0], // ['address', ''], // ['full_address', ''], // ['phone', ''], // // ['business_hours', ''], // ['front_end_name', ''], // ['front_end_logo', ''], // ['icon', ''] ]); $this->validate($data, 'app\validate\site\Site.edit'); (new AuthSiteService())->editSite($id, $data); return success('MODIFY_SUCCESS'); } }