Commit 5fb5a644 by ludi

修复一些bug

parent 44cb3ab6
...@@ -45,6 +45,7 @@ static const NSInteger FUSWebMoreListViewModuleSpace = 10; ...@@ -45,6 +45,7 @@ static const NSInteger FUSWebMoreListViewModuleSpace = 10;
[self.bgBtn mas_makeConstraints:^(MASConstraintMaker *make) { [self.bgBtn mas_makeConstraints:^(MASConstraintMaker *make) {
make.edges.equalTo(self); make.edges.equalTo(self);
}]; }];
[self.bgBtn addTarget:self action:@selector(fus_hidWithAniantion) forControlEvents:UIControlEventTouchUpInside];
self.contentView = [[UIView alloc] init]; self.contentView = [[UIView alloc] init];
[self addSubview:self.contentView]; [self addSubview:self.contentView];
......
...@@ -7,12 +7,12 @@ ...@@ -7,12 +7,12 @@
<key>FUSChatCenterBundle.xcscheme_^#shared#^_</key> <key>FUSChatCenterBundle.xcscheme_^#shared#^_</key>
<dict> <dict>
<key>orderHint</key> <key>orderHint</key>
<integer>72</integer> <integer>74</integer>
</dict> </dict>
<key>FUSChatCenterModule.xcscheme_^#shared#^_</key> <key>FUSChatCenterModule.xcscheme_^#shared#^_</key>
<dict> <dict>
<key>orderHint</key> <key>orderHint</key>
<integer>77</integer> <integer>76</integer>
</dict> </dict>
</dict> </dict>
</dict> </dict>
......
...@@ -7,12 +7,12 @@ ...@@ -7,12 +7,12 @@
<key>FUSShowRoomBundle.xcscheme_^#shared#^_</key> <key>FUSShowRoomBundle.xcscheme_^#shared#^_</key>
<dict> <dict>
<key>orderHint</key> <key>orderHint</key>
<integer>75</integer> <integer>78</integer>
</dict> </dict>
<key>FUSShowRoomModule.xcscheme_^#shared#^_</key> <key>FUSShowRoomModule.xcscheme_^#shared#^_</key>
<dict> <dict>
<key>orderHint</key> <key>orderHint</key>
<integer>73</integer> <integer>75</integer>
</dict> </dict>
</dict> </dict>
</dict> </dict>
......
...@@ -319,10 +319,11 @@ ...@@ -319,10 +319,11 @@
NSString *protocolStr = [NSString stringWithFormat:@"%ld、%@%@", responsibilityContentTextList.count + 1, text1, text2]; NSString *protocolStr = [NSString stringWithFormat:@"%ld、%@%@", responsibilityContentTextList.count + 1, text1, text2];
NSMutableAttributedString *protocolAttriStr = [[NSMutableAttributedString alloc] initWithString:protocolStr]; NSMutableAttributedString *protocolAttriStr = [[NSMutableAttributedString alloc] initWithString:protocolStr];
protocolAttriStr.alignment = NSTextAlignmentLeft; protocolAttriStr.alignment = NSTextAlignmentLeft;
protocolAttriStr.font = [UIFont fus_themeMediumFont:15]; protocolAttriStr.font = [UIFont fus_themeFont:15];
protocolAttriStr.color = [UIColor fus_textColorMedium]; protocolAttriStr.color = [UIColor fus_textColorRich];
NSRange range = [protocolStr rangeOfString:text2]; NSRange range = [protocolStr rangeOfString:text2];
[protocolAttriStr setColor:[UIColor fus_textColorDeep] range:range]; [protocolAttriStr setColor:[UIColor fus_textColorDeep] range:range];
[protocolAttriStr setFont:[UIFont fus_themeMediumFont:15] range:range];
MJWeakSelf MJWeakSelf
[protocolAttriStr setTextHighlightRange:range color:[UIColor fus_textColorDeep] backgroundColor:[UIColor clearColor] tapAction:^(UIView * _Nonnull containerView, NSAttributedString * _Nonnull text, NSRange range, CGRect rect) { [protocolAttriStr setTextHighlightRange:range color:[UIColor fus_textColorDeep] backgroundColor:[UIColor clearColor] tapAction:^(UIView * _Nonnull containerView, NSAttributedString * _Nonnull text, NSRange range, CGRect rect) {
......
...@@ -69,6 +69,7 @@ ...@@ -69,6 +69,7 @@
_optionModel = optionModel; _optionModel = optionModel;
[_msgView fus_setIcon:UIImage.fus_diamonIcon title:optionModel.amount]; [_msgView fus_setIcon:UIImage.fus_diamonIcon title:optionModel.amount];
_msgView.msgLb.shadowColor = [UIColor clearColor];
_profileLabel.text = optionModel.describe; _profileLabel.text = optionModel.describe;
[_tipsImgView setWebImageWithSubURLString:optionModel.sub placeholder:[UIImage imageWithColor:[UIColor clearColor] size:CGSizeMake(1, 1)]]; [_tipsImgView setWebImageWithSubURLString:optionModel.sub placeholder:[UIImage imageWithColor:[UIColor clearColor] size:CGSizeMake(1, 1)]];
......
...@@ -7,12 +7,12 @@ ...@@ -7,12 +7,12 @@
<key>FUSUserCenterModule.xcscheme_^#shared#^_</key> <key>FUSUserCenterModule.xcscheme_^#shared#^_</key>
<dict> <dict>
<key>orderHint</key> <key>orderHint</key>
<integer>74</integer> <integer>73</integer>
</dict> </dict>
<key>FUSUserCenterModuleBundle.xcscheme_^#shared#^_</key> <key>FUSUserCenterModuleBundle.xcscheme_^#shared#^_</key>
<dict> <dict>
<key>orderHint</key> <key>orderHint</key>
<integer>78</integer> <integer>77</integer>
</dict> </dict>
</dict> </dict>
</dict> </dict>
......
...@@ -392,7 +392,7 @@ ...@@ -392,7 +392,7 @@
<key>SSZipArchive.xcscheme_^#shared#^_</key> <key>SSZipArchive.xcscheme_^#shared#^_</key>
<dict> <dict>
<key>orderHint</key> <key>orderHint</key>
<integer>76</integer> <integer>72</integer>
</dict> </dict>
<key>SnapKit-SnapKit_Privacy.xcscheme</key> <key>SnapKit-SnapKit_Privacy.xcscheme</key>
<dict> <dict>
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or sign in to comment