|
|
@@ -105,7 +105,8 @@ class IndexController extends BaseController
|
|
|
* @return array
|
|
|
*/
|
|
|
public function params(){
|
|
|
- $config = ConfigService::make()->getConfigByGroup(16);
|
|
|
+ $groupId = request()->get('group_id', 16);
|
|
|
+ $config = ConfigService::make()->getConfigByGroup($groupId);
|
|
|
return message(1005,true, $config);
|
|
|
}
|
|
|
|