Browse Source

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

zqbao 10 tháng trước cách đây
mục cha
commit
ed70307629
1 tập tin đã thay đổi với 3 bổ sung0 xóa
  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 "是":