Commit c3184ff0 authored by Alex朱枝文's avatar Alex朱枝文

七鱼跳订单增加一个batchId字段

parent 6c68eb50
...@@ -138,8 +138,9 @@ extension YHButlerServiceManager { ...@@ -138,8 +138,9 @@ extension YHButlerServiceManager {
if !jsonObject.isEmpty { if !jsonObject.isEmpty {
let orderID : Int = jsonObject["order_id"] as? Int ?? -1 let orderID : Int = jsonObject["order_id"] as? Int ?? -1
let type : Int = jsonObject["type"] as? Int ?? -1 let type : Int = jsonObject["type"] as? Int ?? -1
let batchId: Int = jsonObject["batch_id"] as? Int ?? 0
if orderID > -1,type > -1 { if orderID > -1,type > -1 {
YHServiceOrderListView.jumpToMessageController(type: type, orderId: orderID) YHServiceOrderListView.jumpToMessageController(type: type, orderId: orderID, batchId)
return QYLinkClickActionPolicy.cancel return QYLinkClickActionPolicy.cancel
} }
} else { } else {
......
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