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 +