Commit 7350296a authored by David黄金龙's avatar David黄金龙

删除测试代码

parent f3c7eb11
...@@ -90,7 +90,14 @@ extension YHPayMemberContentItems { ...@@ -90,7 +90,14 @@ extension YHPayMemberContentItems {
make.top.equalTo(lastView.snp.bottom).offset(kMargin) make.top.equalTo(lastView.snp.bottom).offset(kMargin)
make.left.right.equalToSuperview() make.left.right.equalToSuperview()
} }
item.updateUI(title: "可缴费时间段:",detail: "\(model.min_pay_time) - \(model.max_pay_time)",showBtn: false)
if model.min_pay_time.isYHEmpty() {
item.updateUI(title: "可缴费时间段:",detail: "\(model.max_pay_time)前",showBtn: false)
} else {
item.updateUI(title: "可缴费时间段:",detail: "\(model.min_pay_time) - \(model.max_pay_time)",showBtn: false)
}
lastView = item lastView = item
} }
......
...@@ -346,20 +346,10 @@ extension YHMyViewController : UITableViewDelegate, UITableViewDataSource { ...@@ -346,20 +346,10 @@ extension YHMyViewController : UITableViewDelegate, UITableViewDataSource {
return return
} }
// let vc = YHCertificateAppointViewController()
// if true { // vc.orderId = 151085
// // test dy // self.navigationController?.pushViewController(vc)
//// if let orderID = UserDefaults.standard.value(forKey: "orderIdForPreview") as? Int { // return
//// let vc = YHFamilyInfoConfirmViewController()
//// vc.orderId = orderID
//// self.navigationController?.pushViewController(vc)
//// }
//
let vc = YHCertificateAppointViewController()
vc.orderId = 151085
self.navigationController?.pushViewController(vc)
return
// }
let item: PersonalModuleItem = items[indexPath.row] let item: PersonalModuleItem = items[indexPath.row]
switch item.type { switch item.type {
......
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