15555599100 6 år sedan
förälder
incheckning
06c7c292fd

+ 10 - 2
HappyJob/HappyJob/Login_登录/信息合并/View/求职意向/HJLoginInfoLookResumeObjectiveView.m

@@ -58,8 +58,16 @@
     }
     if (resumeModel.expectationSalary)
     {
-        NSArray *salaryArray = @[@"1000~2000元/月", @"2001~3000元/月", @"3001~4000元/月", @"4001~5000元/月", @"5001~6000元/月", @"6001~7000元/月", @"7001~8000元/月", @"8001~9000元/月", @"9001~10000元/月", @"10000以上元/月"];
-        self.salaryView.rightLabel.text = salaryArray[[resumeModel.expectationSalary integerValue]];
+        if ([resumeModel.expectationSalary isEqualToString:@"-1"])
+        {
+            self.salaryView.rightLabel.text = @"不限";
+        }
+        else
+        {
+            NSArray *salaryArray = @[@"1000~2000元/月", @"2001~3000元/月", @"3001~4000元/月", @"4001~5000元/月", @"5001~6000元/月", @"6001~7000元/月", @"7001~8000元/月", @"8001~9000元/月", @"9001~10000元/月", @"10000以上元/月"];
+            self.salaryView.rightLabel.text = salaryArray[[resumeModel.expectationSalary integerValue]];
+        }
+       
     }
 }
 - (void)initViews {