Browse Source

fix:修复潜在用户和正式用户混在一起的问题

zqbao 10 months ago
parent
commit
ed70307629
1 changed files with 3 additions and 0 deletions
  1. 3 0
      controllers/user.go

+ 3 - 0
controllers/user.go

@@ -482,6 +482,9 @@ func (this *UserController) List() {
 	case "正式":
 		condition += " AND status=? "
 		pars = append(pars, 2)
+	case "":
+		condition += " AND (status=? OR status=?) "
+		pars = append(pars, 0, 2)
 	}
 	switch IsRegistered {
 	case "是":