Commit 8772d33b authored by 刘俊宏's avatar 刘俊宏

622...

622 iOS:订单详情,点击“退款”,浮层提示“暂不支持原路退款,请注意使用其他渠道退还金额”,提供2个按钮,“取消”&“继续退款”,点击“取消”,不标记为退款,点击“继续退款”,标记为退款相关的状态。
parent d1a6a0b4
......@@ -201,8 +201,8 @@ class OrderDViewController: BaseViewController,UITableViewDelegate,UITableViewDa
let alertView = GeliAlertView(frame: self.view.window!.bounds)
alertView.delegate = self;
alertView.tishiLbl.text = ""
alertView.titileLbl.text = "是否退款?"
alertView.rightBtn.setAttributedTitle(NSAttributedString(string: "确认"), for: .normal)
alertView.titileLbl.text = "暂不支持原路退款,请注意使用其他渠道退还金额"
alertView.rightBtn.setAttributedTitle(NSAttributedString(string: "继续退款"), for: .normal)
alertView.rightBtn.tag = 1004
self.view.window?.addSubview(alertView)
......@@ -1070,7 +1070,12 @@ class OrderDViewController: BaseViewController,UITableViewDelegate,UITableViewDa
break
case 7:
// str = "待收货"
titleArr = ["退货","打印","退款"]
if self.dataMdoel?.order_res?.pay_status != 2 && self.dataMdoel?.order_res?.pay_status != 11 {
titleArr = ["退货","打印","退款"]
}else{
titleArr = ["打印","退款"]
}
break
//订单完成
case 5:
......
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