|
@@ -41,7 +41,7 @@ public class InfoAddressController extends BaseController {
|
|
|
@GetMapping("/getGoogleMapKey")
|
|
@GetMapping("/getGoogleMapKey")
|
|
|
public AjaxResult getGoogleMapKey() {
|
|
public AjaxResult getGoogleMapKey() {
|
|
|
List<SysDictData> data = DictUtils.getDictCache("sys_googlemap_key");
|
|
List<SysDictData> data = DictUtils.getDictCache("sys_googlemap_key");
|
|
|
- return data != null && !data.isEmpty() ? success(data.get(0).getDictValue())
|
|
|
|
|
|
|
+ return data != null && !data.isEmpty() ? success("",data.get(0).getDictValue())
|
|
|
: error(MessageUtils.message("no.map.exception"));
|
|
: error(MessageUtils.message("no.map.exception"));
|
|
|
}
|
|
}
|
|
|
|
|
|