Pārlūkot izejas kodu

fix:手机号不能为空

Roc 3 gadi atpakaļ
vecāks
revīzija
9eb98d5aba

+ 1 - 1
models/tables/user_view_statistics/user_view_statistics.go

@@ -30,7 +30,7 @@ func GetUserViewListByDate(dayStr string) (list []*UserViewMobileTotalSlice, err
 	o := orm.NewOrm()
 	sql := `SELECT mobile,sum(view_num) total
 			FROM user_view_statistics
-			WHERE 1=1 and date >= ? group by mobile`
+			WHERE 1=1 and date >= ? and mobile !="" group by mobile`
 	_, err = o.Raw(sql, dayStr).QueryRows(&list)
 	return
 }