Commit 469ceadf1e48c876fbd37cedca384258e5af0334
1 parent
41aa7513
我的-我的身份-您已认证x个身份
Showing
2 changed files
with
8 additions
and
9 deletions
metaCode/Classes/Main/HomePage/View/DigitalAuthViews/DigitalResume/CNLiveDigitalResumeCell.swift
| ... | ... | @@ -426,7 +426,7 @@ class CNLiveDigitalResumeCell: UITableViewCell { |
| 426 | 426 | self.phoneTitleLabel.sizeToFit() |
| 427 | 427 | self.phoneTitleLabel.snp.makeConstraints { make in |
| 428 | 428 | make.left.equalTo(15) |
| 429 | - make.top.equalTo(self.authNameTitleLabel.snp.bottom).offset(adapt_length(length: 8)) | |
| 429 | + make.top.equalTo(self.jianliIconBgView.snp.bottom).offset(1) | |
| 430 | 430 | make.width.equalTo(self.phoneTitleLabel.size.width) |
| 431 | 431 | make.height.equalTo(self.phoneTitleLabel.size.height) |
| 432 | 432 | } | ... | ... |
metaCode/Classes/Main/MinePage/View/CNLiveMineBodyListView.swift
| ... | ... | @@ -51,8 +51,7 @@ class MineBodyOneListViewCell : UITableViewCell { |
| 51 | 51 | let tipLabel = UILabel.init() |
| 52 | 52 | tipLabel.textColor = HexColor("#999999") |
| 53 | 53 | tipLabel.text = "您暂未进行身份认证" |
| 54 | - tipLabel.font = Font_13 | |
| 55 | - tipLabel.isHidden = true | |
| 54 | + tipLabel.font = Font_15 | |
| 56 | 55 | return tipLabel |
| 57 | 56 | }() |
| 58 | 57 | |
| ... | ... | @@ -73,12 +72,12 @@ class MineBodyOneListViewCell : UITableViewCell { |
| 73 | 72 | public func reloadWithData() { |
| 74 | 73 | let tempArray = StandSortManager.sortMyListData(auths: CNLiveSaveAuthDB.shared.searchAllObject() as NSArray) as! [MineAuthListModel] |
| 75 | 74 | if tempArray.count == 0 { |
| 76 | - tipLabel.isHidden = false | |
| 75 | + tipLabel.text = "您暂未进行身份认证" | |
| 77 | 76 | }else{ |
| 78 | - tipLabel.isHidden = true | |
| 79 | - for (index, item) in tempArray.enumerated() { | |
| 80 | - setupWithIconsView(authModel: item, index: index) | |
| 81 | - } | |
| 77 | + tipLabel.text = "您已认证\(tempArray.count)个身份" | |
| 78 | +// for (index, item) in tempArray.enumerated() { | |
| 79 | +// setupWithIconsView(authModel: item, index: index) | |
| 80 | +// } | |
| 82 | 81 | } |
| 83 | 82 | } |
| 84 | 83 | |
| ... | ... | @@ -123,7 +122,7 @@ class MineBodyOneListViewCell : UITableViewCell { |
| 123 | 122 | } |
| 124 | 123 | tipLabel.snp.makeConstraints { make in |
| 125 | 124 | make.centerY.equalToSuperview().offset(20) |
| 126 | - make.left.equalToSuperview().offset(15) | |
| 125 | + make.left.equalToSuperview().offset(20) | |
| 127 | 126 | } |
| 128 | 127 | lookBtn.snp.makeConstraints { make in |
| 129 | 128 | make.centerY.equalToSuperview().offset(20) | ... | ... |