From 9db44d70b8805d532efe70122001ff7553e360b0 Mon Sep 17 00:00:00 2001 From: Jerry Yan <792602257@qq.com> Date: Mon, 7 Dec 2020 22:54:40 +0800 Subject: [PATCH] =?UTF-8?q?=E4=BF=AE=E6=94=B9?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- js/friendsList.js | 9 +++++++-- 1 file changed, 7 insertions(+), 2 deletions(-) diff --git a/js/friendsList.js b/js/friendsList.js index b8b2679..1ab595a 100644 --- a/js/friendsList.js +++ b/js/friendsList.js @@ -37,8 +37,13 @@ mui.plusReady(function() { } mui.each(data.Rows, function() { if (!this.lockReason || '' == this.lockReason) { - html += '
' + this.trueName + - '' + this.userPhone + '
' + if (this.trueName) { + html += '
' + this.trueName + + '' + this.userPhone + '
' + } else { + html += '
未认证' + + '                 
' + } } else { html += '
' + this.trueName + '' + this.userPhone +