|
|
@@ -257,4 +257,13 @@ public class CommonController extends BaseController {
|
|
|
}
|
|
|
}
|
|
|
|
|
|
+ @ApiOperation("移动端配置参数")
|
|
|
+ @GetMapping("/mobileConfig")
|
|
|
+ public AjaxResult<Map<String,Object>> mobileConfig(ConfigQueryBo bo) {
|
|
|
+ Map<String,Object> map = new HashMap<>();
|
|
|
+ String json = configService.selectConfigByKey("home.mobile");
|
|
|
+ map.put("mobileConfig",json);
|
|
|
+ return AjaxResult.success(map);
|
|
|
+ }
|
|
|
+
|
|
|
}
|