Browse Source

feat: [用户管理] 对接域控,对接模块的nacos密码改成其他一致

master
memorylkf 3 weeks ago
parent
commit
0f5178809e
2 changed files with 2 additions and 2 deletions
  1. +1
    -1
      hxhq-modules/hxhq-integration/src/main/resources/bootstrap.yml
  2. +1
    -1
      hxhq-modules/hxhq-system/src/main/java/com/hxhq/system/controller/SysUserController.java

+ 1
- 1
hxhq-modules/hxhq-integration/src/main/resources/bootstrap.yml View File

@ -15,7 +15,7 @@ spring:
cloud: cloud:
nacos: nacos:
username: nacos username: nacos
password: nacos
password: nacosHxhq
discovery: discovery:
# 服务注册地址 # 服务注册地址
server-addr: 127.0.0.1:8848 server-addr: 127.0.0.1:8848

+ 1
- 1
hxhq-modules/hxhq-system/src/main/java/com/hxhq/system/controller/SysUserController.java View File

@ -297,7 +297,7 @@ public class SysUserController extends BaseController
} }
@GetMapping("/checkExist") @GetMapping("/checkExist")
public AjaxResult checkExist(@PathVariable("username") String username){
public AjaxResult checkExist(String username){
AjaxResult exists = remoteIntegrationService.checkAccountExists(username); AjaxResult exists = remoteIntegrationService.checkAccountExists(username);
return exists; return exists;
} }

Loading…
Cancel
Save