diff --git a/GeliBusinessPlatform.xcworkspace/xcuserdata/liujunhong.xcuserdatad/UserInterfaceState.xcuserstate b/GeliBusinessPlatform.xcworkspace/xcuserdata/liujunhong.xcuserdatad/UserInterfaceState.xcuserstate index b1dce25c2a42370298dc1ac0055f480946a19a9a..af799b8e5a6fde15c5292b49495231325f31a3fd 100644 Binary files a/GeliBusinessPlatform.xcworkspace/xcuserdata/liujunhong.xcuserdatad/UserInterfaceState.xcuserstate and b/GeliBusinessPlatform.xcworkspace/xcuserdata/liujunhong.xcuserdatad/UserInterfaceState.xcuserstate differ diff --git "a/GeliBusinessPlatform/ViewController/\350\256\242\345\215\225\345\210\227\350\241\250/OrderListVC.swift" "b/GeliBusinessPlatform/ViewController/\350\256\242\345\215\225\345\210\227\350\241\250/OrderListVC.swift" index 7a2fa2e7555bb87ccf9c8f126e7ea24a47b257ea..e754cf8aea67a26f1259f3c6e01ed31c5092ec5a 100644 --- "a/GeliBusinessPlatform/ViewController/\350\256\242\345\215\225\345\210\227\350\241\250/OrderListVC.swift" +++ "b/GeliBusinessPlatform/ViewController/\350\256\242\345\215\225\345\210\227\350\241\250/OrderListVC.swift" @@ -19,6 +19,12 @@ class OrderListVC: BaseViewController, UITableViewDelegate, UITableViewDataSourc var dataArr:Array<Any> = [] { didSet{ tableV.reloadData() + tableV.performBatchUpdates({ + UIView.animate(views: self.tableV!.visibleCells, + animations: self.animations, completion: { + + }) + }, completion: nil) } } override func viewDidLoad() { @@ -55,12 +61,7 @@ class OrderListVC: BaseViewController, UITableViewDelegate, UITableViewDataSourc tableV.dataSource = self tableV.separatorStyle = .none tableV?.register(UINib(nibName: "DaiQueRenCell", bundle: nil), forCellReuseIdentifier: "DaiQueRenCell") - tableV.performBatchUpdates({ - UIView.animate(views: self.tableV!.visibleCells, - animations: self.animations, completion: { - - }) - }, completion: nil) + let footerTbV = UIView(frame: CGRect(x: 0, y: 0, width: view.frame.size.width, height: 15*glscale)) footerTbV.backgroundColor = UIColor.init(named: "app底色") tableV.tableFooterView = footerTbV