From aa288468668180e8c94161410432afe2b81664cf Mon Sep 17 00:00:00 2001 From: caoqianming Date: Fri, 4 Dec 2020 09:32:54 +0800 Subject: [PATCH] =?UTF-8?q?=E8=BA=AB=E4=BB=BD=E8=AF=81=E4=BF=A1=E6=81=AF?= =?UTF-8?q?=E5=B1=95=E7=A4=BAbug?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- safesite/views.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/safesite/views.py b/safesite/views.py index cfd4157d..15e543c5 100644 --- a/safesite/views.py +++ b/safesite/views.py @@ -2786,7 +2786,7 @@ def getuser(req): total = a.count() startnum, endnum = fenye(req) a = a.order_by('userid')[startnum:endnum].values( - 'userid', 'empid', 'name', 'ubelongpart__partname', 'ubelongpart__partid', 'username', 'openid') + 'userid', 'empid', 'name', 'ubelongpart__partname', 'ubelongpart__partid', 'username', 'openid', 'userprofile__cardnum', 'userprofile__gender') return HttpResponse(transjson(total, a), content_type="application/json")