Bladeren bron

体积小

XMLWAN 3 jaren geleden
bovenliggende
commit
0bccde3016
2 gewijzigde bestanden met toevoegingen van 12 en 12 verwijderingen
  1. 3 3
      controllers/xcx_mobile_api_controller.go/xcx_api_controller.go
  2. 9 9
      service/xcx_mobile_api_service.go

+ 3 - 3
controllers/xcx_mobile_api_controller.go/xcx_api_controller.go Bestand weergeven

@@ -122,9 +122,9 @@ func (this *XcxApiController) GetCodeInfo() {
122 122
 
123 123
 func (this *XcxApiController) GetLoginInfor() {
124 124
 	fmt.Println("c出啊大发阿方阿道夫发 阿方阿")
125
-	//mobile := this.GetString("mobile")
126
-	//fmt.Println(mobile)
127
-	info, err := service.GetMobilePatientInfo("18923081560")
125
+	mobile := this.GetString("mobile")
126
+	fmt.Println(mobile)
127
+	info, err := service.GetMobilePatientInfo(mobile)
128 128
 	if info.ID == 0 {
129 129
 		if err == nil {
130 130
 			this.ServeFailJSONWithSGJErrorCode(enums.ErrorCodeSystemError)

+ 9 - 9
service/xcx_mobile_api_service.go Bestand weergeven

@@ -31,16 +31,16 @@ func GetLoginInfor(mobile string) (models.XcxAdminUserRole, error) {
31 31
 	return role, err
32 32
 }
33 33
 
34
-func GetMobilePatientInfo(mobile string) (*models.XcxPatients, error) {
34
+func GetMobilePatientInfo(mobile string) (models.XcxPatients, error) {
35 35
 
36 36
 	patients := models.XcxPatients{}
37 37
 	err := XTReadDB().Model(&patients).Where("(phone = ? or home_telephone = ? ) and status = 1", mobile, mobile).Find(&patients).Error
38
-	if err == gorm.ErrRecordNotFound {
39
-		return nil, err
40
-	}
41
-
42
-	if err != nil {
43
-		return nil, err
44
-	}
45
-	return &patients, nil
38
+	//if err == gorm.ErrRecordNotFound {
39
+	//	return nil, err
40
+	//}
41
+	//
42
+	//if err != nil {
43
+	//	return nil, err
44
+	//}
45
+	return patients, err
46 46
 }