Commit cd7c6972 authored by David黄金龙's avatar David黄金龙

添加 备注

parent 183939ae
......@@ -222,19 +222,21 @@ extension YHServiceOrderListView : UITableViewDelegate,UITableViewDataSource {
if model.status == 1 || model.status == 4 {
return
} else {
//1 证件 2 信息完善 3 我的评分 4 我的方案 5 我的签字 6我的文书
//1 我的证件 2 我的信息 3 我的评分 4 我的方案 5 我的签字 6我的文书
if model.type == 1 {
//我的证件
let vc = YHMineCertificateEntryViewController()
vc.orderId = orderID
UIViewController.current?.navigationController?.pushViewController(vc)
} else if model.type == 2 {
//我的信息
let vc = YHInformationPerfectListVC()
vc.orderId = orderID
UIViewController.current?.navigationController?.pushViewController(vc)
} else if model.type == 3 { // 评分
} else if model.type == 3 {
//我的评分
handleRedPointFor(key: kMyScoreRedPointInfoKey, model: model)
let vc = YHScoreDetailViewController()
vc.orderId = orderID
......@@ -242,16 +244,19 @@ extension YHServiceOrderListView : UITableViewDelegate,UITableViewDataSource {
UIViewController.current?.navigationController?.pushViewController(vc)
} else if model.type == 4 { // 方案
//我的方案
handleRedPointFor(key: kMyPlanRedPointInfoKey, model: model)
let vc = YHMineSchemeViewController()
UIViewController.current?.navigationController?.pushViewController(vc)
} else if model.type == 5 {
//我的签字
let vc = YHMySignatureListViewController()
vc.orderId = orderID
UIViewController.current?.navigationController?.pushViewController(vc)
} else if model.type == 6 {
//我的文书
let vc = YHMyDocumentsListViewController()
vc.orderId = orderID
UIViewController.current?.navigationController?.pushViewController(vc)
......@@ -267,7 +272,8 @@ extension YHServiceOrderListView : UITableViewDelegate,UITableViewDataSource {
vc.orderId = orderID
UIViewController.current?.navigationController?.pushViewController(vc)
} else if model.type == 13 { //原则批已获批~
} else if model.type == 13 {
//原则批已获批~
let vc = YHPrincipleApprovedResultVC()
vc.orderId = orderID
UIViewController.current?.navigationController?.pushViewController(vc)
......@@ -280,7 +286,6 @@ extension YHServiceOrderListView : UITableViewDelegate,UITableViewDataSource {
//新增受养人
let vc = YHAddAdoptersViewController()
vc.orderId = orderID
// navigationController?.pushViewController(vc)
UIViewController.current?.navigationController?.pushViewController(vc)
} else if model.type == 22 {
//家庭信息确认
......@@ -328,7 +333,6 @@ extension YHServiceOrderListView : UITableViewDelegate,UITableViewDataSource {
} else { // 已预约过直接进入赴港行程指引
if var token = YHLoginManager.shared.userModel?.token {
var url = YHBaseUrlManager.shared.curH5URL() + "superAppBridge.html#/tohkList"
// var url = "http://192.168.23.35:10300/superAppBridge.html#/tohkList"//for test hjl
let addtionString = String.randomAlphaNumericStringT(6)//随机6个字母或者数字
let indexToInsert = token.index(token.startIndex, offsetBy: 6) //插入位置,这里以第六个字符后面为例
......
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