From 4fb1e7db45ddf4dfacd2bfb4dbfe0b9f269bedb7 Mon Sep 17 00:00:00 2001 From: 杨锴 <841720330@qq.com> Date: 星期二, 12 十一月 2024 18:29:28 +0800 Subject: [PATCH] fix bug. --- XQMuse/Root/Me/MeVC.swift | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/XQMuse/Root/Me/MeVC.swift b/XQMuse/Root/Me/MeVC.swift index fdd1bb5..da43448 100644 --- a/XQMuse/Root/Me/MeVC.swift +++ b/XQMuse/Root/Me/MeVC.swift @@ -121,7 +121,7 @@ private func setUserUI(model:UserInfoModel){ self.image_userAvatar.sd_setImage(with: URL(string: model.avatar)) self.label_userName.text = model.nickname - self.label_phone.text = model.cellPhone + self.label_phone.text = model.cellPhone.jq_blotOutPhone() self.label_totalDay.attributedText = AttributedStringbuilder.build().add(string: "\(model.cumulative)", withFont: Def_PingFang(fontSize: 60), withColor: UIColor(hexString: "#353535")!).add(string: "天", withFont: Def_PingFang(fontSize: 16), withColor: UIColor(hexString: "#353535")!).mutableAttributedString -- Gitblit v1.7.1