救援中-待派车的页面微调

This commit is contained in:
DDIsFriend
2023-10-24 16:59:04 +08:00
parent d6ba61dba7
commit ae5ed5a3a6
4 changed files with 33 additions and 33 deletions

View File

@@ -211,22 +211,6 @@
</Locations>
</BreakpointContent>
</BreakpointProxy>
<BreakpointProxy
BreakpointExtensionID = "Xcode.Breakpoint.FileBreakpoint">
<BreakpointContent
uuid = "240ABA97-AB32-47DE-8D78-F304E2C22EA8"
shouldBeEnabled = "No"
ignoreCount = "0"
continueAfterRunningActions = "No"
filePath = "OrderScheduling/Rescue/ViewController/RescueController.swift"
startingColumnNumber = "9223372036854775807"
endingColumnNumber = "9223372036854775807"
startingLineNumber = "664"
endingLineNumber = "664"
landmarkName = "tableView(_:cellForRowAt:)"
landmarkType = "7">
</BreakpointContent>
</BreakpointProxy>
<BreakpointProxy
BreakpointExtensionID = "Xcode.Breakpoint.FileBreakpoint">
<BreakpointContent
@@ -411,8 +395,8 @@
filePath = "OrderScheduling/Rescue/ViewController/RescueController.swift"
startingColumnNumber = "9223372036854775807"
endingColumnNumber = "9223372036854775807"
startingLineNumber = "1022"
endingLineNumber = "1022"
startingLineNumber = "1021"
endingLineNumber = "1021"
landmarkName = "collectionView(_:cellForItemAt:)"
landmarkType = "7">
</BreakpointContent>
@@ -2237,8 +2221,8 @@
filePath = "OrderScheduling/Rescue/ViewController/RescueController.swift"
startingColumnNumber = "9223372036854775807"
endingColumnNumber = "9223372036854775807"
startingLineNumber = "1033"
endingLineNumber = "1033"
startingLineNumber = "1032"
endingLineNumber = "1032"
landmarkName = "collectionView(_:didSelectItemAt:)"
landmarkType = "7">
</BreakpointContent>
@@ -2971,8 +2955,8 @@
filePath = "OrderScheduling/Rescue/ViewController/RescueController.swift"
startingColumnNumber = "9223372036854775807"
endingColumnNumber = "9223372036854775807"
startingLineNumber = "1116"
endingLineNumber = "1116"
startingLineNumber = "1115"
endingLineNumber = "1115"
landmarkName = "viewSafeAreaInsetsDidChange()"
landmarkType = "7">
</BreakpointContent>
@@ -3643,8 +3627,8 @@
filePath = "OrderScheduling/Rescue/ViewController/RescueController.swift"
startingColumnNumber = "9223372036854775807"
endingColumnNumber = "9223372036854775807"
startingLineNumber = "922"
endingLineNumber = "922"
startingLineNumber = "921"
endingLineNumber = "921"
landmarkName = "tableView(_:cellForRowAt:)"
landmarkType = "7">
<Locations>
@@ -3691,8 +3675,8 @@
filePath = "OrderScheduling/Rescue/ViewController/RescueController.swift"
startingColumnNumber = "9223372036854775807"
endingColumnNumber = "9223372036854775807"
startingLineNumber = "936"
endingLineNumber = "936"
startingLineNumber = "935"
endingLineNumber = "935"
landmarkName = "tableView(_:cellForRowAt:)"
landmarkType = "7">
<Locations>
@@ -3739,8 +3723,8 @@
filePath = "OrderScheduling/Rescue/ViewController/RescueController.swift"
startingColumnNumber = "9223372036854775807"
endingColumnNumber = "9223372036854775807"
startingLineNumber = "941"
endingLineNumber = "941"
startingLineNumber = "940"
endingLineNumber = "940"
landmarkName = "tableView(_:cellForRowAt:)"
landmarkType = "7">
</BreakpointContent>
@@ -4845,5 +4829,21 @@
</Locations>
</BreakpointContent>
</BreakpointProxy>
<BreakpointProxy
BreakpointExtensionID = "Xcode.Breakpoint.FileBreakpoint">
<BreakpointContent
uuid = "212B4492-6BF6-4B24-A6BD-46382D113284"
shouldBeEnabled = "No"
ignoreCount = "0"
continueAfterRunningActions = "No"
filePath = "OrderScheduling/Rescue/ViewController/RescueController.swift"
startingColumnNumber = "9223372036854775807"
endingColumnNumber = "9223372036854775807"
startingLineNumber = "630"
endingLineNumber = "630"
landmarkName = "tableView(_:cellForRowAt:)"
landmarkType = "7">
</BreakpointContent>
</BreakpointProxy>
</Breakpoints>
</Bucket>

View File

@@ -635,7 +635,6 @@ extension RescuePendingDispatchController : UITableViewDelegate,UITableViewDataS
cell?.juheTitleLabel.text = "聚合车辆:"
cell?.juheButton.setTitle("\(model.juheVehcileName ?? "")-\(model.juheStaffPhone ?? "")", for: .normal)
cell?.juheButton.setImage(UIImage(named: "rescue_orderDispatch_call"), for: .normal)
cell?.juheButton.dd_customize(with: .ImageRightPaddingTitleLeftWithWholeCenter, padding: auto(5))
cell?.juheButton.isHidden = false
cell?.juheTitleLabel.snp.updateConstraints({ make in
make.top.equalTo(cell!.positionLabel.snp.bottom).offset(auto(8))
@@ -1542,7 +1541,7 @@ class RescuePendingDispatchCell : DDTableViewCell {
radiusView.addSubview(juheTitleLabel)
juheButton.setTitleColor(.hex("ff0000"), for: .normal)
juheButton.titleLabel?.font = .mediumFont(auto(13))
juheButton.contentEdgeInsets = UIEdgeInsets(top: 0, left: auto(5), bottom: 0, right: auto(5))
juheButton.contentEdgeInsets = UIEdgeInsets(top: 0, left: 3, bottom: 0, right: 3)
radiusView.addSubview(juheButton)
carTypeLabel.numberOfLines = 0
radiusView.addSubview(carTypeLabel)
@@ -1758,6 +1757,7 @@ class RescuePendingDispatchCell : DDTableViewCell {
super.layoutSubviews()
dispatchLayer.frame = CGRectMake(0, 0, auto(80), auto(30))
contactButton.dd_customize(with: .ImageLeftPaddingTitleRightWithWholeCenter, padding: 3)
juheButton.dd_customize(with: .ImageRightPaddingTitleLeftWithWholeCenter, padding: 3)
}
override func prepareForReuse() {

View File

@@ -5,17 +5,17 @@
<testcase classname="fastlane.lanes" name="0: default_platform" time="0.000176">
<testcase classname="fastlane.lanes" name="0: default_platform" time="0.000171">
</testcase>
<testcase classname="fastlane.lanes" name="1: gym" time="98.108125">
<testcase classname="fastlane.lanes" name="1: gym" time="74.415893">
</testcase>
<testcase classname="fastlane.lanes" name="2: pgyer" time="14.400084">
<testcase classname="fastlane.lanes" name="2: pgyer" time="20.184174">
</testcase>