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 += '<div class="lock_row shadown_wai"><label for="">姓名</label><span for="">' + this.trueName + - '</span><label for="">手机号</label><span for="" >' + this.userPhone + '</span></div>' + if (this.trueName) { + html += '<div class="lock_row shadown_wai"><label for="">姓名</label><span for="">' + this.trueName + + '</span><label for="">' + this.userId + '</label><span for="" >' + this.userPhone + '</span></div>' + } else { + html += '<div class="lock_row shadown_wai"><label for="">姓名</label><span for="">未认证' + + '</span><label for="">' + this.userId + '</label><span for="" > </span></div>' + } } else { html += '<div class="list_row shadown_wai"><label for="">姓名</label><span for="">' + this.trueName + '</span><label for="">手机号</label><span for="">' + this.userPhone +