Commit bd5c0063 authored by 刘俊宏's avatar 刘俊宏

完成商家信息接口对接

parent 9e02c154
{
"info" : {
"author" : "xcode",
"version" : 1
}
}
{
"images" : [
{
"filename" : "idCard1.png",
"idiom" : "universal",
"scale" : "1x"
},
{
"filename" : "idCard1@2x.png",
"idiom" : "universal",
"scale" : "2x"
},
{
"filename" : "idCard1@3x.png",
"idiom" : "universal",
"scale" : "3x"
}
],
"info" : {
"author" : "xcode",
"version" : 1
}
}
{
"images" : [
{
"filename" : "idCard2.png",
"idiom" : "universal",
"scale" : "1x"
},
{
"filename" : "idCard2@2x.png",
"idiom" : "universal",
"scale" : "2x"
},
{
"filename" : "idCard2@3x.png",
"idiom" : "universal",
"scale" : "3x"
}
],
"info" : {
"author" : "xcode",
"version" : 1
}
}
{
"images" : [
{
"filename" : "idCard3.png",
"idiom" : "universal",
"scale" : "1x"
},
{
"filename" : "idCard3@2x.png",
"idiom" : "universal",
"scale" : "2x"
},
{
"filename" : "idCard3@3x.png",
"idiom" : "universal",
"scale" : "3x"
}
],
"info" : {
"author" : "xcode",
"version" : 1
}
}
{
"images" : [
{
"filename" : "idCard4.png",
"idiom" : "universal",
"scale" : "1x"
},
{
"filename" : "idCard4@2x.png",
"idiom" : "universal",
"scale" : "2x"
},
{
"filename" : "idCard4@3x.png",
"idiom" : "universal",
"scale" : "3x"
}
],
"info" : {
"author" : "xcode",
"version" : 1
}
}
......@@ -20,8 +20,8 @@ class PersonCenterViewController: BaseViewController,UITableViewDelegate,UITable
let listArray = ["格利支付","蓝牙打印设置","权限设置"]
//MARK:--加载数据
func loadData(){
adminInfo(["user_token":UserToken], success: { (data) in
self.dataModel = data as! AdminInfoModel
adminInfo(["user_token":UserToken as Any], success: { (data) in
self.dataModel = (data as! AdminInfoModel)
self.iconImg.kf.setImage(with: URL(string: SERVERCE_HOST + (self.dataModel?.data?.shop_img)!))
self.shopNameLbl.text = self.dataModel?.data?.stall_name
self.nameLbl.text = self.dataModel?.data?.admin_name
......
......@@ -10,8 +10,8 @@ import UIKit
class ShopInfoViewController: BaseViewController {
@IBOutlet weak var scrollHeight: NSLayoutConstraint!
@IBOutlet weak var scrlloV: UIScrollView!
var dataModel : ShopInfoModel? = nil
override func viewDidLoad() {
super.viewDidLoad()
navbar.title = "商家信息"
......@@ -20,5 +20,71 @@ class ShopInfoViewController: BaseViewController {
make.top.equalTo(NavCGRect.height)
make.left.bottom.right.equalTo(0)
}
loadData()
}
//MARK:--加载数据
func loadData(){
shopInfo(["user_token":UserToken as Any], success: { (data) in
self.dataModel = (data as! ShopInfoModel)
self.shopImgV.kf.setImage(with: URL(string: SERVERCE_HOST + (self.dataModel?.data?.shop_img)!))
self.shopNameLbl.text = self.dataModel?.data?.shop_name
self.compAddressLbl.text = self.dataModel?.data?.addr_str
self.addressDetLbl.text = self.dataModel?.data?.address
self.compPhoneLbl.text = self.dataModel?.data?.shop_tel
self.compTotalLbl.text = self.dataModel?.data?.shop_scale
//MARK:--需要计算高度,也可以根据行数确定
self.compInfoLbl.text = self.dataModel?.data?.shop_intro
print("简介\(self.compInfoLbl.numberOfLines)")
self.scrollHeight.constant = 950*glscale + CGFloat(self.compInfoLbl.numberOfLines) * 15*glscale
self.stallNameLbl.text = self.dataModel?.data?.stall_name
self.accoutLbl.text = self.dataModel?.data?.contacts_name
self.emailLbl.text = self.dataModel?.data?.shop_email
self.businessNumLbl.text = self.dataModel?.data?.business_licence_number
self.businessSphereLbl.text = self.dataModel?.data?.business_sphere
self.idCardImgV.kf.setImage(with: URL(string: SERVERCE_HOST + (self.dataModel?.data?.identity_card_front)!))
}) { (error) in
//缺省数据,隐藏滚动视图,展示错误视图
}
}
@IBAction func previousAction(_ sender: UIButton) {
self.idCardImgV.kf.setImage(with: URL(string: SERVERCE_HOST + (self.dataModel?.data?.identity_card_front)!))
rightChangeImgBtn.setImage(UIImage.init(named: "idCard2"), for: .normal)
leftChangeImgBtn.setImage(UIImage.init(named: "idCard1"), for: .normal)
}
@IBAction func nextAction(_ sender: UIButton) {
self.idCardImgV.kf.setImage(with: URL(string: SERVERCE_HOST + (self.dataModel?.data?.identity_card_back)!))
rightChangeImgBtn.setImage(UIImage.init(named: "idCard4"), for: .normal)
leftChangeImgBtn.setImage(UIImage.init(named: "idCard3"), for: .normal)
}
@IBAction func checkBtnAction(_ sender: UIButton) {
print("查看==\(sender.tag)")
if sender.tag == 1001 {
//商家协议
}else if sender.tag == 1002 {
//营业执照电子版:
}else if sender.tag == 1003 {
//流通许可证:
}
}
@IBOutlet weak var leftChangeImgBtn: UIButton!
@IBOutlet weak var rightChangeImgBtn: UIButton!
@IBOutlet weak var shopImgV: UIImageView!
@IBOutlet weak var shopNameLbl: UILabel!
@IBOutlet weak var compAddressLbl: UILabel!
@IBOutlet weak var addressDetLbl: UILabel!
@IBOutlet weak var compPhoneLbl: UILabel!
@IBOutlet weak var compTotalLbl: UILabel!
@IBOutlet weak var compInfoLbl: UILabel!
@IBOutlet weak var stallNameLbl: UILabel!
@IBOutlet weak var accoutLbl: UILabel!
@IBOutlet weak var emailLbl: UILabel!
@IBOutlet weak var businessNumLbl: UILabel!
@IBOutlet weak var businessSphereLbl: UILabel!
@IBOutlet weak var idCardImgV: UIImageView!
}
<?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="16096" targetRuntime="iOS.CocoaTouch" propertyAccessControl="none" useAutolayout="YES" useTraitCollections="YES" useSafeAreas="YES" colorMatched="YES">
<device id="retina4_7" orientation="portrait" appearance="light"/>
<dependencies>
<plugIn identifier="com.apple.InterfaceBuilder.IBCocoaTouchPlugin" version="15704"/>
<plugIn identifier="com.apple.InterfaceBuilder.IBCocoaTouchPlugin" version="16086"/>
<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,8 +10,23 @@
<objects>
<placeholder placeholderIdentifier="IBFilesOwner" id="-1" userLabel="File's Owner" customClass="ShopInfoViewController" customModule="GeliBusinessPlatform" customModuleProvider="target">
<connections>
<outlet property="accoutLbl" destination="3sz-EZ-mKJ" id="DS0-be-V1p"/>
<outlet property="addressDetLbl" destination="iWE-lB-xqz" id="bvT-LV-gCa"/>
<outlet property="businessNumLbl" destination="BbA-mc-ZlM" id="KJy-gB-s8k"/>
<outlet property="businessSphereLbl" destination="mDu-Qe-4HU" id="XMG-nU-hwq"/>
<outlet property="compAddressLbl" destination="Gzu-6s-9Oh" id="T5X-sN-XyC"/>
<outlet property="compInfoLbl" destination="KRo-TN-aaZ" id="LYf-mF-v1n"/>
<outlet property="compPhoneLbl" destination="hlb-VW-onX" id="f0I-4z-abm"/>
<outlet property="compTotalLbl" destination="0ah-5P-SLn" id="OQn-9N-c8b"/>
<outlet property="emailLbl" destination="QT6-0k-r7t" id="QFP-yz-Z3p"/>
<outlet property="idCardImgV" destination="0MU-KP-5sW" id="CHV-Zh-qJM"/>
<outlet property="leftChangeImgBtn" destination="Z2W-C4-bTR" id="wYQ-se-ABN"/>
<outlet property="rightChangeImgBtn" destination="iyE-E4-Dko" id="Fdv-Hz-IFM"/>
<outlet property="scrlloV" destination="Dpc-ae-H9y" id="MU0-c4-SyY"/>
<outlet property="scrollHeight" destination="f6l-BU-WIR" id="ssq-zB-82l"/>
<outlet property="shopImgV" destination="7hF-Wd-wdk" id="sZf-Y0-GT8"/>
<outlet property="shopNameLbl" destination="ukA-ny-pCw" id="KKe-Oi-mb5"/>
<outlet property="stallNameLbl" destination="5Yy-Of-kqw" id="d4f-ri-0jW"/>
<outlet property="view" destination="i5M-Pr-FkT" id="sfx-zR-JGt"/>
</connections>
</placeholder>
......@@ -562,14 +577,31 @@
</userDefinedRuntimeAttribute>
</userDefinedRuntimeAttributes>
</imageView>
<button opaque="NO" contentMode="scaleToFill" contentHorizontalAlignment="center" contentVerticalAlignment="center" lineBreakMode="middleTruncation" translatesAutoresizingMaskIntoConstraints="NO" id="Z2W-C4-bTR">
<rect key="frame" x="46" y="92.5" width="14" height="26"/>
<state key="normal" image="idCard1"/>
<connections>
<action selector="previousAction:" destination="-1" eventType="touchUpInside" id="dyV-e4-TCQ"/>
</connections>
</button>
<button opaque="NO" contentMode="scaleToFill" contentHorizontalAlignment="center" contentVerticalAlignment="center" lineBreakMode="middleTruncation" translatesAutoresizingMaskIntoConstraints="NO" id="iyE-E4-Dko">
<rect key="frame" x="315" y="92.5" width="14" height="26"/>
<state key="normal" image="idCard2"/>
<connections>
<action selector="nextAction:" destination="-1" eventType="touchUpInside" id="RFo-kU-6z8"/>
</connections>
</button>
</subviews>
<color key="backgroundColor" systemColor="systemBackgroundColor" cocoaTouchSystemColor="whiteColor"/>
<constraints>
<constraint firstItem="iyE-E4-Dko" firstAttribute="leading" secondItem="0MU-KP-5sW" secondAttribute="trailing" constant="15" id="1wg-fr-R1V"/>
<constraint firstItem="raL-jM-J2W" firstAttribute="leading" secondItem="e34-8U-86R" secondAttribute="leading" constant="15" id="4CP-8m-Lj3">
<userDefinedRuntimeAttributes>
<userDefinedRuntimeAttribute type="boolean" keyPath="isAdaptateScreen" value="YES"/>
</userDefinedRuntimeAttributes>
</constraint>
<constraint firstItem="iyE-E4-Dko" firstAttribute="centerY" secondItem="0MU-KP-5sW" secondAttribute="centerY" id="Lvo-AS-HFB"/>
<constraint firstItem="Z2W-C4-bTR" firstAttribute="centerY" secondItem="0MU-KP-5sW" secondAttribute="centerY" id="VoZ-V1-MvK"/>
<constraint firstAttribute="height" constant="184" id="Xkw-Ac-EGQ">
<userDefinedRuntimeAttributes>
<userDefinedRuntimeAttribute type="boolean" keyPath="isAdaptateScreen" value="YES"/>
......@@ -582,6 +614,7 @@
</userDefinedRuntimeAttributes>
</constraint>
<constraint firstAttribute="trailing" secondItem="raL-jM-J2W" secondAttribute="trailing" id="hug-kN-E6z"/>
<constraint firstItem="0MU-KP-5sW" firstAttribute="leading" secondItem="Z2W-C4-bTR" secondAttribute="trailing" constant="15" id="mWw-70-51X"/>
<constraint firstItem="lQp-4r-VK3" firstAttribute="leading" secondItem="e34-8U-86R" secondAttribute="leading" constant="15" id="nzI-qj-Cbw">
<userDefinedRuntimeAttributes>
<userDefinedRuntimeAttribute type="boolean" keyPath="isAdaptateScreen" value="YES"/>
......@@ -604,12 +637,6 @@
<color key="textColor" name="标题字颜色"/>
<nil key="highlightedColor"/>
</label>
<label opaque="NO" userInteractionEnabled="NO" contentMode="left" horizontalHuggingPriority="251" verticalHuggingPriority="251" text="查看" textAlignment="right" lineBreakMode="tailTruncation" numberOfLines="0" baselineAdjustment="alignBaselines" adjustsFontSizeToFit="NO" translatesAutoresizingMaskIntoConstraints="NO" id="IyB-1F-M2g">
<rect key="frame" x="333" y="17" width="27" height="16"/>
<fontDescription key="fontDescription" type="system" pointSize="13"/>
<color key="textColor" name="标题字颜色"/>
<nil key="highlightedColor"/>
</label>
<view contentMode="scaleToFill" translatesAutoresizingMaskIntoConstraints="NO" id="PvO-DV-hP1" userLabel="lineView">
<rect key="frame" x="15" y="49" width="360" height="1"/>
<color key="backgroundColor" name="灰色分界线"/>
......@@ -617,6 +644,16 @@
<constraint firstAttribute="height" constant="1" id="JG4-yv-bFb"/>
</constraints>
</view>
<button opaque="NO" tag="1001" contentMode="scaleToFill" contentHorizontalAlignment="center" contentVerticalAlignment="center" buttonType="roundedRect" lineBreakMode="middleTruncation" translatesAutoresizingMaskIntoConstraints="NO" id="uPt-SA-4Xb">
<rect key="frame" x="330" y="11" width="30" height="28"/>
<fontDescription key="fontDescription" type="system" pointSize="13"/>
<state key="normal" title="查看">
<color key="titleColor" name="蓝色字体颜色"/>
</state>
<connections>
<action selector="checkBtnAction:" destination="-1" eventType="touchUpInside" id="gKR-aN-Vt9"/>
</connections>
</button>
</subviews>
<color key="backgroundColor" name="白色背景色"/>
<constraints>
......@@ -627,11 +664,6 @@
<userDefinedRuntimeAttribute type="boolean" keyPath="isAdaptateScreen" value="YES"/>
</userDefinedRuntimeAttributes>
</constraint>
<constraint firstItem="IyB-1F-M2g" firstAttribute="leading" relation="greaterThanOrEqual" secondItem="vsq-to-xsj" secondAttribute="trailing" constant="15" id="K5G-YW-vVB">
<userDefinedRuntimeAttributes>
<userDefinedRuntimeAttribute type="boolean" keyPath="isAdaptateScreen" value="YES"/>
</userDefinedRuntimeAttributes>
</constraint>
<constraint firstItem="PvO-DV-hP1" firstAttribute="leading" secondItem="5Z5-oe-6Pk" secondAttribute="leading" constant="15" id="UHD-Rn-2GM">
<userDefinedRuntimeAttributes>
<userDefinedRuntimeAttribute type="boolean" keyPath="isAdaptateScreen" value="YES"/>
......@@ -642,9 +674,9 @@
<userDefinedRuntimeAttribute type="boolean" keyPath="isAdaptateScreen" value="YES"/>
</userDefinedRuntimeAttributes>
</constraint>
<constraint firstItem="IyB-1F-M2g" firstAttribute="centerY" secondItem="5Z5-oe-6Pk" secondAttribute="centerY" id="aTy-CG-yQZ"/>
<constraint firstAttribute="bottom" secondItem="PvO-DV-hP1" secondAttribute="bottom" id="fL4-jm-S6C"/>
<constraint firstAttribute="trailing" secondItem="IyB-1F-M2g" secondAttribute="trailing" constant="15" id="xjh-24-8pj"/>
<constraint firstItem="uPt-SA-4Xb" firstAttribute="centerY" secondItem="5Z5-oe-6Pk" secondAttribute="centerY" id="wjH-rG-2I7"/>
<constraint firstAttribute="trailing" secondItem="uPt-SA-4Xb" secondAttribute="trailing" constant="15" id="ySS-ri-taG"/>
</constraints>
</view>
<view contentMode="scaleToFill" translatesAutoresizingMaskIntoConstraints="NO" id="d0n-Vg-Tm0">
......@@ -760,12 +792,6 @@
<color key="textColor" name="标题字颜色"/>
<nil key="highlightedColor"/>
</label>
<label opaque="NO" userInteractionEnabled="NO" contentMode="left" horizontalHuggingPriority="251" verticalHuggingPriority="251" text="查看" textAlignment="right" lineBreakMode="tailTruncation" numberOfLines="0" baselineAdjustment="alignBaselines" adjustsFontSizeToFit="NO" translatesAutoresizingMaskIntoConstraints="NO" id="9fv-5W-JgU">
<rect key="frame" x="333" y="17" width="27" height="16"/>
<fontDescription key="fontDescription" type="system" pointSize="13"/>
<color key="textColor" name="标题字颜色"/>
<nil key="highlightedColor"/>
</label>
<view contentMode="scaleToFill" translatesAutoresizingMaskIntoConstraints="NO" id="B3d-Vn-l5e" userLabel="lineView">
<rect key="frame" x="15" y="49" width="360" height="1"/>
<color key="backgroundColor" name="灰色分界线"/>
......@@ -773,9 +799,20 @@
<constraint firstAttribute="height" constant="1" id="zOF-1y-DFD"/>
</constraints>
</view>
<button opaque="NO" tag="1002" contentMode="scaleToFill" contentHorizontalAlignment="center" contentVerticalAlignment="center" buttonType="roundedRect" lineBreakMode="middleTruncation" translatesAutoresizingMaskIntoConstraints="NO" id="cVC-DE-cX7">
<rect key="frame" x="330" y="11" width="30" height="28"/>
<fontDescription key="fontDescription" type="system" pointSize="13"/>
<state key="normal" title="查看">
<color key="titleColor" name="蓝色字体颜色"/>
</state>
<connections>
<action selector="checkBtnAction:" destination="-1" eventType="touchUpInside" id="xcV-oS-qIQ"/>
</connections>
</button>
</subviews>
<color key="backgroundColor" name="白色背景色"/>
<constraints>
<constraint firstAttribute="trailing" secondItem="cVC-DE-cX7" secondAttribute="trailing" constant="15" id="1z1-cI-fS2"/>
<constraint firstItem="Y0D-Mz-1BB" firstAttribute="leading" secondItem="Zc4-9c-pRq" secondAttribute="leading" constant="15" id="F5h-le-EUb">
<userDefinedRuntimeAttributes>
<userDefinedRuntimeAttribute type="boolean" keyPath="isAdaptateScreen" value="YES"/>
......@@ -787,13 +824,7 @@
<userDefinedRuntimeAttribute type="boolean" keyPath="isAdaptateScreen" value="YES"/>
</userDefinedRuntimeAttributes>
</constraint>
<constraint firstItem="9fv-5W-JgU" firstAttribute="leading" relation="greaterThanOrEqual" secondItem="Y0D-Mz-1BB" secondAttribute="trailing" constant="15" id="ZTG-sn-E2d">
<userDefinedRuntimeAttributes>
<userDefinedRuntimeAttribute type="boolean" keyPath="isAdaptateScreen" value="YES"/>
</userDefinedRuntimeAttributes>
</constraint>
<constraint firstAttribute="trailing" secondItem="9fv-5W-JgU" secondAttribute="trailing" constant="15" id="a0e-ev-frC"/>
<constraint firstItem="9fv-5W-JgU" firstAttribute="centerY" secondItem="Zc4-9c-pRq" secondAttribute="centerY" id="fdp-Rt-Phe"/>
<constraint firstItem="cVC-DE-cX7" firstAttribute="centerY" secondItem="Zc4-9c-pRq" secondAttribute="centerY" id="gbq-3i-tgL"/>
<constraint firstAttribute="trailing" secondItem="B3d-Vn-l5e" secondAttribute="trailing" id="nMI-Ua-EFd"/>
<constraint firstItem="B3d-Vn-l5e" firstAttribute="leading" secondItem="Zc4-9c-pRq" secondAttribute="leading" constant="15" id="oWb-ny-U57">
<userDefinedRuntimeAttributes>
......@@ -812,12 +843,6 @@
<color key="textColor" name="标题字颜色"/>
<nil key="highlightedColor"/>
</label>
<label opaque="NO" userInteractionEnabled="NO" contentMode="left" horizontalHuggingPriority="251" verticalHuggingPriority="251" text="查看" textAlignment="right" lineBreakMode="tailTruncation" numberOfLines="0" baselineAdjustment="alignBaselines" adjustsFontSizeToFit="NO" translatesAutoresizingMaskIntoConstraints="NO" id="ndw-QG-I7H">
<rect key="frame" x="333" y="17" width="27" height="16"/>
<fontDescription key="fontDescription" type="system" pointSize="13"/>
<color key="textColor" name="标题字颜色"/>
<nil key="highlightedColor"/>
</label>
<view contentMode="scaleToFill" translatesAutoresizingMaskIntoConstraints="NO" id="Ea7-KZ-UWs" userLabel="lineView">
<rect key="frame" x="15" y="49" width="360" height="1"/>
<color key="backgroundColor" name="灰色分界线"/>
......@@ -825,6 +850,16 @@
<constraint firstAttribute="height" constant="1" id="lVF-JM-bRv"/>
</constraints>
</view>
<button opaque="NO" tag="1003" contentMode="scaleToFill" contentHorizontalAlignment="center" contentVerticalAlignment="center" buttonType="roundedRect" lineBreakMode="middleTruncation" translatesAutoresizingMaskIntoConstraints="NO" id="Sr7-Bz-f2w">
<rect key="frame" x="330" y="11" width="30" height="28"/>
<fontDescription key="fontDescription" type="system" pointSize="13"/>
<state key="normal" title="查看">
<color key="titleColor" name="蓝色字体颜色"/>
</state>
<connections>
<action selector="checkBtnAction:" destination="-1" eventType="touchUpInside" id="hOr-x7-XqH"/>
</connections>
</button>
</subviews>
<color key="backgroundColor" name="白色背景色"/>
<constraints>
......@@ -839,20 +874,15 @@
</userDefinedRuntimeAttributes>
</constraint>
<constraint firstAttribute="trailing" secondItem="Ea7-KZ-UWs" secondAttribute="trailing" id="99n-BR-VG4"/>
<constraint firstAttribute="trailing" secondItem="ndw-QG-I7H" secondAttribute="trailing" constant="15" id="DdR-Wp-f6S"/>
<constraint firstItem="ndw-QG-I7H" firstAttribute="leading" relation="greaterThanOrEqual" secondItem="cEJ-zI-cd5" secondAttribute="trailing" constant="15" id="FFr-my-hgH">
<userDefinedRuntimeAttributes>
<userDefinedRuntimeAttribute type="boolean" keyPath="isAdaptateScreen" value="YES"/>
</userDefinedRuntimeAttributes>
</constraint>
<constraint firstItem="Ea7-KZ-UWs" firstAttribute="leading" secondItem="cpi-4a-slH" secondAttribute="leading" constant="15" id="QjL-CZ-ETd">
<userDefinedRuntimeAttributes>
<userDefinedRuntimeAttribute type="boolean" keyPath="isAdaptateScreen" value="YES"/>
</userDefinedRuntimeAttributes>
</constraint>
<constraint firstAttribute="bottom" secondItem="Ea7-KZ-UWs" secondAttribute="bottom" id="Tlb-hY-Jl9"/>
<constraint firstItem="ndw-QG-I7H" firstAttribute="centerY" secondItem="cpi-4a-slH" secondAttribute="centerY" id="VTY-3p-11R"/>
<constraint firstAttribute="trailing" secondItem="Sr7-Bz-f2w" secondAttribute="trailing" constant="15" id="lOb-up-7WL"/>
<constraint firstItem="cEJ-zI-cd5" firstAttribute="centerY" secondItem="cpi-4a-slH" secondAttribute="centerY" id="nuQ-Rb-9AY"/>
<constraint firstItem="Sr7-Bz-f2w" firstAttribute="centerY" secondItem="cpi-4a-slH" secondAttribute="centerY" id="o62-zl-P7W"/>
</constraints>
</view>
</subviews>
......@@ -931,10 +961,12 @@
<constraint firstItem="Dpc-ae-H9y" firstAttribute="top" secondItem="mXG-iJ-FEQ" secondAttribute="top" id="r5m-dm-nQ5"/>
</constraints>
<viewLayoutGuide key="safeArea" id="mXG-iJ-FEQ"/>
<point key="canvasLocation" x="92" y="-48.125937031484263"/>
<point key="canvasLocation" x="-234" y="-70"/>
</view>
</objects>
<resources>
<image name="idCard1" width="14" height="26"/>
<image name="idCard2" width="14" height="26"/>
<image name="xianshi " width="37" height="24"/>
<namedColor name="标题字颜色">
<color red="0.18000000715255737" green="0.18000000715255737" blue="0.18000000715255737" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
......@@ -948,5 +980,8 @@
<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"/>
</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