Commit 38c291aa authored by 刘俊宏's avatar 刘俊宏

调整下单成功页面(未更新UI)

parent aada4d7c
...@@ -191,7 +191,11 @@ class XiaDanChengGongViewController: BaseViewController,UITableViewDelegate,UITa ...@@ -191,7 +191,11 @@ class XiaDanChengGongViewController: BaseViewController,UITableViewDelegate,UITa
arrStr.append((dataModel?.home_delivery_on_cn)!) arrStr.append((dataModel?.home_delivery_on_cn)!)
arrStr.append((dataModel?.site_delivery_cn)!) arrStr.append((dataModel?.site_delivery_cn)!)
arrStr.append(String(format: "%.2f", (dataModel?.guarantee_value)!)) arrStr.append(String(format: "%.2f", (dataModel?.guarantee_value)!))
arrStr.append((dataModel?.remark)!) if ((dataModel?.remark)!).count == 0 {
arrStr.append("-")
}else{
arrStr.append((dataModel?.remark)!)
}
cell.textTF.text = arrStr[indexPath.row] cell.textTF.text = arrStr[indexPath.row]
return cell return cell
...@@ -205,6 +209,8 @@ class XiaDanChengGongViewController: BaseViewController,UITableViewDelegate,UITa ...@@ -205,6 +209,8 @@ class XiaDanChengGongViewController: BaseViewController,UITableViewDelegate,UITa
self.navigationController?.pushViewController(vc, animated: true) self.navigationController?.pushViewController(vc, animated: true)
case 1: case 1:
let vc = YunDanXiangQingViewController() let vc = YunDanXiangQingViewController()
let IDInt = orderID as! NSString
vc.orderID = Int(IDInt.intValue)
self.navigationController?.pushViewController(vc, animated: true) self.navigationController?.pushViewController(vc, animated: true)
case 2: case 2:
let vc = YDLBVc() let vc = YDLBVc()
......
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