Commit 8ad92bd4 authored by lujunye's avatar lujunye

bug修复,物流选择列表

parent cff28e38
......@@ -256,7 +256,7 @@ class GLAlertSelectView: UIView,UITableViewDelegate,UITableViewDataSource,TitleA
return
}
if isMultipleS == false {
if selectNum == nil {
if selectNum == nil && selectNum != 10086{
HUD.flash(.label("\(titleLbl.text!)"), delay: 1.2)
return
}
......
<?xml version="1.0" encoding="UTF-8"?>
<document type="com.apple.InterfaceBuilder3.CocoaTouch.XIB" version="3.0" toolsVersion="15702" targetRuntime="iOS.CocoaTouch" propertyAccessControl="none" useAutolayout="YES" useTraitCollections="YES" useSafeAreas="YES" colorMatched="YES">
<document type="com.apple.InterfaceBuilder3.CocoaTouch.XIB" version="3.0" toolsVersion="16097" targetRuntime="iOS.CocoaTouch" propertyAccessControl="none" useAutolayout="YES" useTraitCollections="YES" useSafeAreas="YES" colorMatched="YES">
<device id="retina6_1" orientation="portrait" appearance="light"/>
<dependencies>
<plugIn identifier="com.apple.InterfaceBuilder.IBCocoaTouchPlugin" version="15704"/>
<deployment identifier="iOS"/>
<plugIn identifier="com.apple.InterfaceBuilder.IBCocoaTouchPlugin" version="16087"/>
<capability name="Named colors" minToolsVersion="9.0"/>
<capability name="Safe area layout guides" minToolsVersion="9.0"/>
<capability name="documents saved in the Xcode 8 format" minToolsVersion="8.0"/>
......@@ -10,7 +11,7 @@
<objects>
<placeholder placeholderIdentifier="IBFilesOwner" id="-1" userLabel="File's Owner"/>
<placeholder placeholderIdentifier="IBFirstResponder" id="-2" customClass="UIResponder"/>
<tableViewCell contentMode="scaleToFill" selectionStyle="default" indentationWidth="10" id="KGk-i7-Jjw" customClass="XiaDanCGDiZhiCell" customModule="GeliBusinessPlatform" customModuleProvider="target">
<tableViewCell contentMode="scaleToFill" selectionStyle="default" indentationWidth="10" id="KGk-i7-Jjw" customClass="XiaDanCGDiZhiCell" customModule="TestClass" customModuleProvider="target">
<rect key="frame" x="0.0" y="0.0" width="375" height="64.5"/>
<autoresizingMask key="autoresizingMask" flexibleMaxX="YES" flexibleMaxY="YES"/>
<tableViewCellContentView key="contentView" opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="center" tableViewCell="KGk-i7-Jjw" id="H2p-sc-9uM">
......@@ -98,13 +99,13 @@
<color red="0.92941176470588238" green="0.92941176470588238" blue="0.92941176470588238" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
</namedColor>
<namedColor name="灰色字体颜色">
<color red="0.40000000596046448" green="0.40000000596046448" blue="0.40000000596046448" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
<color red="0.40000000000000002" green="0.40000000000000002" blue="0.40000000000000002" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
</namedColor>
<namedColor name="白色背景色">
<color red="1" green="1" blue="1" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
</namedColor>
<namedColor name="蓝色字体颜色">
<color red="0.27799999713897705" green="0.56099998950958252" blue="0.88999998569488525" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
<color red="0.27843137254901962" green="0.5607843137254902" blue="0.8901960784313725" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
</namedColor>
</resources>
</document>
......@@ -71,20 +71,18 @@ class XuanZeShangPinViewController: BaseViewController,UITableViewDelegate,UITab
var selectIdxArr:Array<IndexPath> = []
var isSearch:Bool = false
var seacrchArr:Array<GetGoodsInfoDataModel> = [] //搜索数据
override func viewDidLoad() {
super.viewDidLoad()
navbar.title = barTitle
self.view.addSubview(navbar)
let UserToken = UserDefaults.standard.value(forKey: "user_token")
if barTitle != "修改价格"{
getGoodsInfo(["user_token":UserToken,"is_adsale":is_adsale], success: { (data) in
let model = data as! GetGoodsInfoModel
self.datas = model.data!
self.listView.reloadData()
}) { (error) in
}
headerMJ.setRefreshingTarget(self, refreshingAction: #selector(loadData))
self.listView!.mj_header = headerMJ
self.listView.mj_header?.beginRefreshing()
}
listView.separatorStyle = .none
......@@ -106,7 +104,22 @@ class XuanZeShangPinViewController: BaseViewController,UITableViewDelegate,UITab
searchBr.delegateL = self
listView.register(UINib(nibName: "XuanZeShangPinCell", bundle: nil), forCellReuseIdentifier: "XuanZeShangPinCell")
}
@objc func loadData(){
let UserToken = UserDefaults.standard.value(forKey: "user_token")
getGoodsInfo(["user_token":UserToken,"is_adsale":is_adsale], success: { (data) in
let model = data as! GetGoodsInfoModel
self.datas = model.data!
self.listView.reloadData()
self.listView.mj_header?.endRefreshing()
}) { (error) in
}
}
func clearSearchAction() {
print("清楚搜索文字")
isSearch = false
......
......@@ -113,17 +113,67 @@ class GYSListViewController: BaseViewController,UITableViewDataSource,UITableVie
@IBAction func addAction(_ sender: Any) {
if barTitle != "供应商管理" {
delegate?.GYSListViewControllerGetGYS(sender: selectTarget!)
self.navigationController?.popViewController(animated: true)
if selectTarget != nil {
delegate?.GYSListViewControllerGetGYS(sender: selectTarget!)
self.navigationController?.popViewController(animated: true)
}else{
HUD.flash(.label("请选择供应商"), delay: 1.2)
return
}
}else{
let vc = GYSGLViewController()
self.navigationController?.pushViewController(vc, animated: true)
}
}
//MARK: - 自定义DELEGATE
func clearSearchAction() {
}
//MARK:--搜索模块
//MAKR:--调起搜索后添加个蒙版本
var blackBtnView:UIButton! = nil
func searchBarShouldBeginEditing(_ searchBar: UISearchBar) -> Bool {
print("调起搜索后添加个蒙版本")
blackBtnView = UIButton ()
blackBtnView.backgroundColor = UIColor.init(named: "提示视图背景色")
view.addSubview(blackBtnView)
blackBtnView.snp.makeConstraints { (make) in
make.left.right.bottom.equalToSuperview()
make.top.equalTo(topView.snp_bottom)
}
blackBtnView.addTarget(self, action: #selector(removeBlackBtnView), for: .touchUpInside)
return true
}
@objc func removeBlackBtnView(){
if blackBtnView != nil {
blackBtnView.removeFromSuperview()
searchV!.resignFirstResponder()
}
}
//MARK:--搜索按钮代理
func searchBarSearchButtonClicked(_ searchBar: UISearchBar) {
print("点击搜索关键字进行--\(searchBar.text)")
searchBar.resignFirstResponder()
if blackBtnView != nil {
blackBtnView.removeFromSuperview()
}
keyWord = searchBar.text!
listView.mj_header?.beginRefreshing()
}
//MARK:--清空搜索代理
func clearSearchAction() {
}
//MARK:--编辑即将结束
func searchBarTextDidEndEditing(_ searchBar: UISearchBar) {
print("编辑即将结束了--")
removeBlackBtnView()
if keyWord.count > 0 {
keyWord = searchBar.text!
if keyWord.count == 0 {
listView.mj_header?.beginRefreshing()
}
}
}
//MARK: - CELL DELEGATE
func tableView(_ tableView: UITableView, didSelectRowAt indexPath: IndexPath) {
if barTitle == "供应商管理" {
......@@ -148,6 +198,7 @@ class GYSListViewController: BaseViewController,UITableViewDataSource,UITableVie
if barTitle != "供应商管理" {
cell.selectTypeBtn.isSelected = false
cell.selectTypeView.isHidden = false
cell.selectTypeBtn.isUserInteractionEnabled = false
if selectTarget?.ven_id == model.ven_id {
cell.selectTypeBtn.isSelected = true
}
......
......@@ -535,8 +535,8 @@ class WorkCViewController: BaseViewController, UITableViewDelegate, UITableViewD
self.navigationController?.pushViewController(vc, animated: true)
return
case 119: //新增采购单
let vc = YDLBVc()
// let vc = XinCaiGouViewController()
// let vc = YDLBVc()
let vc = XinCaiGouViewController()
self.navigationController?.pushViewController(vc, animated: true)
return
case 120: //商品毛利统计
......
......@@ -43,7 +43,7 @@ class XinCaiGouViewController: BaseViewController,UITableViewDelegate,UITableVie
HUD.flash(.progress)
purchaseOrderAdd(dict, success: { (data) in
HUD.hide()
HUD.flash(.labeledSubSuccess(subtitle: "提交成功"), delay: 1.2)
self.navigationController?.popViewController(animated: true)
}) { (error) in
......@@ -61,13 +61,16 @@ class XinCaiGouViewController: BaseViewController,UITableViewDelegate,UITableVie
}
func GLASClose(view: GLAlertSelectView, selectnum: Int, selectArr: Array<Int>) {
typeSelect = selectnum
view.removeFromSuperview()
glSelectView = nil
}
func GLAlertSelectViewClick(selectNum: Int, view: GLAlertSelectView) {
typeSelect = selectNum
if typeSelect != nil && typeSelect != 10086 {
holderArr.insert(typeArr[typeSelect!], at: 3)
holderArr.remove(at: 4)
listView.reloadData()
}
view.removeFromSuperview()
glSelectView = nil
}
......@@ -112,7 +115,7 @@ class XinCaiGouViewController: BaseViewController,UITableViewDelegate,UITableVie
HUD.flash(.label("请输入采购人姓名"), delay: 1.2)
return
}
if typeSelect == nil {
if typeSelect == nil && typeSelect != 10086 {
HUD.flash(.label("请选择采购类型"), delay: 1.2)
return
}
......@@ -217,7 +220,7 @@ class XinCaiGouViewController: BaseViewController,UITableViewDelegate,UITableVie
}
func tableView(_ tableView: UITableView, cellForRowAt indexPath: IndexPath) -> UITableViewCell {
if indexPath.section == 0 {
if indexPath.row == 1 || indexPath.row == 4 {
if indexPath.row == 1 || indexPath.row == 3{
let cell = tableView.dequeueReusableCell(withIdentifier: "TitleAndBtnCell") as! TitleAndBtnCell
cell.nameLbl.text = titleArr[indexPath.row]
cell.contentLbl.text = holderArr[indexPath.row]
......@@ -233,15 +236,8 @@ class XinCaiGouViewController: BaseViewController,UITableViewDelegate,UITableVie
let cell = tableView.dequeueReusableCell(withIdentifier: "TitleAndTFCell") as! TitleAndTFCell
cell.nameLbl.text = titleArr[indexPath.row]
cell.textTF.placeholder = holderArr[indexPath.row]
if indexPath.row == 3 {
if typeSelect != nil && typeSelect != 10086{
cell.textTF.text = typeArr[typeSelect!]
}
cell.textTF.isUserInteractionEnabled = false
}else{
cell.textTF.delegate = self
cell.textTF.text = cgName
}
cell.textTF.delegate = self
cell.textTF.text = cgName
return cell
}
......
......@@ -86,7 +86,7 @@
<fragment content="代签收(雄狮前台),感谢使用京东冷运;期待再次为您服务(住单总件数:1件)">
<attributes>
<color key="NSColor" name="灰色字体颜色"/>
<font key="NSFont" metaFont="menu" size="11"/>
<font key="NSFont" metaFont="message" size="11"/>
<paragraphStyle key="NSParagraphStyle" alignment="left" lineBreakMode="wordWrapping" baseWritingDirection="natural" lineSpacing="3" tighteningFactorForTruncation="0.0"/>
</attributes>
</fragment>
......@@ -140,7 +140,7 @@
<color red="0.40000000000000002" green="0.40000000000000002" blue="0.40000000000000002" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
</namedColor>
<namedColor name="灰色字体颜色">
<color red="0.40000000596046448" green="0.40000000596046448" blue="0.40000000596046448" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
<color red="0.40000000000000002" green="0.40000000000000002" blue="0.40000000000000002" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
</namedColor>
<namedColor name="白色背景色">
<color red="1" green="1" blue="1" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
......
......@@ -53,6 +53,7 @@ class YDLBVc: BaseViewController,UITableViewDelegate,UITableViewDataSource,UISea
//MARK: - 加载数据
@objc func loadData(){
print("加载数据")
self.listView.mj_header?.endRefreshing()
}
//MARK:--搜索模块
//MAKR:--调起搜索后添加个蒙版本
......
<?xml version="1.0" encoding="UTF-8"?>
<document type="com.apple.InterfaceBuilder3.CocoaTouch.XIB" version="3.0" toolsVersion="16097" targetRuntime="iOS.CocoaTouch" propertyAccessControl="none" useAutolayout="YES" useTraitCollections="YES" useSafeAreas="YES" colorMatched="YES">
<device id="retina6_1" orientation="portrait" appearance="light"/>
<device id="retina4_7" orientation="portrait" appearance="light"/>
<dependencies>
<deployment identifier="iOS"/>
<plugIn identifier="com.apple.InterfaceBuilder.IBCocoaTouchPlugin" version="16087"/>
......@@ -19,21 +19,21 @@
</placeholder>
<placeholder placeholderIdentifier="IBFirstResponder" id="-2" customClass="UIResponder"/>
<view clearsContextBeforeDrawing="NO" contentMode="scaleToFill" id="i5M-Pr-FkT">
<rect key="frame" x="0.0" y="0.0" width="414" height="896"/>
<rect key="frame" x="0.0" y="0.0" width="375" height="667"/>
<autoresizingMask key="autoresizingMask" widthSizable="YES" heightSizable="YES"/>
<subviews>
<view contentMode="scaleToFill" translatesAutoresizingMaskIntoConstraints="NO" id="5Ue-mR-h4b">
<rect key="frame" x="0.0" y="44" width="414" height="51"/>
<rect key="frame" x="0.0" y="0.0" width="375" height="51"/>
<subviews>
<imageView clipsSubviews="YES" userInteractionEnabled="NO" contentMode="scaleAspectFit" horizontalHuggingPriority="251" verticalHuggingPriority="251" image="shaixuan" translatesAutoresizingMaskIntoConstraints="NO" id="Jo5-vu-2Oa">
<rect key="frame" x="382" y="18" width="17" height="15"/>
<rect key="frame" x="343" y="18" width="17" height="15"/>
<constraints>
<constraint firstAttribute="height" constant="15" id="6vs-GG-6eM"/>
<constraint firstAttribute="width" constant="17" id="g3m-yk-2Bl"/>
</constraints>
</imageView>
<button opaque="NO" contentMode="scaleToFill" contentHorizontalAlignment="center" contentVerticalAlignment="center" buttonType="roundedRect" lineBreakMode="middleTruncation" translatesAutoresizingMaskIntoConstraints="NO" id="Nd8-3a-ZP4">
<rect key="frame" x="368" y="0.0" width="46" height="51"/>
<rect key="frame" x="329" y="0.0" width="46" height="51"/>
<constraints>
<constraint firstAttribute="width" constant="46" id="EuJ-Ag-E8u"/>
</constraints>
......@@ -42,7 +42,7 @@
</connections>
</button>
<view contentMode="scaleToFill" translatesAutoresizingMaskIntoConstraints="NO" id="7gn-wh-Lhk">
<rect key="frame" x="0.0" y="0.0" width="368" height="51"/>
<rect key="frame" x="0.0" y="0.0" width="329" height="51"/>
<color key="backgroundColor" systemColor="systemBackgroundColor" cocoaTouchSystemColor="whiteColor"/>
</view>
</subviews>
......@@ -61,35 +61,673 @@
</constraints>
</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">
<rect key="frame" x="0.0" y="95" width="414" height="767"/>
<rect key="frame" x="0.0" y="51" width="375" height="616"/>
<color key="backgroundColor" name="app底色"/>
<connections>
<outlet property="dataSource" destination="-1" id="fH8-34-h3j"/>
<outlet property="delegate" destination="-1" id="sm5-Ie-Zxr"/>
</connections>
</tableView>
<view contentMode="scaleToFill" translatesAutoresizingMaskIntoConstraints="NO" id="CEM-Jb-9Jh">
<rect key="frame" x="0.0" y="51" width="375" height="616"/>
<subviews>
<view contentMode="scaleToFill" translatesAutoresizingMaskIntoConstraints="NO" id="iS3-Sw-trX">
<rect key="frame" x="0.0" y="567" width="375" height="49"/>
<subviews>
<view contentMode="scaleToFill" translatesAutoresizingMaskIntoConstraints="NO" id="wdS-RW-pzl">
<rect key="frame" x="0.0" y="0.0" width="375" height="1"/>
<color key="backgroundColor" name="灰色分界线"/>
<constraints>
<constraint firstAttribute="height" constant="1" id="D6v-cT-Kac"/>
</constraints>
</view>
<view contentMode="scaleToFill" translatesAutoresizingMaskIntoConstraints="NO" id="130-dh-4NE">
<rect key="frame" x="187" y="0.0" width="1" height="49"/>
<color key="backgroundColor" name="灰色分界线"/>
<constraints>
<constraint firstAttribute="width" constant="1" id="aKZ-YY-sTu"/>
</constraints>
</view>
<button opaque="NO" contentMode="scaleToFill" contentHorizontalAlignment="center" contentVerticalAlignment="center" buttonType="roundedRect" lineBreakMode="middleTruncation" translatesAutoresizingMaskIntoConstraints="NO" id="dkc-Ut-d22">
<rect key="frame" x="0.0" y="1" width="187" height="48"/>
<fontDescription key="fontDescription" type="system" pointSize="13"/>
<state key="normal" title="重置">
<color key="titleColor" name="个人中心灰色字体"/>
</state>
</button>
<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"/>
<fontDescription key="fontDescription" type="system" pointSize="13"/>
<state key="normal" title="确定">
<color key="titleColor" name="蓝色字体颜色"/>
</state>
</button>
</subviews>
<color key="backgroundColor" white="1" alpha="1" colorSpace="custom" customColorSpace="genericGamma22GrayColorSpace"/>
<constraints>
<constraint firstItem="dkc-Ut-d22" firstAttribute="top" secondItem="wdS-RW-pzl" secondAttribute="bottom" id="5Qb-nC-zlQ"/>
<constraint firstItem="wdS-RW-pzl" firstAttribute="leading" secondItem="iS3-Sw-trX" secondAttribute="leading" id="Fd0-2a-Qwi"/>
<constraint firstAttribute="trailing" secondItem="wdS-RW-pzl" secondAttribute="trailing" id="JE1-vu-WCC"/>
<constraint firstAttribute="height" constant="49" id="LMB-hk-V0j"/>
<constraint firstAttribute="bottom" secondItem="130-dh-4NE" secondAttribute="bottom" id="MFs-Tz-jdY"/>
<constraint firstItem="slu-gC-kmf" firstAttribute="leading" secondItem="130-dh-4NE" secondAttribute="trailing" id="WgN-6P-pbg"/>
<constraint firstItem="slu-gC-kmf" firstAttribute="top" secondItem="wdS-RW-pzl" secondAttribute="bottom" id="YPA-bx-FIg"/>
<constraint firstItem="dkc-Ut-d22" firstAttribute="leading" secondItem="iS3-Sw-trX" secondAttribute="leading" id="cp2-mc-x6V"/>
<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 firstItem="130-dh-4NE" firstAttribute="top" secondItem="iS3-Sw-trX" secondAttribute="top" id="fvL-Vk-QXp"/>
<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 firstAttribute="bottom" secondItem="dkc-Ut-d22" secondAttribute="bottom" id="pZf-mV-NYr"/>
<constraint firstItem="wdS-RW-pzl" firstAttribute="top" secondItem="iS3-Sw-trX" secondAttribute="top" id="tRm-iH-gNd"/>
</constraints>
</view>
<scrollView clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="scaleToFill" translatesAutoresizingMaskIntoConstraints="NO" id="Pkb-jl-vaH">
<rect key="frame" x="0.0" y="0.0" width="375" height="567"/>
<subviews>
<view contentMode="scaleToFill" translatesAutoresizingMaskIntoConstraints="NO" id="W2C-Cl-eVo">
<rect key="frame" x="0.0" y="0.0" width="375" height="650.5"/>
<subviews>
<view contentMode="scaleToFill" translatesAutoresizingMaskIntoConstraints="NO" id="dqZ-SL-pFU">
<rect key="frame" x="0.0" y="0.0" width="375" height="90.5"/>
<subviews>
<view contentMode="scaleToFill" translatesAutoresizingMaskIntoConstraints="NO" id="kEP-3u-Hwz">
<rect key="frame" x="15" y="89.5" width="360" height="1"/>
<color key="backgroundColor" name="灰色分界线"/>
<constraints>
<constraint firstAttribute="height" constant="1" id="lUB-SR-zUZ"/>
</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="7BR-tv-NBl">
<rect key="frame" x="15" y="15" width="53.5" height="18.5"/>
<constraints>
<constraint firstAttribute="height" constant="18.5" id="jWh-Aq-QW8"/>
</constraints>
<fontDescription key="fontDescription" type="system" pointSize="13"/>
<color key="textColor" name="标题字颜色"/>
<nil key="highlightedColor"/>
</label>
<textField opaque="NO" contentMode="scaleToFill" contentHorizontalAlignment="left" contentVerticalAlignment="center" placeholder="请选择时间范围" textAlignment="natural" minimumFontSize="17" translatesAutoresizingMaskIntoConstraints="NO" id="K5W-TZ-mgg">
<rect key="frame" x="15" y="43.5" width="225" height="32"/>
<constraints>
<constraint firstAttribute="height" constant="32" id="blt-Dj-6Nb"/>
<constraint firstAttribute="width" constant="225" id="d30-yI-7N1"/>
</constraints>
<color key="textColor" name="标题字颜色"/>
<fontDescription key="fontDescription" type="system" pointSize="13"/>
<textInputTraits key="textInputTraits"/>
<userDefinedRuntimeAttributes>
<userDefinedRuntimeAttribute type="color" keyPath="borderColor">
<color key="value" name="个人中心灰色字体"/>
</userDefinedRuntimeAttribute>
<userDefinedRuntimeAttribute type="number" keyPath="borderWidth">
<real key="value" value="1"/>
</userDefinedRuntimeAttribute>
<userDefinedRuntimeAttribute type="number" keyPath="cornerRadius">
<real key="value" value="3"/>
</userDefinedRuntimeAttribute>
</userDefinedRuntimeAttributes>
</textField>
<button opaque="NO" 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"/>
</button>
</subviews>
<color key="backgroundColor" white="1" alpha="1" colorSpace="custom" customColorSpace="genericGamma22GrayColorSpace"/>
<constraints>
<constraint firstItem="vKd-O6-RWp" firstAttribute="leading" secondItem="dqZ-SL-pFU" secondAttribute="leading" id="5kv-tr-h2r"/>
<constraint firstItem="7BR-tv-NBl" firstAttribute="leading" secondItem="dqZ-SL-pFU" secondAttribute="leading" constant="15" id="81J-jI-rvx"/>
<constraint firstAttribute="bottom" secondItem="kEP-3u-Hwz" secondAttribute="bottom" id="J6u-iY-UzF"/>
<constraint firstItem="kEP-3u-Hwz" firstAttribute="top" secondItem="vKd-O6-RWp" secondAttribute="bottom" constant="10" id="K0R-Wd-Qxm"/>
<constraint firstItem="kEP-3u-Hwz" firstAttribute="leading" secondItem="dqZ-SL-pFU" secondAttribute="leading" constant="15" id="RDh-1N-4ac"/>
<constraint firstAttribute="trailing" secondItem="kEP-3u-Hwz" secondAttribute="trailing" id="TZz-Xr-xee"/>
<constraint firstAttribute="trailing" secondItem="vKd-O6-RWp" secondAttribute="trailing" id="WzG-It-9K7"/>
<constraint firstItem="K5W-TZ-mgg" firstAttribute="leading" secondItem="dqZ-SL-pFU" secondAttribute="leading" constant="15" id="kXU-0D-34I"/>
<constraint firstItem="vKd-O6-RWp" firstAttribute="top" secondItem="7BR-tv-NBl" secondAttribute="bottom" constant="10" id="lZH-Rs-V0J"/>
<constraint firstItem="7BR-tv-NBl" firstAttribute="top" secondItem="dqZ-SL-pFU" secondAttribute="top" constant="15" id="nFl-cR-667"/>
<constraint firstAttribute="height" constant="90.5" id="ylL-z7-cnw"/>
<constraint firstItem="K5W-TZ-mgg" firstAttribute="top" secondItem="7BR-tv-NBl" secondAttribute="bottom" constant="10" id="zvD-xv-32e"/>
</constraints>
</view>
<view contentMode="scaleToFill" translatesAutoresizingMaskIntoConstraints="NO" id="rAo-34-c0w">
<rect key="frame" x="0.0" y="90.5" width="375" height="88.5"/>
<subviews>
<label opaque="NO" userInteractionEnabled="NO" contentMode="left" horizontalHuggingPriority="251" verticalHuggingPriority="251" text="物流公司" textAlignment="natural" lineBreakMode="tailTruncation" baselineAdjustment="alignBaselines" adjustsFontSizeToFit="NO" translatesAutoresizingMaskIntoConstraints="NO" id="btj-Ih-n3P">
<rect key="frame" x="15" y="15" width="53.5" height="18.5"/>
<constraints>
<constraint firstAttribute="height" constant="18.5" id="7eN-Lh-cOg"/>
</constraints>
<fontDescription key="fontDescription" type="system" pointSize="13"/>
<color key="textColor" name="标题字颜色"/>
<nil key="highlightedColor"/>
</label>
<button opaque="NO" contentMode="scaleToFill" contentHorizontalAlignment="center" contentVerticalAlignment="center" buttonType="roundedRect" lineBreakMode="middleTruncation" translatesAutoresizingMaskIntoConstraints="NO" id="EV8-UJ-9ec">
<rect key="frame" x="15" y="43.5" width="73" height="30"/>
<color key="backgroundColor" name="多选按钮背景颜色"/>
<constraints>
<constraint firstAttribute="width" constant="73" id="M3a-B5-eTy"/>
<constraint firstAttribute="height" constant="30" id="fJv-uj-Gob"/>
</constraints>
<fontDescription key="fontDescription" type="system" pointSize="13"/>
<state key="normal" title="京东">
<color key="titleColor" name="个人中心灰色字体"/>
</state>
<userDefinedRuntimeAttributes>
<userDefinedRuntimeAttribute type="number" keyPath="cornerRadius">
<real key="value" value="3"/>
</userDefinedRuntimeAttribute>
</userDefinedRuntimeAttributes>
</button>
<view contentMode="scaleToFill" translatesAutoresizingMaskIntoConstraints="NO" id="ge3-qI-pMn">
<rect key="frame" x="15" y="87.5" width="360" height="1"/>
<color key="backgroundColor" name="灰色分界线"/>
<constraints>
<constraint firstAttribute="height" constant="1" id="JyN-qe-V0Y"/>
</constraints>
</view>
</subviews>
<color key="backgroundColor" white="1" alpha="1" colorSpace="custom" customColorSpace="genericGamma22GrayColorSpace"/>
<constraints>
<constraint firstItem="btj-Ih-n3P" firstAttribute="leading" secondItem="rAo-34-c0w" secondAttribute="leading" constant="15" id="5Pg-VZ-EZB"/>
<constraint firstItem="btj-Ih-n3P" firstAttribute="top" secondItem="rAo-34-c0w" secondAttribute="top" constant="15" id="5kY-4F-mkh"/>
<constraint firstItem="EV8-UJ-9ec" firstAttribute="top" secondItem="btj-Ih-n3P" secondAttribute="bottom" constant="10" id="9QL-XZ-L5G"/>
<constraint firstAttribute="height" constant="88.5" id="9XR-q2-AtM"/>
<constraint firstItem="EV8-UJ-9ec" firstAttribute="leading" secondItem="rAo-34-c0w" secondAttribute="leading" constant="15" id="HUh-rk-gwa"/>
<constraint firstAttribute="bottom" secondItem="ge3-qI-pMn" secondAttribute="bottom" id="uIC-kE-6xY"/>
<constraint firstAttribute="trailing" secondItem="ge3-qI-pMn" secondAttribute="trailing" id="ypE-l4-9sv"/>
<constraint firstItem="ge3-qI-pMn" firstAttribute="leading" secondItem="rAo-34-c0w" secondAttribute="leading" constant="15" id="zWG-zV-h4F"/>
</constraints>
</view>
<view contentMode="scaleToFill" translatesAutoresizingMaskIntoConstraints="NO" id="PHQ-MP-upS">
<rect key="frame" x="0.0" y="179" width="375" height="171"/>
<subviews>
<view contentMode="scaleToFill" translatesAutoresizingMaskIntoConstraints="NO" id="Ojl-9M-Dqd">
<rect key="frame" x="15" y="170" width="360" height="1"/>
<color key="backgroundColor" name="灰色分界线"/>
<constraints>
<constraint firstAttribute="height" constant="1" id="PwF-8g-MoR"/>
</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="75h-ZE-x1P">
<rect key="frame" x="15" y="15" width="53.5" height="18.5"/>
<constraints>
<constraint firstAttribute="height" constant="18.5" id="Tjr-gm-OEZ"/>
</constraints>
<fontDescription key="fontDescription" type="system" pointSize="13"/>
<color key="textColor" name="标题字颜色"/>
<nil key="highlightedColor"/>
</label>
<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"/>
<constraints>
<constraint firstAttribute="width" constant="225" id="HzO-CH-Tk6"/>
<constraint firstAttribute="height" constant="32" id="PKa-5p-SvE"/>
</constraints>
<color key="textColor" name="标题字颜色"/>
<fontDescription key="fontDescription" type="system" pointSize="13"/>
<textInputTraits key="textInputTraits"/>
<userDefinedRuntimeAttributes>
<userDefinedRuntimeAttribute type="color" keyPath="borderColor">
<color key="value" name="个人中心灰色字体"/>
</userDefinedRuntimeAttribute>
<userDefinedRuntimeAttribute type="number" keyPath="borderWidth">
<real key="value" value="1"/>
</userDefinedRuntimeAttribute>
<userDefinedRuntimeAttribute type="number" keyPath="cornerRadius">
<real key="value" value="3"/>
</userDefinedRuntimeAttribute>
</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="gPv-Sk-fKV">
<rect key="frame" x="15" y="95.5" width="53.5" height="18.5"/>
<constraints>
<constraint firstAttribute="height" constant="18.5" id="1w1-Nz-ial"/>
</constraints>
<fontDescription key="fontDescription" type="system" pointSize="13"/>
<color key="textColor" name="标题字颜色"/>
<nil key="highlightedColor"/>
</label>
<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"/>
<constraints>
<constraint firstAttribute="height" constant="32" id="Y98-t1-Pvi"/>
<constraint firstAttribute="width" constant="225" id="kcM-pm-cIt"/>
</constraints>
<color key="textColor" name="标题字颜色"/>
<fontDescription key="fontDescription" type="system" pointSize="13"/>
<textInputTraits key="textInputTraits"/>
<userDefinedRuntimeAttributes>
<userDefinedRuntimeAttribute type="color" keyPath="borderColor">
<color key="value" name="个人中心灰色字体"/>
</userDefinedRuntimeAttribute>
<userDefinedRuntimeAttribute type="number" keyPath="borderWidth">
<real key="value" value="1"/>
</userDefinedRuntimeAttribute>
<userDefinedRuntimeAttribute type="number" keyPath="cornerRadius">
<real key="value" value="3"/>
</userDefinedRuntimeAttribute>
</userDefinedRuntimeAttributes>
</textField>
</subviews>
<color key="backgroundColor" white="1" alpha="1" colorSpace="custom" customColorSpace="genericGamma22GrayColorSpace"/>
<constraints>
<constraint firstAttribute="height" constant="171" id="59b-4g-E8A"/>
<constraint firstAttribute="trailing" secondItem="Ojl-9M-Dqd" secondAttribute="trailing" id="7IG-ca-pn0"/>
<constraint firstItem="gPv-Sk-fKV" firstAttribute="top" secondItem="jUf-ph-kpF" secondAttribute="bottom" constant="20" id="CCM-C3-3HF"/>
<constraint firstItem="Ojl-9M-Dqd" firstAttribute="leading" secondItem="PHQ-MP-upS" secondAttribute="leading" constant="15" id="SpO-sF-xEt"/>
<constraint firstItem="75h-ZE-x1P" firstAttribute="top" secondItem="PHQ-MP-upS" secondAttribute="top" constant="15" id="UYL-Eu-Cfm"/>
<constraint firstItem="jUf-ph-kpF" firstAttribute="top" secondItem="75h-ZE-x1P" secondAttribute="bottom" constant="10" id="aTe-nY-QJA"/>
<constraint firstItem="gPv-Sk-fKV" firstAttribute="leading" secondItem="PHQ-MP-upS" secondAttribute="leading" constant="15" id="azF-LK-g4s"/>
<constraint firstItem="9y1-NM-fj7" firstAttribute="top" secondItem="gPv-Sk-fKV" secondAttribute="bottom" constant="10" id="fwC-Le-u7L"/>
<constraint firstItem="75h-ZE-x1P" firstAttribute="leading" secondItem="PHQ-MP-upS" secondAttribute="leading" constant="15" id="lPa-WZ-F9J"/>
<constraint firstAttribute="bottom" secondItem="Ojl-9M-Dqd" secondAttribute="bottom" id="mZS-u5-UJC"/>
<constraint firstItem="jUf-ph-kpF" firstAttribute="leading" secondItem="PHQ-MP-upS" secondAttribute="leading" constant="15" id="phN-E3-Swx"/>
<constraint firstItem="9y1-NM-fj7" firstAttribute="leading" secondItem="PHQ-MP-upS" secondAttribute="leading" constant="15" id="tF9-A6-yt2"/>
</constraints>
</view>
<view contentMode="scaleToFill" translatesAutoresizingMaskIntoConstraints="NO" id="FKp-lr-vkp">
<rect key="frame" x="0.0" y="350" width="375" height="88.5"/>
<subviews>
<view contentMode="scaleToFill" translatesAutoresizingMaskIntoConstraints="NO" id="2wA-qG-qaz">
<rect key="frame" x="15" y="87.5" width="360" height="1"/>
<color key="backgroundColor" name="灰色分界线"/>
<constraints>
<constraint firstAttribute="height" constant="1" id="OHh-Mh-wWN"/>
</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="8aw-ZO-1GE">
<rect key="frame" x="15" y="15" width="53.5" height="18.5"/>
<constraints>
<constraint firstAttribute="height" constant="18.5" id="bHI-Uk-oob"/>
</constraints>
<fontDescription key="fontDescription" type="system" pointSize="13"/>
<color key="textColor" name="标题字颜色"/>
<nil key="highlightedColor"/>
</label>
<button opaque="NO" contentMode="scaleToFill" contentHorizontalAlignment="center" contentVerticalAlignment="center" buttonType="roundedRect" lineBreakMode="middleTruncation" translatesAutoresizingMaskIntoConstraints="NO" id="anO-qg-TMS">
<rect key="frame" x="15" y="43.5" width="73" height="30"/>
<color key="backgroundColor" name="多选按钮背景颜色"/>
<constraints>
<constraint firstAttribute="height" constant="30" id="qu5-UZ-tIo"/>
<constraint firstAttribute="width" constant="73" id="sD5-7z-0sZ"/>
</constraints>
<fontDescription key="fontDescription" type="system" pointSize="13"/>
<state key="normal" title="已付款">
<color key="titleColor" name="个人中心灰色字体"/>
</state>
<userDefinedRuntimeAttributes>
<userDefinedRuntimeAttribute type="number" keyPath="cornerRadius">
<real key="value" value="3"/>
</userDefinedRuntimeAttribute>
</userDefinedRuntimeAttributes>
</button>
<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"/>
<color key="backgroundColor" name="多选按钮背景颜色"/>
<constraints>
<constraint firstAttribute="height" constant="30" id="qO7-LB-LYw"/>
<constraint firstAttribute="width" constant="73" id="soq-eY-z2O"/>
</constraints>
<fontDescription key="fontDescription" type="system" pointSize="13"/>
<state key="normal" title="未付款">
<color key="titleColor" name="个人中心灰色字体"/>
</state>
<userDefinedRuntimeAttributes>
<userDefinedRuntimeAttribute type="number" keyPath="cornerRadius">
<real key="value" value="3"/>
</userDefinedRuntimeAttribute>
</userDefinedRuntimeAttributes>
</button>
<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"/>
<color key="backgroundColor" name="多选按钮背景颜色"/>
<constraints>
<constraint firstAttribute="height" constant="30" id="2nc-6o-z3U"/>
<constraint firstAttribute="width" constant="73" id="hha-Ub-QhR"/>
</constraints>
<fontDescription key="fontDescription" type="system" pointSize="13"/>
<state key="normal" title="已退款">
<color key="titleColor" name="个人中心灰色字体"/>
</state>
<userDefinedRuntimeAttributes>
<userDefinedRuntimeAttribute type="number" keyPath="cornerRadius">
<real key="value" value="3"/>
</userDefinedRuntimeAttribute>
</userDefinedRuntimeAttributes>
</button>
</subviews>
<color key="backgroundColor" white="1" alpha="1" colorSpace="custom" customColorSpace="genericGamma22GrayColorSpace"/>
<constraints>
<constraint firstAttribute="trailing" secondItem="2wA-qG-qaz" secondAttribute="trailing" id="6OK-er-uA1"/>
<constraint firstAttribute="bottom" secondItem="2wA-qG-qaz" secondAttribute="bottom" id="766-Ua-bWG"/>
<constraint firstItem="8aw-ZO-1GE" firstAttribute="leading" secondItem="FKp-lr-vkp" secondAttribute="leading" constant="15" id="9wi-9b-uux"/>
<constraint firstItem="anO-qg-TMS" firstAttribute="top" secondItem="8aw-ZO-1GE" secondAttribute="bottom" constant="10" id="BvB-td-dJs"/>
<constraint firstItem="2wA-qG-qaz" firstAttribute="leading" secondItem="FKp-lr-vkp" secondAttribute="leading" constant="15" id="LyV-a2-9nx"/>
<constraint firstItem="8aw-ZO-1GE" firstAttribute="top" secondItem="FKp-lr-vkp" secondAttribute="top" constant="15" id="VQQ-W1-igF"/>
<constraint firstItem="2Gw-Kh-OTX" firstAttribute="centerY" secondItem="uCG-xI-4GY" secondAttribute="centerY" id="bN4-Gd-oIB"/>
<constraint firstItem="anO-qg-TMS" firstAttribute="leading" secondItem="FKp-lr-vkp" secondAttribute="leading" constant="15" id="clp-Ry-f6H"/>
<constraint firstAttribute="height" constant="88.5" id="jED-NQ-Ceh"/>
<constraint firstItem="2Gw-Kh-OTX" firstAttribute="leading" secondItem="uCG-xI-4GY" secondAttribute="trailing" constant="15" id="qa3-Wq-rJl"/>
<constraint firstItem="uCG-xI-4GY" firstAttribute="leading" secondItem="anO-qg-TMS" secondAttribute="trailing" constant="15" id="uZb-Em-ffe"/>
<constraint firstItem="uCG-xI-4GY" firstAttribute="centerY" secondItem="anO-qg-TMS" secondAttribute="centerY" id="xQG-Om-E32"/>
</constraints>
</view>
<view contentMode="scaleToFill" translatesAutoresizingMaskIntoConstraints="NO" id="YeO-3R-4SW">
<rect key="frame" x="0.0" y="438.5" width="375" height="88.5"/>
<subviews>
<view contentMode="scaleToFill" translatesAutoresizingMaskIntoConstraints="NO" id="TsE-Jc-MWk">
<rect key="frame" x="15" y="87.5" width="360" height="1"/>
<color key="backgroundColor" name="灰色分界线"/>
<constraints>
<constraint firstAttribute="height" constant="1" id="5wk-xs-ReB"/>
</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="NpH-8z-JJD">
<rect key="frame" x="15" y="15" width="53.5" height="18.5"/>
<constraints>
<constraint firstAttribute="height" constant="18.5" id="Vcg-re-tRW"/>
</constraints>
<fontDescription key="fontDescription" type="system" pointSize="13"/>
<color key="textColor" name="标题字颜色"/>
<nil key="highlightedColor"/>
</label>
<button opaque="NO" contentMode="scaleToFill" contentHorizontalAlignment="center" contentVerticalAlignment="center" buttonType="roundedRect" lineBreakMode="middleTruncation" translatesAutoresizingMaskIntoConstraints="NO" id="u1m-fi-0df">
<rect key="frame" x="15" y="43.5" width="73" height="30"/>
<color key="backgroundColor" name="多选按钮背景颜色"/>
<constraints>
<constraint firstAttribute="height" constant="30" id="cX3-vc-chF"/>
<constraint firstAttribute="width" constant="73" id="l57-1C-drp"/>
</constraints>
<fontDescription key="fontDescription" type="system" pointSize="13"/>
<state key="normal" title="全部">
<color key="titleColor" name="个人中心灰色字体"/>
</state>
<userDefinedRuntimeAttributes>
<userDefinedRuntimeAttribute type="number" keyPath="cornerRadius">
<real key="value" value="3"/>
</userDefinedRuntimeAttribute>
</userDefinedRuntimeAttributes>
</button>
<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"/>
<color key="backgroundColor" name="多选按钮背景颜色"/>
<constraints>
<constraint firstAttribute="height" constant="30" id="Aj6-Ih-YLg"/>
<constraint firstAttribute="width" constant="73" id="Yem-ud-w2q"/>
</constraints>
<fontDescription key="fontDescription" type="system" pointSize="13"/>
<state key="normal" title="已打印">
<color key="titleColor" name="个人中心灰色字体"/>
</state>
<userDefinedRuntimeAttributes>
<userDefinedRuntimeAttribute type="number" keyPath="cornerRadius">
<real key="value" value="3"/>
</userDefinedRuntimeAttribute>
</userDefinedRuntimeAttributes>
</button>
<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"/>
<color key="backgroundColor" name="多选按钮背景颜色"/>
<constraints>
<constraint firstAttribute="width" constant="73" id="Mte-fQ-bZU"/>
<constraint firstAttribute="height" constant="30" id="thO-IP-tuI"/>
</constraints>
<fontDescription key="fontDescription" type="system" pointSize="13"/>
<state key="normal" title="未打印">
<color key="titleColor" name="个人中心灰色字体"/>
</state>
<userDefinedRuntimeAttributes>
<userDefinedRuntimeAttribute type="number" keyPath="cornerRadius">
<real key="value" value="3"/>
</userDefinedRuntimeAttribute>
</userDefinedRuntimeAttributes>
</button>
</subviews>
<color key="backgroundColor" white="1" alpha="1" colorSpace="custom" customColorSpace="genericGamma22GrayColorSpace"/>
<constraints>
<constraint firstItem="dcg-p1-FuT" firstAttribute="centerY" secondItem="DG0-zu-kmV" secondAttribute="centerY" id="1MC-9V-YAx"/>
<constraint firstItem="DG0-zu-kmV" firstAttribute="leading" secondItem="u1m-fi-0df" secondAttribute="trailing" constant="15" id="HN1-US-NFF"/>
<constraint firstItem="u1m-fi-0df" firstAttribute="leading" secondItem="YeO-3R-4SW" secondAttribute="leading" constant="15" id="JpH-1U-XL7"/>
<constraint firstAttribute="height" constant="88.5" id="K7J-Zh-MjE"/>
<constraint firstAttribute="bottom" secondItem="TsE-Jc-MWk" secondAttribute="bottom" id="Kt8-Ei-4EM"/>
<constraint firstItem="NpH-8z-JJD" firstAttribute="leading" secondItem="YeO-3R-4SW" secondAttribute="leading" constant="15" id="ZiA-zW-cmR"/>
<constraint firstItem="NpH-8z-JJD" firstAttribute="top" secondItem="YeO-3R-4SW" secondAttribute="top" constant="15" id="dGS-Bq-V0C"/>
<constraint firstItem="dcg-p1-FuT" firstAttribute="leading" secondItem="DG0-zu-kmV" secondAttribute="trailing" constant="15" id="j8M-QI-Rp0"/>
<constraint firstItem="TsE-Jc-MWk" firstAttribute="leading" secondItem="YeO-3R-4SW" secondAttribute="leading" constant="15" id="jl2-yo-mMj"/>
<constraint firstAttribute="trailing" secondItem="TsE-Jc-MWk" secondAttribute="trailing" id="lSA-1m-79g"/>
<constraint firstItem="u1m-fi-0df" firstAttribute="top" secondItem="NpH-8z-JJD" secondAttribute="bottom" constant="10" id="ufS-t1-5Jy"/>
<constraint firstItem="DG0-zu-kmV" firstAttribute="centerY" secondItem="u1m-fi-0df" secondAttribute="centerY" id="zwD-Q1-J7d"/>
</constraints>
</view>
<view contentMode="scaleToFill" translatesAutoresizingMaskIntoConstraints="NO" id="09u-Wj-US4">
<rect key="frame" x="0.0" y="527" width="375" height="128.5"/>
<subviews>
<label opaque="NO" userInteractionEnabled="NO" contentMode="left" horizontalHuggingPriority="251" verticalHuggingPriority="251" text="运单状态" textAlignment="natural" lineBreakMode="tailTruncation" baselineAdjustment="alignBaselines" adjustsFontSizeToFit="NO" translatesAutoresizingMaskIntoConstraints="NO" id="iS3-6N-cQ5">
<rect key="frame" x="15" y="15" width="53.5" height="18.5"/>
<constraints>
<constraint firstAttribute="height" constant="18.5" id="uOc-UE-9qg"/>
</constraints>
<fontDescription key="fontDescription" type="system" pointSize="13"/>
<color key="textColor" name="标题字颜色"/>
<nil key="highlightedColor"/>
</label>
<button opaque="NO" 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"/>
<color key="backgroundColor" name="多选按钮背景颜色"/>
<constraints>
<constraint firstAttribute="height" constant="30" id="OTx-bS-lmS"/>
<constraint firstAttribute="width" constant="73" id="jhI-Fx-IyS"/>
</constraints>
<fontDescription key="fontDescription" type="system" pointSize="13"/>
<state key="normal" title="全部">
<color key="titleColor" name="个人中心灰色字体"/>
</state>
<userDefinedRuntimeAttributes>
<userDefinedRuntimeAttribute type="number" keyPath="cornerRadius">
<real key="value" value="3"/>
</userDefinedRuntimeAttribute>
</userDefinedRuntimeAttributes>
</button>
<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"/>
<color key="backgroundColor" name="多选按钮背景颜色"/>
<constraints>
<constraint firstAttribute="height" constant="30" id="F8A-pW-2rZ"/>
<constraint firstAttribute="width" constant="73" id="F8i-7t-dVq"/>
</constraints>
<fontDescription key="fontDescription" type="system" pointSize="13"/>
<state key="normal" title="下单完成">
<color key="titleColor" name="个人中心灰色字体"/>
</state>
<userDefinedRuntimeAttributes>
<userDefinedRuntimeAttribute type="number" keyPath="cornerRadius">
<real key="value" value="3"/>
</userDefinedRuntimeAttribute>
</userDefinedRuntimeAttributes>
</button>
<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"/>
<color key="backgroundColor" name="多选按钮背景颜色"/>
<constraints>
<constraint firstAttribute="width" constant="73" id="gcl-L8-rFb"/>
<constraint firstAttribute="height" constant="30" id="ne4-Z3-mnM"/>
</constraints>
<fontDescription key="fontDescription" type="system" pointSize="13"/>
<state key="normal" title="揽收成功">
<color key="titleColor" name="个人中心灰色字体"/>
</state>
<userDefinedRuntimeAttributes>
<userDefinedRuntimeAttribute type="number" keyPath="cornerRadius">
<real key="value" value="3"/>
</userDefinedRuntimeAttribute>
</userDefinedRuntimeAttributes>
</button>
<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"/>
<color key="backgroundColor" name="多选按钮背景颜色"/>
<constraints>
<constraint firstAttribute="height" constant="30" id="o18-Y1-b59"/>
<constraint firstAttribute="width" constant="73" id="r1v-uK-eg5"/>
</constraints>
<fontDescription key="fontDescription" type="system" pointSize="13"/>
<state key="normal" title="已签收">
<color key="titleColor" name="个人中心灰色字体"/>
</state>
<userDefinedRuntimeAttributes>
<userDefinedRuntimeAttribute type="number" keyPath="cornerRadius">
<real key="value" value="3"/>
</userDefinedRuntimeAttribute>
</userDefinedRuntimeAttributes>
</button>
<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"/>
<color key="backgroundColor" name="多选按钮背景颜色"/>
<constraints>
<constraint firstAttribute="height" constant="30" id="dZV-fS-go3"/>
<constraint firstAttribute="width" constant="73" id="wAe-1e-Zmu"/>
</constraints>
<fontDescription key="fontDescription" type="system" pointSize="13"/>
<state key="normal" title="运输中">
<color key="titleColor" name="个人中心灰色字体"/>
</state>
<userDefinedRuntimeAttributes>
<userDefinedRuntimeAttribute type="number" keyPath="cornerRadius">
<real key="value" value="3"/>
</userDefinedRuntimeAttribute>
</userDefinedRuntimeAttributes>
</button>
<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"/>
<color key="backgroundColor" name="多选按钮背景颜色"/>
<constraints>
<constraint firstAttribute="width" constant="73" id="Q1V-3q-ZIq"/>
<constraint firstAttribute="height" constant="30" id="fss-Sx-b5z"/>
</constraints>
<fontDescription key="fontDescription" type="system" pointSize="13"/>
<state key="normal" title="已取消">
<color key="titleColor" name="个人中心灰色字体"/>
</state>
<userDefinedRuntimeAttributes>
<userDefinedRuntimeAttribute type="number" keyPath="cornerRadius">
<real key="value" value="3"/>
</userDefinedRuntimeAttribute>
</userDefinedRuntimeAttributes>
</button>
</subviews>
<color key="backgroundColor" white="1" alpha="1" colorSpace="custom" customColorSpace="genericGamma22GrayColorSpace"/>
<constraints>
<constraint firstItem="qjM-zB-xJw" firstAttribute="leading" secondItem="wR0-FK-ryn" secondAttribute="trailing" constant="15" id="0Sw-AN-mh6"/>
<constraint firstItem="nES-gZ-VYu" firstAttribute="top" secondItem="dy6-QP-fE9" secondAttribute="bottom" constant="10" id="AGZ-Fy-b1B"/>
<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="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="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="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 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="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"/>
</constraints>
</view>
</subviews>
<color key="backgroundColor" systemColor="systemBackgroundColor" cocoaTouchSystemColor="whiteColor"/>
<constraints>
<constraint firstItem="09u-Wj-US4" firstAttribute="leading" secondItem="W2C-Cl-eVo" secondAttribute="leading" id="0gg-rD-iqF"/>
<constraint firstItem="PHQ-MP-upS" firstAttribute="leading" secondItem="W2C-Cl-eVo" secondAttribute="leading" id="6FS-JA-LTp"/>
<constraint firstAttribute="trailing" secondItem="dqZ-SL-pFU" secondAttribute="trailing" id="8iA-Fs-Fdi"/>
<constraint firstAttribute="trailing" secondItem="PHQ-MP-upS" secondAttribute="trailing" id="Ag2-Pr-drR"/>
<constraint firstAttribute="trailing" secondItem="FKp-lr-vkp" secondAttribute="trailing" id="RDW-mS-C35"/>
<constraint firstItem="PHQ-MP-upS" firstAttribute="top" secondItem="rAo-34-c0w" secondAttribute="bottom" id="S4v-Yl-PAn"/>
<constraint firstAttribute="trailing" secondItem="09u-Wj-US4" secondAttribute="trailing" id="SjE-hN-MBm"/>
<constraint firstItem="rAo-34-c0w" firstAttribute="top" secondItem="dqZ-SL-pFU" secondAttribute="bottom" id="U22-Ie-rOk"/>
<constraint firstItem="rAo-34-c0w" firstAttribute="leading" secondItem="W2C-Cl-eVo" secondAttribute="leading" id="VPc-Zj-JNx"/>
<constraint firstItem="dqZ-SL-pFU" firstAttribute="leading" secondItem="W2C-Cl-eVo" secondAttribute="leading" id="Z2q-n6-Bal"/>
<constraint firstItem="dqZ-SL-pFU" firstAttribute="top" secondItem="W2C-Cl-eVo" secondAttribute="top" id="cPM-Zv-YSf"/>
<constraint firstItem="YeO-3R-4SW" firstAttribute="top" secondItem="FKp-lr-vkp" secondAttribute="bottom" id="gAO-rH-SUg"/>
<constraint firstItem="FKp-lr-vkp" firstAttribute="leading" secondItem="W2C-Cl-eVo" secondAttribute="leading" id="ivG-ay-az0"/>
<constraint firstAttribute="height" constant="650.5" id="khr-rv-t5U"/>
<constraint firstItem="09u-Wj-US4" firstAttribute="top" secondItem="YeO-3R-4SW" secondAttribute="bottom" id="oCF-2k-ety"/>
<constraint firstAttribute="trailing" secondItem="YeO-3R-4SW" secondAttribute="trailing" id="tYq-jK-uKV"/>
<constraint firstItem="FKp-lr-vkp" firstAttribute="top" secondItem="PHQ-MP-upS" secondAttribute="bottom" id="xWb-aA-KhY"/>
<constraint firstItem="YeO-3R-4SW" firstAttribute="leading" secondItem="W2C-Cl-eVo" secondAttribute="leading" id="yVW-DL-ILy"/>
<constraint firstAttribute="trailing" secondItem="rAo-34-c0w" secondAttribute="trailing" id="zci-ec-kHo"/>
</constraints>
</view>
</subviews>
<constraints>
<constraint firstAttribute="right" secondItem="W2C-Cl-eVo" secondAttribute="right" id="DSp-nq-DcL"/>
<constraint firstItem="W2C-Cl-eVo" firstAttribute="centerX" secondItem="Pkb-jl-vaH" secondAttribute="centerX" id="LPw-Bj-7wd"/>
<constraint firstAttribute="bottom" secondItem="W2C-Cl-eVo" secondAttribute="bottom" id="e2x-h5-YIy"/>
<constraint firstItem="W2C-Cl-eVo" firstAttribute="left" secondItem="Pkb-jl-vaH" secondAttribute="left" id="fgj-sl-mNl"/>
<constraint firstItem="W2C-Cl-eVo" firstAttribute="top" secondItem="Pkb-jl-vaH" secondAttribute="top" id="uG2-s1-MhW"/>
</constraints>
<viewLayoutGuide key="contentLayoutGuide" id="6SM-8U-zS2"/>
<viewLayoutGuide key="frameLayoutGuide" id="UdE-iY-XQO"/>
</scrollView>
</subviews>
<color key="backgroundColor" systemColor="systemBackgroundColor" cocoaTouchSystemColor="whiteColor"/>
<constraints>
<constraint firstItem="iS3-Sw-trX" firstAttribute="leading" secondItem="CEM-Jb-9Jh" secondAttribute="leading" id="7Ea-zl-LNe"/>
<constraint firstItem="Pkb-jl-vaH" firstAttribute="top" secondItem="CEM-Jb-9Jh" secondAttribute="top" id="CEb-Mu-gcX"/>
<constraint firstAttribute="trailing" secondItem="iS3-Sw-trX" secondAttribute="trailing" id="Wor-x9-0JJ"/>
<constraint firstItem="iS3-Sw-trX" firstAttribute="top" secondItem="Pkb-jl-vaH" secondAttribute="bottom" id="fyL-SZ-9jj"/>
<constraint firstAttribute="trailing" secondItem="Pkb-jl-vaH" secondAttribute="trailing" id="r2y-0D-qdT"/>
<constraint firstItem="Pkb-jl-vaH" firstAttribute="leading" secondItem="CEM-Jb-9Jh" secondAttribute="leading" id="t0O-6T-cmf"/>
<constraint firstAttribute="bottom" secondItem="iS3-Sw-trX" secondAttribute="bottom" id="vvd-fQ-Vh5"/>
</constraints>
</view>
</subviews>
<color key="backgroundColor" name="白色背景色"/>
<constraints>
<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="fnl-2z-Ty3" firstAttribute="trailing" secondItem="CEM-Jb-9Jh" secondAttribute="trailing" id="CMt-fN-L8W"/>
<constraint firstItem="fnl-2z-Ty3" firstAttribute="bottom" secondItem="CEM-Jb-9Jh" secondAttribute="bottom" id="MsE-ZJ-nE4"/>
<constraint firstItem="E9d-mv-UN9" firstAttribute="leading" secondItem="fnl-2z-Ty3" secondAttribute="leading" id="XzD-tD-7Ga"/>
<constraint firstItem="CEM-Jb-9Jh" firstAttribute="top" secondItem="5Ue-mR-h4b" secondAttribute="bottom" id="es8-oY-dJo"/>
<constraint firstItem="5Ue-mR-h4b" firstAttribute="top" secondItem="fnl-2z-Ty3" secondAttribute="top" id="ifk-Fh-OQz"/>
<constraint firstItem="CEM-Jb-9Jh" firstAttribute="leading" secondItem="fnl-2z-Ty3" secondAttribute="leading" id="mU3-aZ-zg5"/>
<constraint firstItem="E9d-mv-UN9" firstAttribute="top" secondItem="5Ue-mR-h4b" secondAttribute="bottom" id="nxo-e3-Ycz"/>
<constraint firstItem="fnl-2z-Ty3" firstAttribute="trailing" secondItem="E9d-mv-UN9" secondAttribute="trailing" id="r1r-eU-bK0"/>
<constraint firstItem="fnl-2z-Ty3" firstAttribute="bottom" secondItem="E9d-mv-UN9" secondAttribute="bottom" id="tHD-Cg-sOa"/>
</constraints>
<viewLayoutGuide key="safeArea" id="fnl-2z-Ty3"/>
<point key="canvasLocation" x="132" y="119"/>
<point key="canvasLocation" x="130.40000000000001" y="118.29085457271366"/>
</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>
<resources>
<image name="shaixuan" width="17" height="15"/>
<namedColor name="app底色">
<color red="0.94509803921568625" green="0.94509803921568625" blue="0.94509803921568625" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
</namedColor>
<namedColor name="个人中心灰色字体">
<color red="0.3919999897480011" green="0.3919999897480011" blue="0.3919999897480011" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
</namedColor>
<namedColor name="多选按钮背景颜色">
<color red="0.83899998664855957" green="0.875" blue="0.9179999828338623" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
</namedColor>
<namedColor name="标题字颜色">
<color red="0.18000000715255737" green="0.18000000715255737" blue="0.18000000715255737" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
</namedColor>
<namedColor name="灰色分界线">
<color red="0.92941176470588238" green="0.92941176470588238" blue="0.92941176470588238" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
</namedColor>
<namedColor name="白色背景色">
<color red="1" green="1" blue="1" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
</namedColor>
<namedColor name="蓝色字体颜色">
<color red="0.27843137254901962" green="0.5607843137254902" blue="0.8901960784313725" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
</namedColor>
</resources>
</document>
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