time 6 years ago
parent
commit
22b017bf0e

+ 3 - 2
UU_Ent/UU_Ent/Modules/Mine/Main/Controllers/YRMineVC.m

@@ -11,6 +11,7 @@
 #import "YRMineModel.h"
 #import "YRMineCell.h"
 #import "YRWebVC.h"
+#import "NSString+secri.h"
 
 @interface YRMineVC ()<UITableViewDelegate,UITableViewDataSource>
 
@@ -204,7 +205,7 @@
     
     NSDictionary *accountDic = [[YRUserInfo shareManager].userInfo objectForKey:@"account"];
     nameLabel.text = [accountDic objectForKey:@"realname"];
-    phoneLabel.text = u_account;
+    phoneLabel.text = [NSString encodeSeciWithStr:FORMAT(@"%@",[[NSUserDefaults standardUserDefaults] objectForKey:@"userAccount"])];
     
     iconView.image = [UIImage imageNamed:@"uu_zhanwei_man"];
     
@@ -288,7 +289,7 @@
         _tableView.backgroundColor = [UIColor whiteColor];
         _tableView.separatorStyle = UITableViewCellSeparatorStyleNone;
         
-        CGFloat height = 64;
+        CGFloat height = 64+36;
         if (statusXLately) {
             height = 132;
         }

+ 1 - 1
UU_Ent/UU_Ent/Modules/Work/Main/Controllers/YRWorkVC.m

@@ -89,7 +89,7 @@
      self.view.backgroundColor = RGB(219, 227, 232, 1);
     
     [self.view addSubview:self.tableView];
-    self.tableView.frame = CGRectMake(10, 74, self.view.frame.size.width-20, SCREEN_WIDTH - 108);
+    self.tableView.frame = CGRectMake(10, 74, self.view.frame.size.width-20, SCREEN_HEIGHT - 108);
     
     UIView *footerView = [[UIView alloc]initWithFrame:CGRectMake(0, 0, self.view.width, 70)];