Commit 557e1bc3 authored by lujunye's avatar lujunye

修复显示物流顺序显示bug

parent 84d7a4a8
......@@ -1127,7 +1127,15 @@ class XiaYunDanViewController: BaseViewController,UITableViewDelegate,UITableVie
@objc func huoLLAdrAction(sender:UIButton){
if sender.tag == 0 {
tempadrArr = adrArr
var btnH = 49
var h = CGFloat(adrArr.count + 2)*49
if IS_IPHONE_X {
btnH = 83
h = h + 34
}
if h > CGFloat(fullScreenHeight) * 0.65 {
h = CGFloat(fullScreenHeight) * 0.65
}
......@@ -1149,10 +1157,6 @@ class XiaYunDanViewController: BaseViewController,UITableViewDelegate,UITableVie
}
changeCellSortView?.frame = CGRect(x: 0, y: fullScreenHeight - CGFloat(h), width: fullScreenWidth, height: CGFloat(h))
var btnH = 49
if IS_IPHONE_X {
btnH = 83
}
let leftBtn = UIButton()
......
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