24 lines
666 B
Swift
24 lines
666 B
Swift
//
|
|
// AppRouterCoin.swift
|
|
// Crush
|
|
//
|
|
// Created by Leon on 2025/8/21.
|
|
//
|
|
|
|
extension AppRouter{
|
|
static func goWalletCenter(){
|
|
let vc = WalletMainPagerController()
|
|
UIWindow.getTopViewController()?.navigationController?.pushViewController(vc, animated: true)
|
|
}
|
|
|
|
static func goBillList(){
|
|
let vc = BillDetailListController()
|
|
UIWindow.getTopViewController()?.navigationController?.pushViewController(vc, animated: true)
|
|
}
|
|
|
|
static func goVIPCenter(){
|
|
let vc = VIPPrivilegesShowController()
|
|
UIWindow.getTopViewController()?.navigationController?.pushViewController(vc, animated: true)
|
|
}
|
|
}
|