This commit is contained in:
DDIsFriend
2023-08-24 16:46:39 +08:00
parent 887a468768
commit 1a0943017a
139 changed files with 24162 additions and 13640 deletions

View File

@@ -535,7 +535,7 @@ open class VehicleMonitoringController : ZDViewController {
categoryContainerView?.snp.makeConstraints({ make in
make.top.equalTo(vehicleMonitoringView.vehicleMonitoringPannelView.categoryView.snp.bottom)
make.left.right.equalToSuperview()
make.bottom.equalToSuperview()
make.bottom.equalToSuperview().offset(-CGRectGetHeight(tabBarController?.tabBar.frame ?? .zero))
})
messageView.titleLabel.text = "消息"
@@ -636,6 +636,7 @@ open class VehicleMonitoringPannelView : DDView {
indicator.indicatorColor = .hex("3678FF")
indicator.indicatorWidth = JXCategoryViewAutomaticDimension
indicator.verticalMargin = 0
indicator.indicatorWidth = auto(18)
categoryView.indicators = [indicator]
radiusView.addSubview(categoryView)

View File

@@ -32,7 +32,7 @@ extension VehicleMonitoringListController : UITableViewDelegate,UITableViewDataS
}else{
var status = model.vehicleStatus?.label ?? ""
if model.onlineStatus?.code == .lostConnection {
status = status + ","
status = status + "," + (model.onlineStatus?.label ?? "掉线")
}
cell?.dateLabel.text = (model.vehicleName ?? "")+"/"+status
}