陈少旭 4 months ago
parent
commit
18eb126c41
1 changed files with 1 additions and 1 deletions
  1. 1 1
      controllers/admin_api_controllers/system_api_controller.go

+ 1 - 1
controllers/admin_api_controllers/system_api_controller.go View File

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