Commit 6da47927 authored by Steven杜宇's avatar Steven杜宇

Merge branch 'develop' of http://gitlab.galaxy-immi.com/mobile-group/galaxy-iOS into develop

parents 312276c2 eee49ba7
...@@ -2431,7 +2431,7 @@ ...@@ -2431,7 +2431,7 @@
CODE_SIGN_IDENTITY = "Apple Development"; CODE_SIGN_IDENTITY = "Apple Development";
"CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer"; "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer";
CODE_SIGN_STYLE = Manual; CODE_SIGN_STYLE = Manual;
CURRENT_PROJECT_VERSION = 3; CURRENT_PROJECT_VERSION = 4;
DEVELOPMENT_TEAM = ""; DEVELOPMENT_TEAM = "";
"DEVELOPMENT_TEAM[sdk=iphoneos*]" = RXHYW88XR7; "DEVELOPMENT_TEAM[sdk=iphoneos*]" = RXHYW88XR7;
ENABLE_USER_SCRIPT_SANDBOXING = NO; ENABLE_USER_SCRIPT_SANDBOXING = NO;
...@@ -2473,7 +2473,7 @@ ...@@ -2473,7 +2473,7 @@
CODE_SIGN_IDENTITY = "Apple Development"; CODE_SIGN_IDENTITY = "Apple Development";
"CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer"; "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer";
CODE_SIGN_STYLE = Manual; CODE_SIGN_STYLE = Manual;
CURRENT_PROJECT_VERSION = 3; CURRENT_PROJECT_VERSION = 4;
DEVELOPMENT_TEAM = ""; DEVELOPMENT_TEAM = "";
"DEVELOPMENT_TEAM[sdk=iphoneos*]" = RXHYW88XR7; "DEVELOPMENT_TEAM[sdk=iphoneos*]" = RXHYW88XR7;
ENABLE_USER_SCRIPT_SANDBOXING = NO; ENABLE_USER_SCRIPT_SANDBOXING = NO;
......
...@@ -187,6 +187,11 @@ extension YHInformationPerfectListVC { ...@@ -187,6 +187,11 @@ extension YHInformationPerfectListVC {
if success == true { if success == true {
let model = self?.serviceCenterMainReqVM.allInfoScoreModel let model = self?.serviceCenterMainReqVM.allInfoScoreModel
YHSubmintAllInfoSuccessTipView.showCheckView(model: model) { agree in YHSubmintAllInfoSuccessTipView.showCheckView(model: model) { agree in
//1、刷新当前界面
self?.loadData()
//2、跳转其他界面
if agree == true { if agree == true {
self?.goScoreVC() self?.goScoreVC()
} }
......
...@@ -38,12 +38,13 @@ class YHContactMainItemStatusModel { ...@@ -38,12 +38,13 @@ class YHContactMainItemStatusModel {
struct YHContactMainItemStatusModel2 : SmartCodable { struct YHContactMainItemStatusModel2 : SmartCodable {
var fill_info_step : Int = 0 var fill_info_step : Int = 0 //我的信息 当前第几步
var supplement_not_submit_num : Int = 0 //资料上传 待上传的数量
var scheme_position_switch : Int = 0 //方案定位是否开启 0未开启 1开启
var my_signature : Bool = false //是否开启我的签字
var my_document : Bool = false //是否开启我的文书
} }
struct YHContactInfoScoreModel : SmartCodable { struct YHContactInfoScoreModel : SmartCodable {
var sum_score : String = "" var sum_score : String = ""
} }
...@@ -229,8 +229,20 @@ private extension YHPreviewViewModel { ...@@ -229,8 +229,20 @@ private extension YHPreviewViewModel {
let tmp4 = YHPreviewQuestionAndAnswerModel(question: "用人单位官网:", answer: model.company_website.defaultStringIfEmpty()) let tmp4 = YHPreviewQuestionAndAnswerModel(question: "用人单位官网:", answer: model.company_website.defaultStringIfEmpty())
var title = "-" var title = "-"
if let item = model.location { if let item = model.location {
title = item.country + "-" + item.details // title = item.country + "-" + item.details
if item.country.contains("中国") {
title = "国内 "
if item.area.count > 1 {
title = title + item.area[0] + "/" + item.area[1]
}
} else {
title = "国外 " + item.country + "-" + item.foreign
}
} }
let tmp5 = YHPreviewQuestionAndAnswerModel(question: "工作地点:", answer: title) let tmp5 = YHPreviewQuestionAndAnswerModel(question: "工作地点:", answer: title)
let tmp6 = YHPreviewQuestionAndAnswerModel(question: "职位:", answer: model.position) let tmp6 = YHPreviewQuestionAndAnswerModel(question: "职位:", answer: model.position)
let tmp7 = YHPreviewQuestionAndAnswerModel(question: "入职年月:", answer: model.entry_time) let tmp7 = YHPreviewQuestionAndAnswerModel(question: "入职年月:", answer: model.entry_time)
...@@ -331,7 +343,7 @@ private extension YHPreviewViewModel { ...@@ -331,7 +343,7 @@ private extension YHPreviewViewModel {
title = title + item.area[0] + "/" + item.area[1] title = title + item.area[0] + "/" + item.area[1]
} }
} else { } else {
title = "国外 " + item.country + item.foreign title = "国外 " + item.country + "-" + item.foreign
} }
} else { } else {
title = "--" title = "--"
...@@ -363,7 +375,7 @@ private extension YHPreviewViewModel { ...@@ -363,7 +375,7 @@ private extension YHPreviewViewModel {
title = title + item.area[0] + "/" + item.area[1] title = title + item.area[0] + "/" + item.area[1]
} }
} else { } else {
title = "国外 " + item.country + item.foreign title = "国外 " + item.country + "-" + item.foreign
} }
} else { } else {
title = "--" title = "--"
......
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 to comment