getWebConfig()); } /** * 电脑端设置 * @return Response */ public function setWebConfig() { $data = $this->request->params([ [ 'is_show_shop', 0 ], //是否显示甄选好店模块 [ 'shop_ad_image', '' ], //店铺广告图 [ 'site_ids', [] ] //选择展示的店铺id ]); $this->validate($data, 'app\validate\web\WebConfig.set'); (new WebConfigService())->setWebConfig($data); return success('MODIFY_SUCCESS'); } }