陈少旭 4 달 전
부모
커밋
18eb126c41
1개의 변경된 파일1개의 추가작업 그리고 1개의 파일을 삭제
  1. 1 1
      controllers/admin_api_controllers/system_api_controller.go

+ 1 - 1
controllers/admin_api_controllers/system_api_controller.go 파일 보기

@@ -37,7 +37,7 @@ func (this *SystemApiController) GetUserList() {
37 37
 func (this *SystemApiController) CreateAdminUser() {
38 38
 	name := this.GetString("name")
39 39
 	mobile := this.GetString("mobile")
40
-	password := this.GetString("password")
40
+	password := this.GetString("user_password")
41 41
 	role_type, _ := this.GetInt64("type")
42 42
 	remark := this.GetString("remark")
43 43