Commit 9e4c6c37 authored by lujunye's avatar lujunye

运单列表样式完成

parent 8ad92bd4
...@@ -505,7 +505,8 @@ class WorkCViewController: BaseViewController, UITableViewDelegate, UITableViewD ...@@ -505,7 +505,8 @@ class WorkCViewController: BaseViewController, UITableViewDelegate, UITableViewD
HUD.flash(.label("敬请期待"),delay: 1.2) HUD.flash(.label("敬请期待"),delay: 1.2)
return return
case 88: //运单列表 case 88: //运单列表
HUD.flash(.label("敬请期待"),delay: 1.2) let vc = YDLBVc()
self.navigationController?.pushViewController(vc, animated: true)
return return
case 89: //物流公司列表 case 89: //物流公司列表
HUD.flash(.label("敬请期待"),delay: 1.2) HUD.flash(.label("敬请期待"),delay: 1.2)
......
...@@ -8,16 +8,25 @@ ...@@ -8,16 +8,25 @@
import UIKit import UIKit
class YDLBVc: BaseViewController,UITableViewDelegate,UITableViewDataSource,UISearchBarDelegate,SearchBarViewDelegate{ class YDLBVc: BaseViewController,UITableViewDelegate,UITableViewDataSource,UISearchBarDelegate,SearchBarViewDelegate,UITextFieldDelegate{
@IBOutlet weak var contentView: UIView!
@IBAction func listControlAction(_ sender: Any) { @IBAction func listControlAction(_ sender: Any) {
print("调用筛选列表") print("调用筛选列表")
preView.isHidden = !preView.isHidden
} }
@IBOutlet weak var preView: UIView!
@IBOutlet weak var listView: UITableView! @IBOutlet weak var listView: UITableView!
@IBOutlet weak var searchVBg: UIView! @IBOutlet weak var searchVBg: UIView!
@IBOutlet weak var topView: UIView! @IBOutlet weak var topView: UIView!
@IBOutlet weak var timeTF: UITextField!
@IBOutlet weak var standerTF: UITextField!
@IBOutlet weak var orderNumTF: UITextField!
var searchV : SearchBarView? = nil var searchV : SearchBarView? = nil
var datas:Array<Any> = [1,2] var datas:Array<Any> = [1,2]
...@@ -25,6 +34,13 @@ class YDLBVc: BaseViewController,UITableViewDelegate,UITableViewDataSource,UISea ...@@ -25,6 +34,13 @@ class YDLBVc: BaseViewController,UITableViewDelegate,UITableViewDataSource,UISea
override func viewDidLoad() { override func viewDidLoad() {
super.viewDidLoad() super.viewDidLoad()
orderNumTF.tag = 1
orderNumTF.delegate = self
standerTF.delegate = self
navbar.title = "运单列表" navbar.title = "运单列表"
self.view.addSubview(navbar) self.view.addSubview(navbar)
SetTopFrame(view: topView, height: 51) SetTopFrame(view: topView, height: 51)
...@@ -49,6 +65,85 @@ class YDLBVc: BaseViewController,UITableViewDelegate,UITableViewDataSource,UISea ...@@ -49,6 +65,85 @@ class YDLBVc: BaseViewController,UITableViewDelegate,UITableViewDataSource,UISea
headerMJ.setRefreshingTarget(self, refreshingAction: #selector(loadData)) headerMJ.setRefreshingTarget(self, refreshingAction: #selector(loadData))
self.listView!.mj_header = headerMJ self.listView!.mj_header = headerMJ
self.listView.mj_header?.beginRefreshing() self.listView.mj_header?.beginRefreshing()
}
func btnUISet(btn:UIButton){
btn.isSelected = !btn.isSelected
if btn.isSelected {
btn.setTitleColor(UIColor.white, for: .normal)
btn.backgroundColor = UIColor(named: "按钮背景颜色")
}else{
btn.setTitleColor(UIColor(named: "个人中心灰色字体"), for: .normal)
btn.backgroundColor = UIColor(named: "多选按钮背景颜色")
}
}
@IBAction func btnClick(_ sender: UIButton) {
if sender.titleLabel!.text != "重置" && sender.titleLabel!.text != "确定"{
btnUISet(btn: sender)
}
switch sender.titleLabel?.text {
case "京东":
break
case "已付款":
break
case "未付款":
break
case "已退款":
break
case "全部":
if sender.tag == 99 {
//运单状态
}else{
//打印状态
}
break
case "已打印":
break
case "未打印":
break
case "下单完成":
break
case "揽收成功":
break
case "运输中":
break
case "已签收":
break
case "已取消":
break
case "重置":
print("12")
contentView.subviews.forEach { (view) in
view.subviews.forEach { (item) in
if item.isKind(of: UITextField.classForCoder()){
print("1")
let tf = item as! UITextField
tf.text = ""
}
if item.isKind(of: UIButton.classForCoder()){
print("2")
let btn = item as! UIButton
btn.isSelected = false
if btn.tag != 996 {
btn.setTitleColor(UIColor(named: "个人中心灰色字体"), for: .normal)
btn.backgroundColor = UIColor(named: "多选按钮背景颜色")
}
}
}
}
break
case "确定":
preView.isHidden = true
listView.mj_header?.beginRefreshing()
break
default:
break
}
}
@IBAction func timeSelectAction(_ sender: Any) {
print("选择时间")
} }
//MARK: - 加载数据 //MARK: - 加载数据
@objc func loadData(){ @objc func loadData(){
...@@ -60,6 +155,7 @@ class YDLBVc: BaseViewController,UITableViewDelegate,UITableViewDataSource,UISea ...@@ -60,6 +155,7 @@ class YDLBVc: BaseViewController,UITableViewDelegate,UITableViewDataSource,UISea
var blackBtnView:UIButton! = nil var blackBtnView:UIButton! = nil
func searchBarShouldBeginEditing(_ searchBar: UISearchBar) -> Bool { func searchBarShouldBeginEditing(_ searchBar: UISearchBar) -> Bool {
print("调起搜索后添加个蒙版本") print("调起搜索后添加个蒙版本")
preView.isHidden = true
blackBtnView = UIButton () blackBtnView = UIButton ()
blackBtnView.backgroundColor = UIColor.init(named: "提示视图背景色") blackBtnView.backgroundColor = UIColor.init(named: "提示视图背景色")
view.addSubview(blackBtnView) view.addSubview(blackBtnView)
...@@ -116,6 +212,19 @@ class YDLBVc: BaseViewController,UITableViewDelegate,UITableViewDataSource,UISea ...@@ -116,6 +212,19 @@ class YDLBVc: BaseViewController,UITableViewDelegate,UITableViewDataSource,UISea
cell.tag = indexPath.row cell.tag = indexPath.row
return cell return cell
} }
func textFieldDidBeginEditing(_ textField: UITextField) {
if textField.tag == 1 {
orderNumTF.text = " "
}else{
standerTF.text = " "
}
}
func textFieldDidEndEditing(_ textField: UITextField) {
if textField.tag == 1 {
orderNumTF.text = textField.text!
}else{
standerTF.text = textField.text!
}
}
} }
...@@ -11,8 +11,13 @@ ...@@ -11,8 +11,13 @@
<objects> <objects>
<placeholder placeholderIdentifier="IBFilesOwner" id="-1" userLabel="File's Owner" customClass="YDLBVc" customModule="TestClass" customModuleProvider="target"> <placeholder placeholderIdentifier="IBFilesOwner" id="-1" userLabel="File's Owner" customClass="YDLBVc" customModule="TestClass" customModuleProvider="target">
<connections> <connections>
<outlet property="contentView" destination="W2C-Cl-eVo" id="5eX-zZ-QUh"/>
<outlet property="listView" destination="E9d-mv-UN9" id="6sr-ao-Kjp"/> <outlet property="listView" destination="E9d-mv-UN9" id="6sr-ao-Kjp"/>
<outlet property="orderNumTF" destination="jUf-ph-kpF" id="qeF-Ev-STy"/>
<outlet property="preView" destination="CEM-Jb-9Jh" id="TKN-ud-88R"/>
<outlet property="searchVBg" destination="7gn-wh-Lhk" id="wOG-0w-jdg"/> <outlet property="searchVBg" destination="7gn-wh-Lhk" id="wOG-0w-jdg"/>
<outlet property="standerTF" destination="9y1-NM-fj7" id="31b-gd-Zgk"/>
<outlet property="timeTF" destination="K5W-TZ-mgg" id="JCv-F2-bh2"/>
<outlet property="topView" destination="5Ue-mR-h4b" id="IVg-qY-dGD"/> <outlet property="topView" destination="5Ue-mR-h4b" id="IVg-qY-dGD"/>
<outlet property="view" destination="i5M-Pr-FkT" id="sfx-zR-JGt"/> <outlet property="view" destination="i5M-Pr-FkT" id="sfx-zR-JGt"/>
</connections> </connections>
...@@ -60,7 +65,7 @@ ...@@ -60,7 +65,7 @@
<constraint firstAttribute="trailing" secondItem="Jo5-vu-2Oa" secondAttribute="trailing" constant="15" id="yhQ-Oi-syV"/> <constraint firstAttribute="trailing" secondItem="Jo5-vu-2Oa" secondAttribute="trailing" constant="15" id="yhQ-Oi-syV"/>
</constraints> </constraints>
</view> </view>
<tableView clipsSubviews="YES" contentMode="scaleToFill" alwaysBounceVertical="YES" style="grouped" separatorStyle="default" rowHeight="-1" estimatedRowHeight="-1" sectionHeaderHeight="18" sectionFooterHeight="18" translatesAutoresizingMaskIntoConstraints="NO" id="E9d-mv-UN9"> <tableView clipsSubviews="YES" contentMode="scaleToFill" alwaysBounceVertical="YES" style="plain" separatorStyle="default" rowHeight="-1" estimatedRowHeight="-1" sectionHeaderHeight="28" sectionFooterHeight="28" translatesAutoresizingMaskIntoConstraints="NO" id="E9d-mv-UN9">
<rect key="frame" x="0.0" y="51" width="375" height="616"/> <rect key="frame" x="0.0" y="51" width="375" height="616"/>
<color key="backgroundColor" name="app底色"/> <color key="backgroundColor" name="app底色"/>
<connections> <connections>
...@@ -68,7 +73,7 @@ ...@@ -68,7 +73,7 @@
<outlet property="delegate" destination="-1" id="sm5-Ie-Zxr"/> <outlet property="delegate" destination="-1" id="sm5-Ie-Zxr"/>
</connections> </connections>
</tableView> </tableView>
<view contentMode="scaleToFill" translatesAutoresizingMaskIntoConstraints="NO" id="CEM-Jb-9Jh"> <view hidden="YES" contentMode="scaleToFill" translatesAutoresizingMaskIntoConstraints="NO" id="CEM-Jb-9Jh">
<rect key="frame" x="0.0" y="51" width="375" height="616"/> <rect key="frame" x="0.0" y="51" width="375" height="616"/>
<subviews> <subviews>
<view contentMode="scaleToFill" translatesAutoresizingMaskIntoConstraints="NO" id="iS3-Sw-trX"> <view contentMode="scaleToFill" translatesAutoresizingMaskIntoConstraints="NO" id="iS3-Sw-trX">
...@@ -94,6 +99,9 @@ ...@@ -94,6 +99,9 @@
<state key="normal" title="重置"> <state key="normal" title="重置">
<color key="titleColor" name="个人中心灰色字体"/> <color key="titleColor" name="个人中心灰色字体"/>
</state> </state>
<connections>
<action selector="btnClick:" destination="-1" eventType="touchUpInside" id="mU3-Cd-rqx"/>
</connections>
</button> </button>
<button opaque="NO" contentMode="scaleToFill" contentHorizontalAlignment="center" contentVerticalAlignment="center" buttonType="roundedRect" lineBreakMode="middleTruncation" translatesAutoresizingMaskIntoConstraints="NO" id="slu-gC-kmf"> <button opaque="NO" contentMode="scaleToFill" contentHorizontalAlignment="center" contentVerticalAlignment="center" buttonType="roundedRect" lineBreakMode="middleTruncation" translatesAutoresizingMaskIntoConstraints="NO" id="slu-gC-kmf">
<rect key="frame" x="188" y="1" width="187" height="48"/> <rect key="frame" x="188" y="1" width="187" height="48"/>
...@@ -101,7 +109,17 @@ ...@@ -101,7 +109,17 @@
<state key="normal" title="确定"> <state key="normal" title="确定">
<color key="titleColor" name="蓝色字体颜色"/> <color key="titleColor" name="蓝色字体颜色"/>
</state> </state>
<connections>
<action selector="btnClick:" destination="-1" eventType="touchUpInside" id="tBU-cs-W95"/>
</connections>
</button> </button>
<view contentMode="scaleToFill" translatesAutoresizingMaskIntoConstraints="NO" id="X7r-4s-PoU">
<rect key="frame" x="0.0" y="48" width="375" height="1"/>
<color key="backgroundColor" name="灰色分界线"/>
<constraints>
<constraint firstAttribute="height" constant="1" id="5yg-lu-mSo"/>
</constraints>
</view>
</subviews> </subviews>
<color key="backgroundColor" white="1" alpha="1" colorSpace="custom" customColorSpace="genericGamma22GrayColorSpace"/> <color key="backgroundColor" white="1" alpha="1" colorSpace="custom" customColorSpace="genericGamma22GrayColorSpace"/>
<constraints> <constraints>
...@@ -116,10 +134,13 @@ ...@@ -116,10 +134,13 @@
<constraint firstAttribute="trailing" secondItem="slu-gC-kmf" secondAttribute="trailing" id="d7r-cH-vbc"/> <constraint firstAttribute="trailing" secondItem="slu-gC-kmf" secondAttribute="trailing" id="d7r-cH-vbc"/>
<constraint firstAttribute="bottom" secondItem="slu-gC-kmf" secondAttribute="bottom" id="fPq-6d-hOQ"/> <constraint firstAttribute="bottom" secondItem="slu-gC-kmf" secondAttribute="bottom" id="fPq-6d-hOQ"/>
<constraint firstItem="130-dh-4NE" firstAttribute="top" secondItem="iS3-Sw-trX" secondAttribute="top" id="fvL-Vk-QXp"/> <constraint firstItem="130-dh-4NE" firstAttribute="top" secondItem="iS3-Sw-trX" secondAttribute="top" id="fvL-Vk-QXp"/>
<constraint firstItem="X7r-4s-PoU" firstAttribute="leading" secondItem="iS3-Sw-trX" secondAttribute="leading" id="jAg-vB-JxB"/>
<constraint firstItem="130-dh-4NE" firstAttribute="leading" secondItem="dkc-Ut-d22" secondAttribute="trailing" id="k8x-J5-YkF"/> <constraint firstItem="130-dh-4NE" firstAttribute="leading" secondItem="dkc-Ut-d22" secondAttribute="trailing" id="k8x-J5-YkF"/>
<constraint firstItem="130-dh-4NE" firstAttribute="centerX" secondItem="iS3-Sw-trX" secondAttribute="centerX" id="l4E-pv-B6O"/> <constraint firstItem="130-dh-4NE" firstAttribute="centerX" secondItem="iS3-Sw-trX" secondAttribute="centerX" id="l4E-pv-B6O"/>
<constraint firstAttribute="bottom" secondItem="dkc-Ut-d22" secondAttribute="bottom" id="pZf-mV-NYr"/> <constraint firstAttribute="bottom" secondItem="dkc-Ut-d22" secondAttribute="bottom" id="pZf-mV-NYr"/>
<constraint firstAttribute="trailing" secondItem="X7r-4s-PoU" secondAttribute="trailing" id="tGw-sX-LMf"/>
<constraint firstItem="wdS-RW-pzl" firstAttribute="top" secondItem="iS3-Sw-trX" secondAttribute="top" id="tRm-iH-gNd"/> <constraint firstItem="wdS-RW-pzl" firstAttribute="top" secondItem="iS3-Sw-trX" secondAttribute="top" id="tRm-iH-gNd"/>
<constraint firstAttribute="bottom" secondItem="X7r-4s-PoU" secondAttribute="bottom" id="yha-HO-D6O"/>
</constraints> </constraints>
</view> </view>
<scrollView clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="scaleToFill" translatesAutoresizingMaskIntoConstraints="NO" id="Pkb-jl-vaH"> <scrollView clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="scaleToFill" translatesAutoresizingMaskIntoConstraints="NO" id="Pkb-jl-vaH">
...@@ -147,7 +168,7 @@ ...@@ -147,7 +168,7 @@
<color key="textColor" name="标题字颜色"/> <color key="textColor" name="标题字颜色"/>
<nil key="highlightedColor"/> <nil key="highlightedColor"/>
</label> </label>
<textField opaque="NO" contentMode="scaleToFill" contentHorizontalAlignment="left" contentVerticalAlignment="center" placeholder="请选择时间范围" textAlignment="natural" minimumFontSize="17" translatesAutoresizingMaskIntoConstraints="NO" id="K5W-TZ-mgg"> <textField opaque="NO" contentMode="scaleToFill" contentHorizontalAlignment="left" contentVerticalAlignment="center" placeholder=" 请选择时间范围" minimumFontSize="17" translatesAutoresizingMaskIntoConstraints="NO" id="K5W-TZ-mgg">
<rect key="frame" x="15" y="43.5" width="225" height="32"/> <rect key="frame" x="15" y="43.5" width="225" height="32"/>
<constraints> <constraints>
<constraint firstAttribute="height" constant="32" id="blt-Dj-6Nb"/> <constraint firstAttribute="height" constant="32" id="blt-Dj-6Nb"/>
...@@ -168,8 +189,11 @@ ...@@ -168,8 +189,11 @@
</userDefinedRuntimeAttribute> </userDefinedRuntimeAttribute>
</userDefinedRuntimeAttributes> </userDefinedRuntimeAttributes>
</textField> </textField>
<button opaque="NO" contentMode="scaleToFill" contentHorizontalAlignment="center" contentVerticalAlignment="center" buttonType="roundedRect" lineBreakMode="middleTruncation" translatesAutoresizingMaskIntoConstraints="NO" id="vKd-O6-RWp"> <button opaque="NO" tag="996" contentMode="scaleToFill" contentHorizontalAlignment="center" contentVerticalAlignment="center" buttonType="roundedRect" lineBreakMode="middleTruncation" translatesAutoresizingMaskIntoConstraints="NO" id="vKd-O6-RWp">
<rect key="frame" x="0.0" y="43.5" width="375" height="36"/> <rect key="frame" x="0.0" y="43.5" width="375" height="36"/>
<connections>
<action selector="timeSelectAction:" destination="-1" eventType="touchUpInside" id="kyn-Ep-ojN"/>
</connections>
</button> </button>
</subviews> </subviews>
<color key="backgroundColor" white="1" alpha="1" colorSpace="custom" customColorSpace="genericGamma22GrayColorSpace"/> <color key="backgroundColor" white="1" alpha="1" colorSpace="custom" customColorSpace="genericGamma22GrayColorSpace"/>
...@@ -208,6 +232,7 @@ ...@@ -208,6 +232,7 @@
<constraint firstAttribute="height" constant="30" id="fJv-uj-Gob"/> <constraint firstAttribute="height" constant="30" id="fJv-uj-Gob"/>
</constraints> </constraints>
<fontDescription key="fontDescription" type="system" pointSize="13"/> <fontDescription key="fontDescription" type="system" pointSize="13"/>
<color key="tintColor" white="0.0" alpha="0.0" colorSpace="custom" customColorSpace="genericGamma22GrayColorSpace"/>
<state key="normal" title="京东"> <state key="normal" title="京东">
<color key="titleColor" name="个人中心灰色字体"/> <color key="titleColor" name="个人中心灰色字体"/>
</state> </state>
...@@ -216,6 +241,9 @@ ...@@ -216,6 +241,9 @@
<real key="value" value="3"/> <real key="value" value="3"/>
</userDefinedRuntimeAttribute> </userDefinedRuntimeAttribute>
</userDefinedRuntimeAttributes> </userDefinedRuntimeAttributes>
<connections>
<action selector="btnClick:" destination="-1" eventType="touchUpInside" id="JTT-49-IZR"/>
</connections>
</button> </button>
<view contentMode="scaleToFill" translatesAutoresizingMaskIntoConstraints="NO" id="ge3-qI-pMn"> <view contentMode="scaleToFill" translatesAutoresizingMaskIntoConstraints="NO" id="ge3-qI-pMn">
<rect key="frame" x="15" y="87.5" width="360" height="1"/> <rect key="frame" x="15" y="87.5" width="360" height="1"/>
...@@ -256,7 +284,7 @@ ...@@ -256,7 +284,7 @@
<color key="textColor" name="标题字颜色"/> <color key="textColor" name="标题字颜色"/>
<nil key="highlightedColor"/> <nil key="highlightedColor"/>
</label> </label>
<textField opaque="NO" contentMode="scaleToFill" contentHorizontalAlignment="left" contentVerticalAlignment="center" placeholder="请输入订单编号" textAlignment="justified" minimumFontSize="17" translatesAutoresizingMaskIntoConstraints="NO" id="jUf-ph-kpF"> <textField opaque="NO" contentMode="scaleToFill" contentHorizontalAlignment="left" contentVerticalAlignment="center" placeholder=" 请输入订单编号" textAlignment="justified" minimumFontSize="17" translatesAutoresizingMaskIntoConstraints="NO" id="jUf-ph-kpF">
<rect key="frame" x="15" y="43.5" width="225" height="32"/> <rect key="frame" x="15" y="43.5" width="225" height="32"/>
<constraints> <constraints>
<constraint firstAttribute="width" constant="225" id="HzO-CH-Tk6"/> <constraint firstAttribute="width" constant="225" id="HzO-CH-Tk6"/>
...@@ -286,7 +314,7 @@ ...@@ -286,7 +314,7 @@
<color key="textColor" name="标题字颜色"/> <color key="textColor" name="标题字颜色"/>
<nil key="highlightedColor"/> <nil key="highlightedColor"/>
</label> </label>
<textField opaque="NO" contentMode="scaleToFill" contentHorizontalAlignment="left" contentVerticalAlignment="center" placeholder="请输入平台" textAlignment="natural" minimumFontSize="17" translatesAutoresizingMaskIntoConstraints="NO" id="9y1-NM-fj7"> <textField opaque="NO" contentMode="scaleToFill" contentHorizontalAlignment="left" contentVerticalAlignment="center" placeholder=" 请输入平台" textAlignment="natural" minimumFontSize="17" translatesAutoresizingMaskIntoConstraints="NO" id="9y1-NM-fj7">
<rect key="frame" x="15" y="124" width="225" height="32"/> <rect key="frame" x="15" y="124" width="225" height="32"/>
<constraints> <constraints>
<constraint firstAttribute="height" constant="32" id="Y98-t1-Pvi"/> <constraint firstAttribute="height" constant="32" id="Y98-t1-Pvi"/>
...@@ -351,6 +379,7 @@ ...@@ -351,6 +379,7 @@
<constraint firstAttribute="width" constant="73" id="sD5-7z-0sZ"/> <constraint firstAttribute="width" constant="73" id="sD5-7z-0sZ"/>
</constraints> </constraints>
<fontDescription key="fontDescription" type="system" pointSize="13"/> <fontDescription key="fontDescription" type="system" pointSize="13"/>
<color key="tintColor" white="0.0" alpha="0.0" colorSpace="custom" customColorSpace="genericGamma22GrayColorSpace"/>
<state key="normal" title="已付款"> <state key="normal" title="已付款">
<color key="titleColor" name="个人中心灰色字体"/> <color key="titleColor" name="个人中心灰色字体"/>
</state> </state>
...@@ -359,6 +388,9 @@ ...@@ -359,6 +388,9 @@
<real key="value" value="3"/> <real key="value" value="3"/>
</userDefinedRuntimeAttribute> </userDefinedRuntimeAttribute>
</userDefinedRuntimeAttributes> </userDefinedRuntimeAttributes>
<connections>
<action selector="btnClick:" destination="-1" eventType="touchUpInside" id="JHE-sJ-phL"/>
</connections>
</button> </button>
<button opaque="NO" contentMode="scaleToFill" contentHorizontalAlignment="center" contentVerticalAlignment="center" buttonType="roundedRect" lineBreakMode="middleTruncation" translatesAutoresizingMaskIntoConstraints="NO" id="uCG-xI-4GY"> <button opaque="NO" contentMode="scaleToFill" contentHorizontalAlignment="center" contentVerticalAlignment="center" buttonType="roundedRect" lineBreakMode="middleTruncation" translatesAutoresizingMaskIntoConstraints="NO" id="uCG-xI-4GY">
<rect key="frame" x="103" y="43.5" width="73" height="30"/> <rect key="frame" x="103" y="43.5" width="73" height="30"/>
...@@ -368,6 +400,7 @@ ...@@ -368,6 +400,7 @@
<constraint firstAttribute="width" constant="73" id="soq-eY-z2O"/> <constraint firstAttribute="width" constant="73" id="soq-eY-z2O"/>
</constraints> </constraints>
<fontDescription key="fontDescription" type="system" pointSize="13"/> <fontDescription key="fontDescription" type="system" pointSize="13"/>
<color key="tintColor" white="0.0" alpha="0.0" colorSpace="custom" customColorSpace="genericGamma22GrayColorSpace"/>
<state key="normal" title="未付款"> <state key="normal" title="未付款">
<color key="titleColor" name="个人中心灰色字体"/> <color key="titleColor" name="个人中心灰色字体"/>
</state> </state>
...@@ -376,6 +409,9 @@ ...@@ -376,6 +409,9 @@
<real key="value" value="3"/> <real key="value" value="3"/>
</userDefinedRuntimeAttribute> </userDefinedRuntimeAttribute>
</userDefinedRuntimeAttributes> </userDefinedRuntimeAttributes>
<connections>
<action selector="btnClick:" destination="-1" eventType="touchUpInside" id="mBV-kD-ViM"/>
</connections>
</button> </button>
<button opaque="NO" contentMode="scaleToFill" contentHorizontalAlignment="center" contentVerticalAlignment="center" buttonType="roundedRect" lineBreakMode="middleTruncation" translatesAutoresizingMaskIntoConstraints="NO" id="2Gw-Kh-OTX"> <button opaque="NO" contentMode="scaleToFill" contentHorizontalAlignment="center" contentVerticalAlignment="center" buttonType="roundedRect" lineBreakMode="middleTruncation" translatesAutoresizingMaskIntoConstraints="NO" id="2Gw-Kh-OTX">
<rect key="frame" x="191" y="43.5" width="73" height="30"/> <rect key="frame" x="191" y="43.5" width="73" height="30"/>
...@@ -385,6 +421,7 @@ ...@@ -385,6 +421,7 @@
<constraint firstAttribute="width" constant="73" id="hha-Ub-QhR"/> <constraint firstAttribute="width" constant="73" id="hha-Ub-QhR"/>
</constraints> </constraints>
<fontDescription key="fontDescription" type="system" pointSize="13"/> <fontDescription key="fontDescription" type="system" pointSize="13"/>
<color key="tintColor" white="0.0" alpha="0.0" colorSpace="custom" customColorSpace="genericGamma22GrayColorSpace"/>
<state key="normal" title="已退款"> <state key="normal" title="已退款">
<color key="titleColor" name="个人中心灰色字体"/> <color key="titleColor" name="个人中心灰色字体"/>
</state> </state>
...@@ -393,6 +430,9 @@ ...@@ -393,6 +430,9 @@
<real key="value" value="3"/> <real key="value" value="3"/>
</userDefinedRuntimeAttribute> </userDefinedRuntimeAttribute>
</userDefinedRuntimeAttributes> </userDefinedRuntimeAttributes>
<connections>
<action selector="btnClick:" destination="-1" eventType="touchUpInside" id="0Ut-RA-njk"/>
</connections>
</button> </button>
</subviews> </subviews>
<color key="backgroundColor" white="1" alpha="1" colorSpace="custom" customColorSpace="genericGamma22GrayColorSpace"/> <color key="backgroundColor" white="1" alpha="1" colorSpace="custom" customColorSpace="genericGamma22GrayColorSpace"/>
...@@ -438,6 +478,7 @@ ...@@ -438,6 +478,7 @@
<constraint firstAttribute="width" constant="73" id="l57-1C-drp"/> <constraint firstAttribute="width" constant="73" id="l57-1C-drp"/>
</constraints> </constraints>
<fontDescription key="fontDescription" type="system" pointSize="13"/> <fontDescription key="fontDescription" type="system" pointSize="13"/>
<color key="tintColor" white="0.0" alpha="0.0" colorSpace="custom" customColorSpace="genericGamma22GrayColorSpace"/>
<state key="normal" title="全部"> <state key="normal" title="全部">
<color key="titleColor" name="个人中心灰色字体"/> <color key="titleColor" name="个人中心灰色字体"/>
</state> </state>
...@@ -446,6 +487,9 @@ ...@@ -446,6 +487,9 @@
<real key="value" value="3"/> <real key="value" value="3"/>
</userDefinedRuntimeAttribute> </userDefinedRuntimeAttribute>
</userDefinedRuntimeAttributes> </userDefinedRuntimeAttributes>
<connections>
<action selector="btnClick:" destination="-1" eventType="touchUpInside" id="8fr-f1-HOc"/>
</connections>
</button> </button>
<button opaque="NO" contentMode="scaleToFill" contentHorizontalAlignment="center" contentVerticalAlignment="center" buttonType="roundedRect" lineBreakMode="middleTruncation" translatesAutoresizingMaskIntoConstraints="NO" id="DG0-zu-kmV"> <button opaque="NO" contentMode="scaleToFill" contentHorizontalAlignment="center" contentVerticalAlignment="center" buttonType="roundedRect" lineBreakMode="middleTruncation" translatesAutoresizingMaskIntoConstraints="NO" id="DG0-zu-kmV">
<rect key="frame" x="103" y="43.5" width="73" height="30"/> <rect key="frame" x="103" y="43.5" width="73" height="30"/>
...@@ -455,6 +499,7 @@ ...@@ -455,6 +499,7 @@
<constraint firstAttribute="width" constant="73" id="Yem-ud-w2q"/> <constraint firstAttribute="width" constant="73" id="Yem-ud-w2q"/>
</constraints> </constraints>
<fontDescription key="fontDescription" type="system" pointSize="13"/> <fontDescription key="fontDescription" type="system" pointSize="13"/>
<color key="tintColor" white="0.0" alpha="0.0" colorSpace="custom" customColorSpace="genericGamma22GrayColorSpace"/>
<state key="normal" title="已打印"> <state key="normal" title="已打印">
<color key="titleColor" name="个人中心灰色字体"/> <color key="titleColor" name="个人中心灰色字体"/>
</state> </state>
...@@ -463,6 +508,9 @@ ...@@ -463,6 +508,9 @@
<real key="value" value="3"/> <real key="value" value="3"/>
</userDefinedRuntimeAttribute> </userDefinedRuntimeAttribute>
</userDefinedRuntimeAttributes> </userDefinedRuntimeAttributes>
<connections>
<action selector="btnClick:" destination="-1" eventType="touchUpInside" id="mVn-DL-Gmb"/>
</connections>
</button> </button>
<button opaque="NO" contentMode="scaleToFill" contentHorizontalAlignment="center" contentVerticalAlignment="center" buttonType="roundedRect" lineBreakMode="middleTruncation" translatesAutoresizingMaskIntoConstraints="NO" id="dcg-p1-FuT"> <button opaque="NO" contentMode="scaleToFill" contentHorizontalAlignment="center" contentVerticalAlignment="center" buttonType="roundedRect" lineBreakMode="middleTruncation" translatesAutoresizingMaskIntoConstraints="NO" id="dcg-p1-FuT">
<rect key="frame" x="191" y="43.5" width="73" height="30"/> <rect key="frame" x="191" y="43.5" width="73" height="30"/>
...@@ -472,6 +520,7 @@ ...@@ -472,6 +520,7 @@
<constraint firstAttribute="height" constant="30" id="thO-IP-tuI"/> <constraint firstAttribute="height" constant="30" id="thO-IP-tuI"/>
</constraints> </constraints>
<fontDescription key="fontDescription" type="system" pointSize="13"/> <fontDescription key="fontDescription" type="system" pointSize="13"/>
<color key="tintColor" white="0.0" alpha="0.0" colorSpace="custom" customColorSpace="genericGamma22GrayColorSpace"/>
<state key="normal" title="未打印"> <state key="normal" title="未打印">
<color key="titleColor" name="个人中心灰色字体"/> <color key="titleColor" name="个人中心灰色字体"/>
</state> </state>
...@@ -480,6 +529,9 @@ ...@@ -480,6 +529,9 @@
<real key="value" value="3"/> <real key="value" value="3"/>
</userDefinedRuntimeAttribute> </userDefinedRuntimeAttribute>
</userDefinedRuntimeAttributes> </userDefinedRuntimeAttributes>
<connections>
<action selector="btnClick:" destination="-1" eventType="touchUpInside" id="hlY-uf-HEV"/>
</connections>
</button> </button>
</subviews> </subviews>
<color key="backgroundColor" white="1" alpha="1" colorSpace="custom" customColorSpace="genericGamma22GrayColorSpace"/> <color key="backgroundColor" white="1" alpha="1" colorSpace="custom" customColorSpace="genericGamma22GrayColorSpace"/>
...@@ -510,7 +562,7 @@ ...@@ -510,7 +562,7 @@
<color key="textColor" name="标题字颜色"/> <color key="textColor" name="标题字颜色"/>
<nil key="highlightedColor"/> <nil key="highlightedColor"/>
</label> </label>
<button opaque="NO" contentMode="scaleToFill" contentHorizontalAlignment="center" contentVerticalAlignment="center" buttonType="roundedRect" lineBreakMode="middleTruncation" translatesAutoresizingMaskIntoConstraints="NO" id="dy6-QP-fE9"> <button opaque="NO" tag="99" contentMode="scaleToFill" contentHorizontalAlignment="center" contentVerticalAlignment="center" buttonType="roundedRect" lineBreakMode="middleTruncation" translatesAutoresizingMaskIntoConstraints="NO" id="dy6-QP-fE9">
<rect key="frame" x="15" y="48.5" width="73" height="30"/> <rect key="frame" x="15" y="48.5" width="73" height="30"/>
<color key="backgroundColor" name="多选按钮背景颜色"/> <color key="backgroundColor" name="多选按钮背景颜色"/>
<constraints> <constraints>
...@@ -518,6 +570,7 @@ ...@@ -518,6 +570,7 @@
<constraint firstAttribute="width" constant="73" id="jhI-Fx-IyS"/> <constraint firstAttribute="width" constant="73" id="jhI-Fx-IyS"/>
</constraints> </constraints>
<fontDescription key="fontDescription" type="system" pointSize="13"/> <fontDescription key="fontDescription" type="system" pointSize="13"/>
<color key="tintColor" white="0.0" alpha="0.0" colorSpace="custom" customColorSpace="genericGamma22GrayColorSpace"/>
<state key="normal" title="全部"> <state key="normal" title="全部">
<color key="titleColor" name="个人中心灰色字体"/> <color key="titleColor" name="个人中心灰色字体"/>
</state> </state>
...@@ -526,6 +579,9 @@ ...@@ -526,6 +579,9 @@
<real key="value" value="3"/> <real key="value" value="3"/>
</userDefinedRuntimeAttribute> </userDefinedRuntimeAttribute>
</userDefinedRuntimeAttributes> </userDefinedRuntimeAttributes>
<connections>
<action selector="btnClick:" destination="-1" eventType="touchUpInside" id="J8s-cx-aBl"/>
</connections>
</button> </button>
<button opaque="NO" contentMode="scaleToFill" contentHorizontalAlignment="center" contentVerticalAlignment="center" buttonType="roundedRect" lineBreakMode="middleTruncation" translatesAutoresizingMaskIntoConstraints="NO" id="wR0-FK-ryn"> <button opaque="NO" contentMode="scaleToFill" contentHorizontalAlignment="center" contentVerticalAlignment="center" buttonType="roundedRect" lineBreakMode="middleTruncation" translatesAutoresizingMaskIntoConstraints="NO" id="wR0-FK-ryn">
<rect key="frame" x="103" y="48.5" width="73" height="30"/> <rect key="frame" x="103" y="48.5" width="73" height="30"/>
...@@ -535,6 +591,7 @@ ...@@ -535,6 +591,7 @@
<constraint firstAttribute="width" constant="73" id="F8i-7t-dVq"/> <constraint firstAttribute="width" constant="73" id="F8i-7t-dVq"/>
</constraints> </constraints>
<fontDescription key="fontDescription" type="system" pointSize="13"/> <fontDescription key="fontDescription" type="system" pointSize="13"/>
<color key="tintColor" white="0.0" alpha="0.0" colorSpace="custom" customColorSpace="genericGamma22GrayColorSpace"/>
<state key="normal" title="下单完成"> <state key="normal" title="下单完成">
<color key="titleColor" name="个人中心灰色字体"/> <color key="titleColor" name="个人中心灰色字体"/>
</state> </state>
...@@ -543,6 +600,9 @@ ...@@ -543,6 +600,9 @@
<real key="value" value="3"/> <real key="value" value="3"/>
</userDefinedRuntimeAttribute> </userDefinedRuntimeAttribute>
</userDefinedRuntimeAttributes> </userDefinedRuntimeAttributes>
<connections>
<action selector="btnClick:" destination="-1" eventType="touchUpInside" id="Gog-Tc-Kww"/>
</connections>
</button> </button>
<button opaque="NO" contentMode="scaleToFill" contentHorizontalAlignment="center" contentVerticalAlignment="center" buttonType="roundedRect" lineBreakMode="middleTruncation" translatesAutoresizingMaskIntoConstraints="NO" id="qjM-zB-xJw"> <button opaque="NO" contentMode="scaleToFill" contentHorizontalAlignment="center" contentVerticalAlignment="center" buttonType="roundedRect" lineBreakMode="middleTruncation" translatesAutoresizingMaskIntoConstraints="NO" id="qjM-zB-xJw">
<rect key="frame" x="191" y="48.5" width="73" height="30"/> <rect key="frame" x="191" y="48.5" width="73" height="30"/>
...@@ -552,6 +612,7 @@ ...@@ -552,6 +612,7 @@
<constraint firstAttribute="height" constant="30" id="ne4-Z3-mnM"/> <constraint firstAttribute="height" constant="30" id="ne4-Z3-mnM"/>
</constraints> </constraints>
<fontDescription key="fontDescription" type="system" pointSize="13"/> <fontDescription key="fontDescription" type="system" pointSize="13"/>
<color key="tintColor" white="0.0" alpha="0.0" colorSpace="custom" customColorSpace="genericGamma22GrayColorSpace"/>
<state key="normal" title="揽收成功"> <state key="normal" title="揽收成功">
<color key="titleColor" name="个人中心灰色字体"/> <color key="titleColor" name="个人中心灰色字体"/>
</state> </state>
...@@ -560,6 +621,9 @@ ...@@ -560,6 +621,9 @@
<real key="value" value="3"/> <real key="value" value="3"/>
</userDefinedRuntimeAttribute> </userDefinedRuntimeAttribute>
</userDefinedRuntimeAttributes> </userDefinedRuntimeAttributes>
<connections>
<action selector="btnClick:" destination="-1" eventType="touchUpInside" id="4MI-mC-L6f"/>
</connections>
</button> </button>
<button opaque="NO" contentMode="scaleToFill" contentHorizontalAlignment="center" contentVerticalAlignment="center" buttonType="roundedRect" lineBreakMode="middleTruncation" translatesAutoresizingMaskIntoConstraints="NO" id="nES-gZ-VYu"> <button opaque="NO" contentMode="scaleToFill" contentHorizontalAlignment="center" contentVerticalAlignment="center" buttonType="roundedRect" lineBreakMode="middleTruncation" translatesAutoresizingMaskIntoConstraints="NO" id="nES-gZ-VYu">
<rect key="frame" x="15" y="88.5" width="73" height="30"/> <rect key="frame" x="15" y="88.5" width="73" height="30"/>
...@@ -569,6 +633,7 @@ ...@@ -569,6 +633,7 @@
<constraint firstAttribute="width" constant="73" id="r1v-uK-eg5"/> <constraint firstAttribute="width" constant="73" id="r1v-uK-eg5"/>
</constraints> </constraints>
<fontDescription key="fontDescription" type="system" pointSize="13"/> <fontDescription key="fontDescription" type="system" pointSize="13"/>
<color key="tintColor" white="0.0" alpha="0.0" colorSpace="custom" customColorSpace="genericGamma22GrayColorSpace"/>
<state key="normal" title="已签收"> <state key="normal" title="已签收">
<color key="titleColor" name="个人中心灰色字体"/> <color key="titleColor" name="个人中心灰色字体"/>
</state> </state>
...@@ -577,15 +642,19 @@ ...@@ -577,15 +642,19 @@
<real key="value" value="3"/> <real key="value" value="3"/>
</userDefinedRuntimeAttribute> </userDefinedRuntimeAttribute>
</userDefinedRuntimeAttributes> </userDefinedRuntimeAttributes>
<connections>
<action selector="btnClick:" destination="-1" eventType="touchUpInside" id="2n6-T7-aG4"/>
</connections>
</button> </button>
<button opaque="NO" contentMode="scaleToFill" contentHorizontalAlignment="center" contentVerticalAlignment="center" buttonType="roundedRect" lineBreakMode="middleTruncation" translatesAutoresizingMaskIntoConstraints="NO" id="iaq-zF-03k"> <button opaque="NO" contentMode="scaleToFill" contentHorizontalAlignment="center" contentVerticalAlignment="center" buttonType="roundedRect" lineBreakMode="middleTruncation" translatesAutoresizingMaskIntoConstraints="NO" id="iaq-zF-03k">
<rect key="frame" x="279" y="48.5" width="73" height="30"/> <rect key="frame" x="191" y="88.5" width="73" height="30"/>
<color key="backgroundColor" name="多选按钮背景颜色"/> <color key="backgroundColor" name="多选按钮背景颜色"/>
<constraints> <constraints>
<constraint firstAttribute="height" constant="30" id="dZV-fS-go3"/> <constraint firstAttribute="width" constant="73" id="SGp-DX-r9M"/>
<constraint firstAttribute="width" constant="73" id="wAe-1e-Zmu"/> <constraint firstAttribute="height" constant="30" id="xvC-LK-IVT"/>
</constraints> </constraints>
<fontDescription key="fontDescription" type="system" pointSize="13"/> <fontDescription key="fontDescription" type="system" pointSize="13"/>
<color key="tintColor" white="0.0" alpha="0.0" colorSpace="custom" customColorSpace="genericGamma22GrayColorSpace"/>
<state key="normal" title="运输中"> <state key="normal" title="运输中">
<color key="titleColor" name="个人中心灰色字体"/> <color key="titleColor" name="个人中心灰色字体"/>
</state> </state>
...@@ -594,6 +663,9 @@ ...@@ -594,6 +663,9 @@
<real key="value" value="3"/> <real key="value" value="3"/>
</userDefinedRuntimeAttribute> </userDefinedRuntimeAttribute>
</userDefinedRuntimeAttributes> </userDefinedRuntimeAttributes>
<connections>
<action selector="btnClick:" destination="-1" eventType="touchUpInside" id="jF2-Ol-eLy"/>
</connections>
</button> </button>
<button opaque="NO" contentMode="scaleToFill" contentHorizontalAlignment="center" contentVerticalAlignment="center" buttonType="roundedRect" lineBreakMode="middleTruncation" translatesAutoresizingMaskIntoConstraints="NO" id="9zd-BQ-EhZ"> <button opaque="NO" contentMode="scaleToFill" contentHorizontalAlignment="center" contentVerticalAlignment="center" buttonType="roundedRect" lineBreakMode="middleTruncation" translatesAutoresizingMaskIntoConstraints="NO" id="9zd-BQ-EhZ">
<rect key="frame" x="103" y="88.5" width="73" height="30"/> <rect key="frame" x="103" y="88.5" width="73" height="30"/>
...@@ -603,6 +675,7 @@ ...@@ -603,6 +675,7 @@
<constraint firstAttribute="height" constant="30" id="fss-Sx-b5z"/> <constraint firstAttribute="height" constant="30" id="fss-Sx-b5z"/>
</constraints> </constraints>
<fontDescription key="fontDescription" type="system" pointSize="13"/> <fontDescription key="fontDescription" type="system" pointSize="13"/>
<color key="tintColor" white="0.0" alpha="0.0" colorSpace="custom" customColorSpace="genericGamma22GrayColorSpace"/>
<state key="normal" title="已取消"> <state key="normal" title="已取消">
<color key="titleColor" name="个人中心灰色字体"/> <color key="titleColor" name="个人中心灰色字体"/>
</state> </state>
...@@ -611,6 +684,9 @@ ...@@ -611,6 +684,9 @@
<real key="value" value="3"/> <real key="value" value="3"/>
</userDefinedRuntimeAttribute> </userDefinedRuntimeAttribute>
</userDefinedRuntimeAttributes> </userDefinedRuntimeAttributes>
<connections>
<action selector="btnClick:" destination="-1" eventType="touchUpInside" id="do6-Lp-1SX"/>
</connections>
</button> </button>
</subviews> </subviews>
<color key="backgroundColor" white="1" alpha="1" colorSpace="custom" customColorSpace="genericGamma22GrayColorSpace"/> <color key="backgroundColor" white="1" alpha="1" colorSpace="custom" customColorSpace="genericGamma22GrayColorSpace"/>
...@@ -620,16 +696,16 @@ ...@@ -620,16 +696,16 @@
<constraint firstItem="9zd-BQ-EhZ" firstAttribute="centerY" secondItem="nES-gZ-VYu" secondAttribute="centerY" id="DMP-Eo-0Ia"/> <constraint firstItem="9zd-BQ-EhZ" firstAttribute="centerY" secondItem="nES-gZ-VYu" secondAttribute="centerY" id="DMP-Eo-0Ia"/>
<constraint firstItem="iS3-6N-cQ5" firstAttribute="leading" secondItem="09u-Wj-US4" secondAttribute="leading" constant="15" id="Gff-Dt-qtw"/> <constraint firstItem="iS3-6N-cQ5" firstAttribute="leading" secondItem="09u-Wj-US4" secondAttribute="leading" constant="15" id="Gff-Dt-qtw"/>
<constraint firstItem="iS3-6N-cQ5" firstAttribute="top" secondItem="09u-Wj-US4" secondAttribute="top" constant="15" id="Lpd-Aj-uTX"/> <constraint firstItem="iS3-6N-cQ5" firstAttribute="top" secondItem="09u-Wj-US4" secondAttribute="top" constant="15" id="Lpd-Aj-uTX"/>
<constraint firstItem="iaq-zF-03k" firstAttribute="leading" secondItem="qjM-zB-xJw" secondAttribute="trailing" constant="15" id="Q5e-yb-Ige"/>
<constraint firstItem="dy6-QP-fE9" firstAttribute="top" secondItem="iS3-6N-cQ5" secondAttribute="bottom" constant="15" id="Qw8-sA-lAY"/> <constraint firstItem="dy6-QP-fE9" firstAttribute="top" secondItem="iS3-6N-cQ5" secondAttribute="bottom" constant="15" id="Qw8-sA-lAY"/>
<constraint firstItem="nES-gZ-VYu" firstAttribute="leading" secondItem="09u-Wj-US4" secondAttribute="leading" constant="15" id="ScJ-m6-nta"/> <constraint firstItem="nES-gZ-VYu" firstAttribute="leading" secondItem="09u-Wj-US4" secondAttribute="leading" constant="15" id="ScJ-m6-nta"/>
<constraint firstItem="wR0-FK-ryn" firstAttribute="centerY" secondItem="dy6-QP-fE9" secondAttribute="centerY" id="V6I-aB-EbA"/> <constraint firstItem="wR0-FK-ryn" firstAttribute="centerY" secondItem="dy6-QP-fE9" secondAttribute="centerY" id="V6I-aB-EbA"/>
<constraint firstItem="qjM-zB-xJw" firstAttribute="centerY" secondItem="wR0-FK-ryn" secondAttribute="centerY" id="WVf-yN-Vcd"/> <constraint firstItem="qjM-zB-xJw" firstAttribute="centerY" secondItem="wR0-FK-ryn" secondAttribute="centerY" id="WVf-yN-Vcd"/>
<constraint firstAttribute="height" constant="128.5" id="Z6I-wi-YfI"/> <constraint firstAttribute="height" constant="128.5" id="Z6I-wi-YfI"/>
<constraint firstItem="dy6-QP-fE9" firstAttribute="leading" secondItem="09u-Wj-US4" secondAttribute="leading" constant="15" id="iOH-yN-ULm"/> <constraint firstItem="dy6-QP-fE9" firstAttribute="leading" secondItem="09u-Wj-US4" secondAttribute="leading" constant="15" id="iOH-yN-ULm"/>
<constraint firstItem="iaq-zF-03k" firstAttribute="centerY" secondItem="qjM-zB-xJw" secondAttribute="centerY" id="mCt-dx-bd5"/> <constraint firstItem="iaq-zF-03k" firstAttribute="centerY" secondItem="9zd-BQ-EhZ" secondAttribute="centerY" id="k9k-zq-Ybs"/>
<constraint firstItem="wR0-FK-ryn" firstAttribute="leading" secondItem="dy6-QP-fE9" secondAttribute="trailing" constant="15" id="p5U-Wd-0am"/> <constraint firstItem="wR0-FK-ryn" firstAttribute="leading" secondItem="dy6-QP-fE9" secondAttribute="trailing" constant="15" id="p5U-Wd-0am"/>
<constraint firstItem="9zd-BQ-EhZ" firstAttribute="centerX" secondItem="wR0-FK-ryn" secondAttribute="centerX" id="us2-Tk-vT5"/> <constraint firstItem="9zd-BQ-EhZ" firstAttribute="centerX" secondItem="wR0-FK-ryn" secondAttribute="centerX" id="us2-Tk-vT5"/>
<constraint firstItem="iaq-zF-03k" firstAttribute="centerX" secondItem="qjM-zB-xJw" secondAttribute="centerX" id="w0U-Ic-0cd"/>
</constraints> </constraints>
</view> </view>
</subviews> </subviews>
...@@ -680,7 +756,7 @@ ...@@ -680,7 +756,7 @@
</constraints> </constraints>
</view> </view>
</subviews> </subviews>
<color key="backgroundColor" name="白色背景色"/> <color key="backgroundColor" name="app底色"/>
<constraints> <constraints>
<constraint firstItem="fnl-2z-Ty3" firstAttribute="trailing" secondItem="5Ue-mR-h4b" secondAttribute="trailing" id="2Rn-9o-jP8"/> <constraint firstItem="fnl-2z-Ty3" firstAttribute="trailing" secondItem="5Ue-mR-h4b" secondAttribute="trailing" id="2Rn-9o-jP8"/>
<constraint firstItem="5Ue-mR-h4b" firstAttribute="leading" secondItem="fnl-2z-Ty3" secondAttribute="leading" id="62f-Tp-HgD"/> <constraint firstItem="5Ue-mR-h4b" firstAttribute="leading" secondItem="fnl-2z-Ty3" secondAttribute="leading" id="62f-Tp-HgD"/>
...@@ -697,14 +773,6 @@ ...@@ -697,14 +773,6 @@
<viewLayoutGuide key="safeArea" id="fnl-2z-Ty3"/> <viewLayoutGuide key="safeArea" id="fnl-2z-Ty3"/>
<point key="canvasLocation" x="130.40000000000001" y="118.29085457271366"/> <point key="canvasLocation" x="130.40000000000001" y="118.29085457271366"/>
</view> </view>
<label opaque="NO" userInteractionEnabled="NO" contentMode="left" horizontalHuggingPriority="251" verticalHuggingPriority="251" text="Label" textAlignment="natural" lineBreakMode="tailTruncation" baselineAdjustment="alignBaselines" adjustsFontSizeToFit="NO" id="hoC-It-cDd">
<rect key="frame" x="0.0" y="0.0" width="42" height="21"/>
<autoresizingMask key="autoresizingMask" flexibleMaxX="YES" flexibleMaxY="YES"/>
<fontDescription key="fontDescription" type="system" pointSize="17"/>
<nil key="textColor"/>
<nil key="highlightedColor"/>
<point key="canvasLocation" x="-276" y="87"/>
</label>
</objects> </objects>
<resources> <resources>
<image name="shaixuan" width="17" height="15"/> <image name="shaixuan" width="17" height="15"/>
...@@ -723,9 +791,6 @@ ...@@ -723,9 +791,6 @@
<namedColor name="灰色分界线"> <namedColor name="灰色分界线">
<color red="0.92941176470588238" green="0.92941176470588238" blue="0.92941176470588238" alpha="1" colorSpace="custom" customColorSpace="sRGB"/> <color red="0.92941176470588238" green="0.92941176470588238" blue="0.92941176470588238" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
</namedColor> </namedColor>
<namedColor name="白色背景色">
<color red="1" green="1" blue="1" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
</namedColor>
<namedColor name="蓝色字体颜色"> <namedColor name="蓝色字体颜色">
<color red="0.27843137254901962" green="0.5607843137254902" blue="0.8901960784313725" alpha="1" colorSpace="custom" customColorSpace="sRGB"/> <color red="0.27843137254901962" green="0.5607843137254902" blue="0.8901960784313725" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
</namedColor> </namedColor>
......
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