Commit cec4f8fa authored by lujunye's avatar lujunye

ui调整

parent d305eaab
......@@ -192,6 +192,19 @@ class YunDanXiangQingViewController: BaseViewController,UITableViewDelegate,UITa
make.height.equalTo(21)
}
return view
case 3:
let view = UIView(frame: CGRect(x: 0, y: 0, width: fullScreenWidth, height: 36))
view.backgroundColor = UIColor.white
let lbl = UILabel()
lbl.text = "增值服务"
lbl.textColor = UIColor(named: "标题字颜色")
lbl.font = UIFont.boldSystemFont(ofSize: 15)
view.addSubview(lbl)
lbl.snp.makeConstraints { (make) in
make.top.left.right.equalTo(15)
make.height.equalTo(21)
}
return view
default:
let view = UIView(frame: CGRect(x: 0, y: 0, width: fullScreenWidth, height: 10))
view.backgroundColor = UIColor.white
......@@ -212,7 +225,7 @@ class YunDanXiangQingViewController: BaseViewController,UITableViewDelegate,UITa
if section == 0 {
return 0.001
}
if section == 1 {
if section == 1 || section == 3{
return 20
}
return 10
......@@ -221,7 +234,7 @@ class YunDanXiangQingViewController: BaseViewController,UITableViewDelegate,UITa
if dataModel == nil {
return 0
}
return 3
return 4
}
func tableView(_ tableView: UITableView, numberOfRowsInSection section: Int) -> Int {
if dataModel == nil {
......@@ -231,9 +244,12 @@ class YunDanXiangQingViewController: BaseViewController,UITableViewDelegate,UITa
return 3
}
if section == 1 {
return 5
}
if section == 3 {
return 4
}
return 9
return p3Arr.count
}
func tableView(_ tableView: UITableView, heightForRowAt indexPath: IndexPath) -> CGFloat {
if indexPath.section == 0 {
......@@ -247,15 +263,16 @@ class YunDanXiangQingViewController: BaseViewController,UITableViewDelegate,UITa
if indexPath.section == 1 {
return 30
}
if indexPath.section == 2 {
if indexPath.row == 8 {
if indexPath.section == 3 {
if indexPath.row == 3 {
return UITableView.automaticDimension
}
}
return 30
}
let p2Arr = ["关联平台:","关联订单号:","运费:","运费支付方式:"]
let p3Arr = ["寄托物:","总重量:","总件数:","体积:","温控范围:","寄件方式:","派件方式:","保价(元人民币):","备注:"]
let p2Arr = ["关联平台:","关联订单号:","运单号:","运费:","运费支付方式:"]
let p3Arr = ["寄托物","寄托物包装","温类","总重量","件数","体积","寄件方式","派件方式","付款方式"]
let p4Arr = ["额外服务","声明服务","保费","备注"]
func tableView(_ tableView: UITableView, cellForRowAt indexPath: IndexPath) -> UITableViewCell {
if indexPath.section == 0 {
switch indexPath.row {
......@@ -288,6 +305,7 @@ class YunDanXiangQingViewController: BaseViewController,UITableViewDelegate,UITa
var arrStr:[String] = []
arrStr.append((dataModel?.sale_plat)!)
arrStr.append((dataModel?.order_sn)!)
arrStr.append("--运单号")
arrStr.append(String(format: "%.2f", (dataModel?.freight)!))
arrStr.append((dataModel?.fc_flag_cn)!)
var str = arrStr[indexPath.row]
......@@ -303,13 +321,29 @@ class YunDanXiangQingViewController: BaseViewController,UITableViewDelegate,UITa
cell.nameLbl.text = p3Arr[indexPath.row]
var arrStr:[String] = []
arrStr.append((dataModel?.express_item_name)!)
arrStr.append("--寄托物包装")
arrStr.append((dataModel?.tempture_num)!)
arrStr.append(String(format: "%.2f", (dataModel?.weight)!))
arrStr.append(StringByInt(number: (dataModel?.express_item_qty)!))
arrStr.append(String(format: "%.2f", (dataModel?.volume)!))
arrStr.append((dataModel?.tempture_num)!)
arrStr.append((dataModel?.home_delivery_on_cn)!)
arrStr.append((dataModel?.site_delivery_cn)!)
arrStr.append(String(format: "%.2f", (dataModel?.guarantee_value)!))
arrStr.append((dataModel?.fc_flag_cn)!)
var str = arrStr[indexPath.row]
if str == "" {
str = "-"
}
cell.contentLbl.text = str
cell.imgRight.constant = 0
cell.btmLine.isHidden = true
if indexPath.section == 3 {
let cell = tableView.dequeueReusableCell(withIdentifier: "TitleAndLblCell") as! TitleAndLblCell
cell.nameLbl.text = p4Arr[indexPath.row]
var arrStr:[String] = []
arrStr.append("--额外服务")
arrStr.append("--声明服务")
arrStr.append("--保费")
arrStr.append((dataModel?.remark)!)
var str = arrStr[indexPath.row]
if str == "" {
......@@ -320,4 +354,8 @@ class YunDanXiangQingViewController: BaseViewController,UITableViewDelegate,UITa
cell.btmLine.isHidden = true
return cell
}
return cell
}
}
......@@ -85,6 +85,9 @@ class YDLBVc: BaseViewController,UITableViewDelegate,UITableViewDataSource,UISea
if item.isKind(of: UIButton.self){
let btn = item as! UIButton
switch btn.titleLabel!.text {
case "鑫源物流":
wlgsArr.append(btn)
break
case "顺丰":
wlgsArr.append(btn)
break
......@@ -224,6 +227,19 @@ class YDLBVc: BaseViewController,UITableViewDelegate,UITableViewDataSource,UISea
// btnUISet(btn: sender)
// }
switch sender.titleLabel?.text {
case "鑫源物流":
for item in wlgsArr {
if item.titleLabel!.text == sender.titleLabel?.text{
item.isSelected = true
item.setTitleColor(UIColor.white, for: .normal)
item.backgroundColor = UIColor(named: "按钮渐变色上")
}else{
item.isSelected = false
item.setTitleColor(UIColor(named: "个人中心灰色字体"), for: .normal)
item.backgroundColor = UIColor(named: "多选按钮背景颜色")
}
}
break
case "顺丰":
for item in wlgsArr {
if item.titleLabel!.text == sender.titleLabel?.text{
......@@ -473,6 +489,7 @@ class YDLBVc: BaseViewController,UITableViewDelegate,UITableViewDataSource,UISea
var zfztStr = ""
var dyztStr = ""
var ydztStr = ""
for item in wlgsArr {
if item.isSelected {
wlgsStr = item.titleLabel?.text as! String
......
......@@ -149,7 +149,7 @@
<rect key="frame" x="0.0" y="0.0" width="375" height="431"/>
<subviews>
<view contentMode="scaleToFill" translatesAutoresizingMaskIntoConstraints="NO" id="zcv-YD-IHi">
<rect key="frame" x="0.0" y="0.0" width="375" height="915"/>
<rect key="frame" x="0.0" y="0.0" width="375" height="975"/>
<subviews>
<label opaque="NO" userInteractionEnabled="NO" contentMode="left" horizontalHuggingPriority="251" verticalHuggingPriority="251" text="时间范围" textAlignment="natural" lineBreakMode="tailTruncation" baselineAdjustment="alignBaselines" adjustsFontSizeToFit="NO" translatesAutoresizingMaskIntoConstraints="NO" id="T6r-F3-LjK">
<rect key="frame" x="15.000000000000004" y="15.000000000000002" width="53.333333333333343" height="18.666666666666671"/>
......@@ -231,14 +231,14 @@
</connections>
</button>
<view contentMode="scaleToFill" translatesAutoresizingMaskIntoConstraints="NO" id="XMu-zq-EhP">
<rect key="frame" x="15" y="415" width="360" height="1"/>
<rect key="frame" x="15" y="460" width="360" height="1"/>
<color key="backgroundColor" name="灰色分界线"/>
<constraints>
<constraint firstAttribute="height" constant="1" id="Fhx-Di-s3a"/>
</constraints>
</view>
<label opaque="NO" userInteractionEnabled="NO" contentMode="left" horizontalHuggingPriority="251" verticalHuggingPriority="251" text="订单编号" textAlignment="natural" lineBreakMode="tailTruncation" baselineAdjustment="alignBaselines" adjustsFontSizeToFit="NO" translatesAutoresizingMaskIntoConstraints="NO" id="luQ-AH-QHc">
<rect key="frame" x="15.000000000000004" y="431" width="53.333333333333343" height="18.666666666666686"/>
<rect key="frame" x="15.000000000000004" y="476" width="53.333333333333343" height="18.666666666666686"/>
<constraints>
<constraint firstAttribute="height" constant="18.5" id="iPe-S9-pr2"/>
</constraints>
......@@ -247,7 +247,7 @@
<nil key="highlightedColor"/>
</label>
<textField opaque="NO" contentMode="scaleToFill" contentHorizontalAlignment="left" contentVerticalAlignment="center" placeholder=" 请输入订单编号" textAlignment="natural" minimumFontSize="17" translatesAutoresizingMaskIntoConstraints="NO" id="mtO-oL-Tzv">
<rect key="frame" x="15" y="459.66666666666663" width="225" height="32"/>
<rect key="frame" x="15" y="504.66666666666663" width="225" height="32"/>
<constraints>
<constraint firstAttribute="width" constant="225" id="C9Q-Oy-gG8"/>
<constraint firstAttribute="height" constant="32" id="S45-Fn-NAe"/>
......@@ -268,7 +268,7 @@
</userDefinedRuntimeAttributes>
</textField>
<label opaque="NO" userInteractionEnabled="NO" contentMode="left" horizontalHuggingPriority="251" verticalHuggingPriority="251" text="所属平台" textAlignment="natural" lineBreakMode="tailTruncation" baselineAdjustment="alignBaselines" adjustsFontSizeToFit="NO" translatesAutoresizingMaskIntoConstraints="NO" id="74P-eC-sht">
<rect key="frame" x="15.000000000000004" y="511.66666666666657" width="53.333333333333343" height="18.333333333333314"/>
<rect key="frame" x="15.000000000000004" y="556.66666666666663" width="53.333333333333343" height="18.333333333333371"/>
<constraints>
<constraint firstAttribute="height" constant="18.5" id="FK3-BZ-1ji"/>
</constraints>
......@@ -277,7 +277,7 @@
<nil key="highlightedColor"/>
</label>
<textField opaque="NO" contentMode="scaleToFill" contentHorizontalAlignment="left" contentVerticalAlignment="center" placeholder=" 请输入平台" textAlignment="natural" minimumFontSize="17" translatesAutoresizingMaskIntoConstraints="NO" id="YAK-sz-pnE">
<rect key="frame" x="15" y="540" width="225" height="32"/>
<rect key="frame" x="15" y="585" width="225" height="32"/>
<constraints>
<constraint firstAttribute="width" constant="225" id="kM5-AQ-yCj"/>
<constraint firstAttribute="height" constant="32" id="njN-x6-StE"/>
......@@ -298,14 +298,14 @@
</userDefinedRuntimeAttributes>
</textField>
<view contentMode="scaleToFill" translatesAutoresizingMaskIntoConstraints="NO" id="LGt-SE-ga1">
<rect key="frame" x="15" y="587" width="360" height="1"/>
<rect key="frame" x="15" y="632" width="360" height="1"/>
<color key="backgroundColor" name="灰色分界线"/>
<constraints>
<constraint firstAttribute="height" constant="1" id="wrT-6s-ZdC"/>
</constraints>
</view>
<label opaque="NO" userInteractionEnabled="NO" contentMode="left" horizontalHuggingPriority="251" verticalHuggingPriority="251" text="支付状态" textAlignment="natural" lineBreakMode="tailTruncation" baselineAdjustment="alignBaselines" adjustsFontSizeToFit="NO" translatesAutoresizingMaskIntoConstraints="NO" id="lmi-Tf-AWO">
<rect key="frame" x="15.000000000000004" y="603" width="53.333333333333343" height="18.666666666666629"/>
<rect key="frame" x="15.000000000000004" y="648" width="53.333333333333343" height="18.666666666666629"/>
<constraints>
<constraint firstAttribute="height" constant="18.5" id="zcV-gg-ods"/>
</constraints>
......@@ -314,7 +314,7 @@
<nil key="highlightedColor"/>
</label>
<button opaque="NO" contentMode="scaleToFill" contentHorizontalAlignment="center" contentVerticalAlignment="center" buttonType="roundedRect" lineBreakMode="middleTruncation" translatesAutoresizingMaskIntoConstraints="NO" id="ThR-AD-Zdh">
<rect key="frame" x="15" y="636.66666666666663" width="73" height="30"/>
<rect key="frame" x="15" y="681.66666666666663" width="73" height="30"/>
<color key="backgroundColor" name="多选按钮背景颜色"/>
<constraints>
<constraint firstAttribute="width" constant="73" id="KY4-hm-inv"/>
......@@ -335,7 +335,7 @@
</connections>
</button>
<button opaque="NO" contentMode="scaleToFill" contentHorizontalAlignment="center" contentVerticalAlignment="center" buttonType="roundedRect" lineBreakMode="middleTruncation" translatesAutoresizingMaskIntoConstraints="NO" id="gav-SN-u6S">
<rect key="frame" x="103" y="636.66666666666663" width="73" height="30"/>
<rect key="frame" x="103" y="681.66666666666663" width="73" height="30"/>
<color key="backgroundColor" name="多选按钮背景颜色"/>
<constraints>
<constraint firstAttribute="width" constant="73" id="1Uc-uw-Iu6"/>
......@@ -356,7 +356,7 @@
</connections>
</button>
<button opaque="NO" contentMode="scaleToFill" contentHorizontalAlignment="center" contentVerticalAlignment="center" buttonType="roundedRect" lineBreakMode="middleTruncation" translatesAutoresizingMaskIntoConstraints="NO" id="iG8-ad-CAE">
<rect key="frame" x="191" y="636.66666666666663" width="73" height="30"/>
<rect key="frame" x="191" y="681.66666666666663" width="73" height="30"/>
<color key="backgroundColor" name="多选按钮背景颜色"/>
<constraints>
<constraint firstAttribute="height" constant="30" id="JZv-xa-mbk"/>
......@@ -377,14 +377,14 @@
</connections>
</button>
<view contentMode="scaleToFill" translatesAutoresizingMaskIntoConstraints="NO" id="XNI-3O-CwK">
<rect key="frame" x="15" y="681.66666666666663" width="360" height="1"/>
<rect key="frame" x="15" y="726.66666666666663" width="360" height="1"/>
<color key="backgroundColor" name="灰色分界线"/>
<constraints>
<constraint firstAttribute="height" constant="1" id="ZUw-jt-fAk"/>
</constraints>
</view>
<label opaque="NO" userInteractionEnabled="NO" contentMode="left" horizontalHuggingPriority="251" verticalHuggingPriority="251" text="打印状态" textAlignment="natural" lineBreakMode="tailTruncation" baselineAdjustment="alignBaselines" adjustsFontSizeToFit="NO" translatesAutoresizingMaskIntoConstraints="NO" id="6Eb-pX-eg0">
<rect key="frame" x="15.000000000000004" y="697.66666666666663" width="53.333333333333343" height="18.333333333333371"/>
<rect key="frame" x="15.000000000000004" y="742.66666666666663" width="53.333333333333343" height="18.333333333333371"/>
<constraints>
<constraint firstAttribute="height" constant="18.5" id="R1v-dY-IrD"/>
</constraints>
......@@ -393,7 +393,7 @@
<nil key="highlightedColor"/>
</label>
<button opaque="NO" contentMode="scaleToFill" contentHorizontalAlignment="center" contentVerticalAlignment="center" buttonType="roundedRect" lineBreakMode="middleTruncation" translatesAutoresizingMaskIntoConstraints="NO" id="BjS-uk-wr7">
<rect key="frame" x="15" y="731" width="73" height="30"/>
<rect key="frame" x="15" y="776" width="73" height="30"/>
<color key="backgroundColor" name="多选按钮背景颜色"/>
<constraints>
<constraint firstAttribute="width" constant="73" id="A07-mj-0gb"/>
......@@ -414,7 +414,7 @@
</connections>
</button>
<button opaque="NO" contentMode="scaleToFill" contentHorizontalAlignment="center" contentVerticalAlignment="center" buttonType="roundedRect" lineBreakMode="middleTruncation" translatesAutoresizingMaskIntoConstraints="NO" id="xcT-cv-hKb">
<rect key="frame" x="103" y="731" width="73" height="30"/>
<rect key="frame" x="103" y="776" width="73" height="30"/>
<color key="backgroundColor" name="多选按钮背景颜色"/>
<constraints>
<constraint firstAttribute="width" constant="73" id="EyT-04-EVc"/>
......@@ -435,7 +435,7 @@
</connections>
</button>
<button opaque="NO" contentMode="scaleToFill" contentHorizontalAlignment="center" contentVerticalAlignment="center" buttonType="roundedRect" lineBreakMode="middleTruncation" translatesAutoresizingMaskIntoConstraints="NO" id="qCR-5z-Ioa">
<rect key="frame" x="191" y="731" width="73" height="30"/>
<rect key="frame" x="191" y="776" width="73" height="30"/>
<color key="backgroundColor" name="多选按钮背景颜色"/>
<constraints>
<constraint firstAttribute="width" constant="73" id="9H6-yF-PbY"/>
......@@ -456,14 +456,14 @@
</connections>
</button>
<view contentMode="scaleToFill" translatesAutoresizingMaskIntoConstraints="NO" id="wOP-Ki-lQ5">
<rect key="frame" x="15" y="776" width="360" height="1"/>
<rect key="frame" x="15" y="821" width="360" height="1"/>
<color key="backgroundColor" name="灰色分界线"/>
<constraints>
<constraint firstAttribute="height" constant="1" id="GQ6-Se-Rlx"/>
</constraints>
</view>
<label opaque="NO" userInteractionEnabled="NO" contentMode="left" horizontalHuggingPriority="251" verticalHuggingPriority="251" text="运单状态" textAlignment="natural" lineBreakMode="tailTruncation" baselineAdjustment="alignBaselines" adjustsFontSizeToFit="NO" translatesAutoresizingMaskIntoConstraints="NO" id="IOi-sC-dEe">
<rect key="frame" x="15.000000000000004" y="792" width="53.333333333333343" height="18.666666666666629"/>
<rect key="frame" x="15.000000000000004" y="837" width="53.333333333333343" height="18.666666666666629"/>
<constraints>
<constraint firstAttribute="height" constant="18.5" id="lSN-Nr-h4A"/>
</constraints>
......@@ -472,7 +472,7 @@
<nil key="highlightedColor"/>
</label>
<button opaque="NO" tag="99" contentMode="scaleToFill" contentHorizontalAlignment="center" contentVerticalAlignment="center" buttonType="roundedRect" lineBreakMode="middleTruncation" translatesAutoresizingMaskIntoConstraints="NO" id="lQu-wS-luP">
<rect key="frame" x="15" y="825.66666666666663" width="73" height="30"/>
<rect key="frame" x="15" y="870.66666666666663" width="73" height="30"/>
<color key="backgroundColor" name="多选按钮背景颜色"/>
<constraints>
<constraint firstAttribute="height" constant="30" id="2hL-lo-6o0"/>
......@@ -493,7 +493,7 @@
</connections>
</button>
<button opaque="NO" contentMode="scaleToFill" contentHorizontalAlignment="center" contentVerticalAlignment="center" buttonType="roundedRect" lineBreakMode="middleTruncation" translatesAutoresizingMaskIntoConstraints="NO" id="Sos-ke-wWW">
<rect key="frame" x="103" y="825.66666666666663" width="73" height="30"/>
<rect key="frame" x="103" y="870.66666666666663" width="73" height="30"/>
<color key="backgroundColor" name="多选按钮背景颜色"/>
<constraints>
<constraint firstAttribute="height" constant="30" id="Pnz-JU-yUZ"/>
......@@ -514,7 +514,7 @@
</connections>
</button>
<button opaque="NO" contentMode="scaleToFill" contentHorizontalAlignment="center" contentVerticalAlignment="center" buttonType="roundedRect" lineBreakMode="middleTruncation" translatesAutoresizingMaskIntoConstraints="NO" id="KjV-Pm-Xox">
<rect key="frame" x="191" y="825.66666666666663" width="73" height="30"/>
<rect key="frame" x="191" y="870.66666666666663" width="73" height="30"/>
<color key="backgroundColor" name="多选按钮背景颜色"/>
<constraints>
<constraint firstAttribute="width" constant="73" id="jHq-p3-rEE"/>
......@@ -535,7 +535,7 @@
</connections>
</button>
<button opaque="NO" contentMode="scaleToFill" contentHorizontalAlignment="center" contentVerticalAlignment="center" buttonType="roundedRect" lineBreakMode="middleTruncation" translatesAutoresizingMaskIntoConstraints="NO" id="KmP-UE-Z2m">
<rect key="frame" x="103" y="870.66666666666663" width="73" height="30"/>
<rect key="frame" x="103" y="915.66666666666663" width="73" height="30"/>
<color key="backgroundColor" name="多选按钮背景颜色"/>
<constraints>
<constraint firstAttribute="width" constant="73" id="ase-Nb-vzS"/>
......@@ -556,7 +556,7 @@
</connections>
</button>
<button opaque="NO" contentMode="scaleToFill" contentHorizontalAlignment="center" contentVerticalAlignment="center" buttonType="roundedRect" lineBreakMode="middleTruncation" translatesAutoresizingMaskIntoConstraints="NO" id="eBn-ZQ-kRE">
<rect key="frame" x="15" y="870.66666666666663" width="73" height="30"/>
<rect key="frame" x="15" y="915.66666666666663" width="73" height="30"/>
<color key="backgroundColor" name="多选按钮背景颜色"/>
<constraints>
<constraint firstAttribute="height" constant="30" id="5wu-SR-oNw"/>
......@@ -649,7 +649,7 @@
</connections>
</button>
<button opaque="NO" contentMode="scaleToFill" contentHorizontalAlignment="center" contentVerticalAlignment="center" buttonType="roundedRect" lineBreakMode="middleTruncation" translatesAutoresizingMaskIntoConstraints="NO" id="9C6-aG-nkC">
<rect key="frame" x="279" y="825.66666666666663" width="73" height="30"/>
<rect key="frame" x="279" y="870.66666666666663" width="73" height="30"/>
<color key="backgroundColor" name="多选按钮背景颜色"/>
<constraints>
<constraint firstAttribute="width" constant="73" id="F4D-xl-Skx"/>
......@@ -676,6 +676,30 @@
<constraint firstAttribute="height" constant="235" id="poR-Of-Vq5"/>
</constraints>
</view>
<button opaque="NO" contentMode="scaleToFill" contentHorizontalAlignment="center" contentVerticalAlignment="center" buttonType="roundedRect" lineBreakMode="middleTruncation" translatesAutoresizingMaskIntoConstraints="NO" id="sQ8-Ex-yU3">
<rect key="frame" x="15" y="415" width="73" height="30"/>
<color key="backgroundColor" name="多选按钮背景颜色"/>
<constraints>
<constraint firstAttribute="height" constant="30" id="dRB-XE-4Qj"/>
<constraint firstAttribute="width" constant="73" id="jEj-YW-fpU"/>
</constraints>
<fontDescription key="fontDescription" type="system" pointSize="13"/>
<color key="tintColor" white="0.0" alpha="0.0" colorSpace="custom" customColorSpace="genericGamma22GrayColorSpace"/>
<state key="normal" title="鑫源物流">
<color key="titleColor" name="个人中心灰色字体"/>
</state>
<state key="selected">
<color key="titleColor" white="1" alpha="1" colorSpace="custom" customColorSpace="genericGamma22GrayColorSpace"/>
</state>
<userDefinedRuntimeAttributes>
<userDefinedRuntimeAttribute type="number" keyPath="cornerRadius">
<real key="value" value="3"/>
</userDefinedRuntimeAttribute>
</userDefinedRuntimeAttributes>
<connections>
<action selector="btnClick:" destination="-1" eventType="touchUpInside" id="W7B-iV-Ahq"/>
</connections>
</button>
</subviews>
<color key="backgroundColor" systemColor="systemBackgroundColor" cocoaTouchSystemColor="whiteColor"/>
<constraints>
......@@ -693,7 +717,9 @@
<constraint firstItem="jLq-pi-MtE" firstAttribute="leading" secondItem="5af-3I-E0X" secondAttribute="trailing" constant="13" id="DHy-Cg-NaX"/>
<constraint firstItem="Sos-ke-wWW" firstAttribute="centerY" secondItem="lQu-wS-luP" secondAttribute="centerY" id="FgN-H6-6e6"/>
<constraint firstItem="6Eb-pX-eg0" firstAttribute="top" secondItem="XNI-3O-CwK" secondAttribute="bottom" constant="15" id="GQc-eu-3Uw"/>
<constraint firstItem="sQ8-Ex-yU3" firstAttribute="top" secondItem="5af-3I-E0X" secondAttribute="bottom" constant="15" id="GaL-Bx-9YG"/>
<constraint firstItem="gav-SN-u6S" firstAttribute="leading" secondItem="ThR-AD-Zdh" secondAttribute="trailing" constant="15" id="Gde-vo-ysQ"/>
<constraint firstItem="sQ8-Ex-yU3" firstAttribute="centerX" secondItem="5af-3I-E0X" secondAttribute="centerX" id="IZH-0E-nH7"/>
<constraint firstItem="ThR-AD-Zdh" firstAttribute="leading" secondItem="zcv-YD-IHi" secondAttribute="leading" constant="15" id="JcZ-1S-qST"/>
<constraint firstItem="xcT-cv-hKb" firstAttribute="centerY" secondItem="BjS-uk-wr7" secondAttribute="centerY" id="LFN-cJ-I18"/>
<constraint firstItem="BjS-uk-wr7" firstAttribute="top" secondItem="6Eb-pX-eg0" secondAttribute="bottom" constant="15" id="Oiu-1l-PaV"/>
......@@ -736,14 +762,14 @@
<constraint firstAttribute="trailing" secondItem="XNI-3O-CwK" secondAttribute="trailing" id="ldg-j0-0hd"/>
<constraint firstItem="5af-3I-E0X" firstAttribute="leading" secondItem="zcv-YD-IHi" secondAttribute="leading" constant="15" id="lhz-Zm-HEd"/>
<constraint firstItem="XNI-3O-CwK" firstAttribute="leading" secondItem="zcv-YD-IHi" secondAttribute="leading" constant="15" id="m5I-f5-XHd"/>
<constraint firstAttribute="height" constant="915" id="mIQ-xh-FRR"/>
<constraint firstAttribute="height" constant="975" id="mIQ-xh-FRR"/>
<constraint firstItem="mtO-oL-Tzv" firstAttribute="top" secondItem="luQ-AH-QHc" secondAttribute="bottom" constant="10" id="obd-w1-4dP"/>
<constraint firstAttribute="trailing" secondItem="LGt-SE-ga1" secondAttribute="trailing" id="p6k-XD-zaD"/>
<constraint firstItem="eh5-A9-9oM" firstAttribute="leading" secondItem="jLq-pi-MtE" secondAttribute="trailing" constant="13" id="pbd-hJ-TZy"/>
<constraint firstItem="x64-TX-dLy" firstAttribute="top" secondItem="gfG-Nj-pdp" secondAttribute="bottom" constant="15" id="q0u-RA-N5l"/>
<constraint firstItem="6Eb-pX-eg0" firstAttribute="leading" secondItem="zcv-YD-IHi" secondAttribute="leading" constant="15" id="q86-p4-qZu"/>
<constraint firstItem="wOP-Ki-lQ5" firstAttribute="leading" secondItem="zcv-YD-IHi" secondAttribute="leading" constant="15" id="rfd-4O-fZs"/>
<constraint firstItem="XMu-zq-EhP" firstAttribute="top" secondItem="5af-3I-E0X" secondAttribute="bottom" constant="15" id="s7c-NU-JcE"/>
<constraint firstItem="XMu-zq-EhP" firstAttribute="top" secondItem="sQ8-Ex-yU3" secondAttribute="bottom" constant="15" id="s7c-NU-JcE"/>
<constraint firstItem="lmi-Tf-AWO" firstAttribute="leading" secondItem="zcv-YD-IHi" secondAttribute="leading" constant="15" id="sh8-AP-Fvl"/>
<constraint firstItem="LGt-SE-ga1" firstAttribute="top" secondItem="YAK-sz-pnE" secondAttribute="bottom" constant="15" id="tlb-NK-qde"/>
<constraint firstItem="eih-w3-GJh" firstAttribute="leading" secondItem="zcv-YD-IHi" secondAttribute="leading" id="vBp-rf-lMO"/>
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment