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

// H5

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