|
@@ -393,8 +393,6 @@ public class CommonController
|
|
|
return AjaxResult.success("成功",dualAuth);
|
|
|
}
|
|
|
|
|
|
-
|
|
|
-
|
|
|
@ApiOperation("decodeTel")
|
|
|
@GetMapping("common/free/decodeTel")
|
|
|
public AjaxResult<String> decodeTel(String key) {
|
|
@@ -462,4 +460,15 @@ public class CommonController
|
|
|
map.put("gzhAppId",gzhAppId);
|
|
|
return AjaxResult.success(map);
|
|
|
}
|
|
|
+
|
|
|
+ @ApiOperation("移动端配置参数")
|
|
|
+ @GetMapping("app/common/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);
|
|
|
+ }
|
|
|
+
|
|
|
+
|
|
|
}
|