update
This commit is contained in:
@@ -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)
|
||||
|
||||
|
||||
@@ -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
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user