From 02b2457dfcfea95e5603dd29930a15075dfcd140 Mon Sep 17 00:00:00 2001 From: zouap Date: Fri, 18 Mar 2022 18:04:04 +0800 Subject: [PATCH] =?UTF-8?q?=E6=8F=90=E4=BA=A4=E4=BB=A3=E7=A0=81=E3=80=82?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: zouap --- public/home/search.js | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/public/home/search.js b/public/home/search.js index ebebca9f7..47974bd8a 100644 --- a/public/home/search.js +++ b/public/home/search.js @@ -445,7 +445,9 @@ function displayUserResult(page,jsonResult,onlyReturnNum,keyword){ html += "
"; html += "

" + recordMap["description"] + "

"; html +="

"; - html +=" " + recordMap["email"]; + if(!isEmpty(recordMap["email"]) && recordMap["email"] != "null"){ + html +=" " + recordMap["email"]; + } html +=" 加入于 "; html += recordMap["add_time"] html +="

";