//
|
// EnterpriseAuthVC.swift
|
// OKProject
|
//
|
// Created by 无故事王国 on 2023/4/10.
|
// Copyright © 2023 yangwang. All rights reserved.
|
//
|
|
import UIKit
|
|
class EnterpriseAuthVC: YYViewController {
|
|
override func viewDidLoad() {
|
super.viewDidLoad()
|
title = "企业认证"
|
|
}
|
|
@IBAction func handleAction(_ sender: TapButton) {
|
print("--->\(sender.tag)")
|
if sender.tag == 10{
|
let vc = EnterpriseAuthApplyVC()
|
yy_push(vc: vc)
|
}
|
|
if sender.tag == 12{
|
let vc = EnterpriseMembersVC()
|
yy_push(vc: vc)
|
}
|
|
if sender.tag == 13{
|
let vc = EnterpriseInfoVC()
|
yy_push(vc: vc)
|
}
|
|
if sender.tag == 14{
|
let vc = OrderReviewListVC()
|
yy_push(vc: vc)
|
}
|
|
if sender.tag == 15{
|
let vc = LinesOfCreditListVC()
|
yy_push(vc: vc)
|
}
|
}
|
}
|