setConfig($data, '体验开店设置', 1, [ [ 'site_id', '=', 0 ], [ 'app_module', '=', 'admin' ], [ 'config_key', '=', 'OPEN_SITE_CONFIG' ] ]); return $this->success($res); } /** * 获取开店试用设置 * @return array */ public function getOpenSiteConfig() { $config = new Config(); $res = $config->getConfig([ [ 'site_id', '=', 0 ], [ 'app_module', '=', 'admin' ], [ 'config_key', '=', 'OPEN_SITE_CONFIG' ] ]); if (empty($res['data']['value'])) { $res['data']['value'] = [ 'status' => 0, 'day' => 0, 'group_id' => 0, 'site_num' => 10, 'sms_num' => 30 ]; } return $res; } }