|
|
@@ -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 {
|