29 lines
653 B
Swift
29 lines
653 B
Swift
//
|
|
// StatisticsViewController.swift
|
|
// suixinkan
|
|
//
|
|
|
|
import SnapKit
|
|
import UIKit
|
|
|
|
/// 数据 Tab 根页面。
|
|
final class StatisticsViewController: BaseViewController {
|
|
|
|
private let titleLabel = UILabel()
|
|
|
|
override func setupUI() {
|
|
title = "数据"
|
|
titleLabel.text = "数据"
|
|
titleLabel.font = .systemFont(ofSize: 24, weight: .medium)
|
|
titleLabel.textAlignment = .center
|
|
titleLabel.textColor = AppColor.text333
|
|
view.addSubview(titleLabel)
|
|
}
|
|
|
|
override func setupConstraints() {
|
|
titleLabel.snp.makeConstraints { make in
|
|
make.center.equalToSuperview()
|
|
}
|
|
}
|
|
}
|