| | |
| | | // |
| | | |
| | | import UIKit |
| | | import JQTools |
| | | |
| | | class NoticeCenterUserRepeaceDetailVC: BaseVC { |
| | | @IBOutlet weak var image_avartar: UIImageView! |
| | |
| | | override func viewDidLoad() { |
| | | super.viewDidLoad() |
| | | title = "回复消息" |
| | | image_avartar.sd_setImage(with: URL(string: model.iconUrl)) |
| | | let avartarImageUrl = model.iconUrl.components(separatedBy: ",").first?.jq_urlEncoded() |
| | | image_avartar.sd_setImage(with: URL(string: avartarImageUrl)) |
| | | label_name.text = model.meditationTitle |
| | | label_content.text = model.coverDescription |
| | | image_reply_userAvartar.sd_setImage(with: URL(string: model.avatar)) |
| | |
| | | label_reply_content.text = model.content |
| | | label_reply_date.text = model.publishTime |
| | | view_plantfrom.isHidden = model.replyContent.isEmpty |
| | | view_plantfrom_reply.text = model.reply |
| | | view_plantfrom_reply.text = model.replyContent |
| | | } |
| | | } |