Commit c87f617b authored by Steven杜宇's avatar Steven杜宇

// H5

parent 06e5e458
...@@ -387,6 +387,7 @@ extension YHTravelDocsPreparationDetailVC: UITableViewDelegate, UITableViewDataS ...@@ -387,6 +387,7 @@ extension YHTravelDocsPreparationDetailVC: UITableViewDelegate, UITableViewDataS
// 证件类型 1-护照 2-中国旅行证 3-港澳通行证 4-存款证明 5-其他 // 证件类型 1-护照 2-中国旅行证 3-港澳通行证 4-存款证明 5-其他
[weak self] type in [weak self] type in
guard let self = self else { return } guard let self = self else { return }
var templateType: YHAdopterCardType? = nil var templateType: YHAdopterCardType? = nil
if type == 1 { // 护照 if type == 1 { // 护照
templateType = .chinaTravel templateType = .chinaTravel
......
...@@ -18,10 +18,13 @@ class YHJsApi: NSObject { ...@@ -18,10 +18,13 @@ class YHJsApi: NSObject {
extension YHJsApi { extension YHJsApi {
//4、跳转到 办证3 - 赴港时间预约界面 //4、跳转到 办证3 - 赴港时间预约界面
@objc func gotoAppointCertificateSyn(_ orderID : Int) { @objc func gotoAppointCertificateSyn(_ orderID : String) {
let vc = YHCertificateAppointViewController()
vc.orderId = orderID if let orderId = Int(orderID) {
delegate?.navigationController?.pushViewController(vc) let vc = YHCertificateAppointViewController()
vc.orderId = orderId
delegate?.navigationController?.pushViewController(vc)
}
} }
//3、展示图片组 //3、展示图片组
......
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