|
@@ -73,19 +73,15 @@ class ShoppingCartPayOrderController: BaseViewController {
|
|
|
orderPayView.jumpNavBlock = {
|
|
|
[weak self] (jumpType) in
|
|
|
switch jumpType {
|
|
|
- case WillJumpType.expressAddInfo:
|
|
|
- let vc = EditExpressAddressViewController()
|
|
|
- vc.isFromOrderPay = true
|
|
|
- self?.navigationController?.pushViewController(vc, animated: true)
|
|
|
- case WillJumpType.expressManageInfo:
|
|
|
+ case WillJumpType.expressAddInfo,
|
|
|
+ WillJumpType.expressManageInfo
|
|
|
+ :
|
|
|
let vc = ExpressAddressListViewController()
|
|
|
vc.isFromOrderPay = true
|
|
|
self?.navigationController?.pushViewController(vc, animated: true)
|
|
|
- case WillJumpType.selfAddInfo:
|
|
|
- let vc = EditSelfMentionContactsViewController()
|
|
|
- vc.isFromOrderPay = true
|
|
|
- self?.navigationController?.pushViewController(vc, animated: true)
|
|
|
- case WillJumpType.selfPersonalInfo:
|
|
|
+ case WillJumpType.selfAddInfo,
|
|
|
+ WillJumpType.selfPersonalInfo
|
|
|
+ :
|
|
|
let vc = SelfMentionContactsListViewController()
|
|
|
vc.isFromOrderPay = true
|
|
|
self?.navigationController?.pushViewController(vc, animated: true)
|