Commit 4406cc80 authored by Alex朱枝文's avatar Alex朱枝文

添加收入记录入口

parent f477617b
...@@ -513,10 +513,10 @@ extension YHInformationPerfectListVC : UITableViewDelegate,UITableViewDataSource ...@@ -513,10 +513,10 @@ extension YHInformationPerfectListVC : UITableViewDelegate,UITableViewDataSource
} }
else if tapIndex == 5 { else if tapIndex == 5 {
//收入记录 //收入记录
// let vc = YHOtherInfoFillViewController() if let orderId = orderId {
// vc.orderId = orderId let ctl = YHIncomeRecordViewController(orderId: orderId)
// navigationController?.pushViewController(vc) navigationController?.pushViewController(ctl)
YHHUD.flash(message: "这里完善 收入记录 跳转逻辑") }
} }
else if tapIndex == 6 { else if tapIndex == 6 {
......
...@@ -346,6 +346,7 @@ extension YHIncomeRecordViewController { ...@@ -346,6 +346,7 @@ extension YHIncomeRecordViewController {
} }
self.datas = [] self.datas = []
self.tableView.reloadData() self.tableView.reloadData()
self.navigationController?.popViewController(animated: true)
return return
} }
self.incomeModel = incomeModel self.incomeModel = incomeModel
......
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