Sfoglia il codice sorgente

提交内容
1、Bug fix;

Handy_Cao 4 anni fa
parent
commit
0e2eb68bc2

+ 3 - 2
MTP_iOS/MTP2_iOS/BusinessCore/Account/AccountManager.swift

@@ -122,8 +122,9 @@ class AccountManager: BaseManager {
         /// 发送请求
         HttpUtils.callInterface(url: url, type: .GET, params: [], callback: { (isSuccess, response) in
             if isSuccess {
-                if let responseData = response as? [String:Any],let userAccount = responseData["useraccount"] {
-                    if let hasAuth = userAccount as? [String:Any] {
+                if let responseData = response as? [String: Any],
+                   let userAccount = responseData["useraccount"] {
+                    if let hasAuth = userAccount as? [String: Any] {
                         if let isauth = hasAuth["hasauth"] {
                             MTP2BusinessCore.shared.authStatus = isauth as! Int
                         }

+ 8 - 23
MTP_iOS/MTP2_iOS/BusinessCore/Order/Models/OrderModels.swift

@@ -331,9 +331,10 @@ class MoOrderDetail: HandyJSON {
 }
 
 /// 资金流水模型类
-class MoAmountLog: HandyJSON {
-
+struct MoAmountLog: HandyJSON {
+    /// moneyTicket
     var moneyTicket = ""
+    /// amountAdJustType
     var amountAdJustType = ""
     /// 商品编码
     var goodsId = 0
@@ -354,7 +355,7 @@ class MoAmountLog: HandyJSON {
     /// 关联单号
     var relationorderid = ""
     /// 创建时间
-    var createtime: Date?
+    var createtime: String = ""
     /// 市场名称
     var marketname = ""
     /// 商品编码
@@ -365,17 +366,10 @@ class MoAmountLog: HandyJSON {
     var goodsname = ""
     /// 操作类型名
     var operatetypename = ""
-    
-    required init() {}
-    
-    func mapping(mapper: HelpingMapper) {
-        mapper <<<
-            self.createtime <-- CustomDateFormatTransform(formatString: "yyyy-MM-dd HH:mm:ss.0")
-    }
 }
 
 /// 历史资金流水Model类
-class MoHisTaaccountLog: HandyJSON {
+struct MoHisTaaccountLog: HandyJSON {
     /// 资金账户
     var accountId = 0
     /// 资金操作类型(operateType)
@@ -393,30 +387,21 @@ class MoHisTaaccountLog: HandyJSON {
     /// 期末余额(变动后金额)
     var currentBalance = 0.0
     /// 发生时间/记账时间
-    var createTime: Date?
+    var createTime = ""
     /// 资金调整类型(默认值为0) -  0:系统 1:单边账调整  2:人工调整
     var amountAdjustType = 0
     /// 历史交易日
-    var accDate: Date?
+    var accDate = ""
     /// 市场
     var marketName = ""
     /// 商品
     var goodsName = ""
-    /// 商品编号
+    /// 商品代码
     var goodsCode = ""
     /// 操作类型名称,取数据库ENUMDICITEM表的值
     var operateTypeName = ""
     /// 币种编号
     var currencyId = 0
-    
-    required init() {}
-    
-    func mapping(mapper: HelpingMapper) {
-        mapper <<<
-            self.createTime <-- CustomDateFormatTransform(formatString: "yyyy-MM-dd HH:mm:ss.0")
-        mapper <<<
-            self.accDate <-- CustomDateFormatTransform(formatString: "yyyy-MM-dd")
-    }
 }
 
 // MARK: - 海商报业

+ 90 - 64
MTP_iOS/MTP2_iOS/BusinessCore/Order/OrderManager.swift

@@ -91,88 +91,114 @@ class OrderManager: BaseManager {
     /// 查询资金流水的方法
     ///
     /// - Parameters:
-    ///   - accountID: 资金账户编号
-    ///   - startDate: 开始时间
-    ///   - endDate: 结束时间
     ///   - callback: 回调块
-    func queryAmountLog(accountID: Int,
-                        startDate: String,
-                        endDate: String,
+    ///   - page: 页码
+    ///   - pagesize: 每页条数
+    ///   - operateType: 资金操作类型 - 格式:1,2,3
+    func queryAmountLog(_ page: Int?,
+                        _ pagesize: Int?,
+                        operateType: String?,
                         callback: @escaping (_ isCompleted: Bool,
                                              _ error: ErrorInfo?,
-                                             _ MoAmountLog: [MoAmountLog]?) -> Void) {
-        /// 状态检验
-        if let error = checkStatus() {
-            callback(false, error, nil)
+                                             _ logs: [MoAmountLog]?) -> Void) {
+        /// 地址信息配置错误
+        guard let url = MTP2BusinessCore.shared.address?.goCommonSearchUrl,
+              url != "" else {
+            callback(false, ErrorInfo(retCode: -60001, retMsg: "地址配置错误"), nil)
             return
         }
-        /// 构建查询参数
-        let param1 = ("accountId", String(accountID))
-        let param2 = ("startDate", startDate)
-        let param3 = ("endDate", endDate)
         
-        /// 调用通用查询方法
-        QueryCommonHelper.queryCommon(statement: Statement.QUERYCLIENTAMOUNTLOG, targetClass: MoAmountLog.self, params: [param1,param2,param3]) {
-            isCompleted, error, results, protobufInfos in
-            if !isCompleted {
-                /// 查询失败
-                callback(false, error, nil)
-                return
-            }
-            
-            guard let results = results else {
-                /// 通用查询返回数据为null
-                callback(false, ErrorInfo(retCode: -60000, retMsg: nil), nil)
-                return
+        /// 参数列表
+        var params = [(key: String, value: Any)]()
+        params.append((key: "accountID", value: "\(MTP2BusinessCore.shared.accountManager?.getCurrentTAAccountInfo()?.accountId ?? 0)"))
+        if let pg = page { params.append((key: "page", value: pg)) }
+        if let size = pagesize { params.append((key: "pagesize", value: size)) }
+        if let type = operateType { params.append((key: "OperateType", value: type)) }
+        
+        /// Http 头部请求
+        /// 登录后服务返回的token
+        let token = MTP2BusinessCore.shared.accountManager?.loginRsp?.token ?? ""
+        let headers = ["Authorization": token]
+
+        /// 发送请求
+        HttpUtils.callInterface(url: url+"/TaAccount/QueryAmountLog",
+                                type: .GET,
+                                params: params,
+                                headers) { (isComplete, rsp) in
+            if isComplete,
+               rsp != nil,
+               let data = rsp as? NSDictionary,
+               let response = Response<[MoAmountLog]>.deserialize(from: data) { /// 请求成功
+                if response.code == 200,
+                   let logs = response.data { /// 查询成功
+                    /// 执行回调
+                    callback(true, nil, logs)
+                } else {
+                    callback(false, ErrorInfo(retCode: response.code, retMsg: response.msg), nil)
+                }
+            } else { /// 获取失败
+                callback(false, ErrorInfo(retCode: -60001, retMsg: "获取数据失败"), nil)
             }
-            /// 数据存储
-            MTP2BusinessCore.shared.responseDatas.append(newElement: (key: Statement.QUERYCLIENTAMOUNTLOG, data: results))
-            /// 执行回调
-            callback(true, nil, results)
         }
     }
     
     /// 查询历史资金流水的方法
     ///
     /// - Parameters:
-    ///   - accountID: 资金账户编号
-    ///   - startDate: 开始时间
-    ///   - endDate: 结束时间
+    ///   - startDate: 开始时间 - 闭区间,格式:yyyy-MM-dd
+    ///   - endDate: 结束时间 - 闭区间,格式:yyyy-MM-dd
     ///   - callback: 回调块
-    func queryHisTaaccountLog(accountID: Int,
-                              startDate: String ,
-                              endDate: String,
-                              callback: @escaping (_ isCompleted: Bool,
-                                                   _ error: ErrorInfo?,
-                                                   _ hisTaaccountLog: [MoHisTaaccountLog]?) -> Void) {
-        /// 状态检验
-        if let error = checkStatus() {
-            callback(false, error, nil)
+    ///   - page: 页码
+    ///   - pagesize: 每页条数
+    ///   - operateType: 资金操作类型 - 格式:1,2,3
+    func queryHisAmountLog(_ page: Int?,
+                        _ pagesize: Int?,
+                        operateType: String?,
+                        startDate: String?,
+                        endDate: String?,
+                        callback: @escaping (_ isCompleted: Bool,
+                                             _ error: ErrorInfo?,
+                                             _ logs: [MoHisTaaccountLog]?) -> Void) {
+        /// 地址信息配置错误
+        guard let url = MTP2BusinessCore.shared.address?.goCommonSearchUrl,
+              url != "" else {
+            callback(false, ErrorInfo(retCode: -60001, retMsg: "地址配置错误"), nil)
             return
         }
-        /// 构建查询参数
-        let param1 = ("accountId", String(accountID))
-        let param2 = ("startDate", startDate)
-        let param3 = ("endDate", endDate)
         
-        /// 调用通用查询方法
-        QueryCommonHelper.queryCommon(statement: Statement.QUERYCLIENTQUERYHISTAACCOUNTLOG, targetClass: MoHisTaaccountLog.self, params: [param1,param2,param3]) {
-            isCompleted, error, results, protobufInfos in
-            if !isCompleted {
-                /// 查询失败
-                callback(false, error, nil)
-                return
-            }
-            
-            guard let results = results else {
-                /// 通用查询返回数据为null
-                callback(false, ErrorInfo(retCode: -60000, retMsg: nil), nil)
-                return
+        /// 参数列表
+        var params = [(key: String, value: Any)]()
+        params.append((key: "accountID", value: "\(MTP2BusinessCore.shared.accountManager?.getCurrentTAAccountInfo()?.accountId ?? 0)"))
+        if let pg = page { params.append((key: "page", value: pg)) }
+        if let size = pagesize { params.append((key: "pagesize", value: size)) }
+        if let type = operateType { params.append((key: "OperateType", value: type)) }
+        if let start = startDate { params.append((key: "startDate", value: start)) }
+        if let end = endDate { params.append((key: "endDate", value: end)) }
+        
+        /// Http 头部请求
+        /// 登录后服务返回的token
+        let token = MTP2BusinessCore.shared.accountManager?.loginRsp?.token ?? ""
+        let headers = ["Authorization": token]
+
+        /// 发送请求
+        HttpUtils.callInterface(url: url+"/TaAccount/QueryHisAmountLog",
+                                type: .GET,
+                                params: params,
+                                headers) { (isComplete, rsp) in
+            if isComplete,
+               rsp != nil,
+               let data = rsp as? NSDictionary,
+               let response = Response<[MoHisTaaccountLog]>.deserialize(from: data) { /// 请求成功
+                if response.code == 200,
+                   let logs = response.data { /// 查询成功
+                    /// 执行回调
+                    callback(true, nil, logs)
+                } else {
+                    callback(false, ErrorInfo(retCode: response.code, retMsg: response.msg), nil)
+                }
+            } else { /// 获取失败
+                callback(false, ErrorInfo(retCode: -60001, retMsg: "获取数据失败"), nil)
             }
-            /// 数据存储
-            MTP2BusinessCore.shared.responseDatas.append(newElement: (key: Statement.QUERYCLIENTQUERYHISTAACCOUNTLOG, data: results))
-            /// 执行回调
-            callback(true, nil, results)
         }
     }
     

+ 1 - 1
MTP_iOS/MTP2_iOS/BusinessCore/Quote/QuoteSubscriptDelete.swift

@@ -11,7 +11,7 @@ import Foundation
 public protocol QuoteSubscriptDelete {
     /// 模块标识,保证 app生命周期内唯一
     var uuid: String { get set }
-    // 需要订阅的商品编号
+    /// 需要订阅的商品编号
     var shouldSubscriptGoodsCodes: Set<String>? { get set }
     var visibleGoodsCodes: Set<String> { get }
 }

+ 2 - 2
MTP_iOS/MTP2_iOS/Resource/Storyboard/Message/Message.storyboard

@@ -12,7 +12,7 @@
         <!--消息-->
         <scene sceneID="zBv-4o-7kE">
             <objects>
-                <navigationController storyboardIdentifier="Message" title="消息" interfaceStyle="dark" id="tMl-RU-w7z" customClass="BaseNavigationController" customModule="LYB" customModuleProvider="target" sceneMemberID="viewController">
+                <navigationController storyboardIdentifier="Message" title="消息" id="tMl-RU-w7z" customClass="BaseNavigationController" customModule="LYB" customModuleProvider="target" sceneMemberID="viewController">
                     <navigationBar key="navigationBar" contentMode="scaleToFill" insetsLayoutMarginsFromSafeArea="NO" id="Y9z-H7-adq">
                         <rect key="frame" x="0.0" y="44" width="414" height="44"/>
                         <autoresizingMask key="autoresizingMask"/>
@@ -169,7 +169,7 @@
                                                                         <stackView opaque="NO" contentMode="scaleToFill" translatesAutoresizingMaskIntoConstraints="NO" id="up7-hF-b8b">
                                                                             <rect key="frame" x="0.0" y="0.0" width="329" height="35"/>
                                                                             <subviews>
-                                                                                <label opaque="NO" userInteractionEnabled="NO" contentMode="left" horizontalHuggingPriority="251" verticalHuggingPriority="251" text="" lineBreakMode="tailTruncation" numberOfLines="2" baselineAdjustment="alignBaselines" adjustsFontSizeToFit="NO" translatesAutoresizingMaskIntoConstraints="NO" id="eMu-Cb-mTl">
+                                                                                <label opaque="NO" userInteractionEnabled="NO" contentMode="left" horizontalHuggingPriority="251" verticalHuggingPriority="251" text="" lineBreakMode="tailTruncation" numberOfLines="2" baselineAdjustment="alignBaselines" minimumFontSize="10" translatesAutoresizingMaskIntoConstraints="NO" id="eMu-Cb-mTl">
                                                                                     <rect key="frame" x="0.0" y="0.0" width="219" height="35"/>
                                                                                     <fontDescription key="fontDescription" type="boldSystem" pointSize="15"/>
                                                                                     <color key="textColor" red="0.20000000000000001" green="0.20000000000000001" blue="0.20000000000000001" alpha="1" colorSpace="calibratedRGB"/>

+ 103 - 103
MTP_iOS/MTP2_iOS/Resource/Storyboard/Mine/Settings.storyboard

@@ -1235,16 +1235,16 @@
                                                     <rect key="frame" x="20" y="11" width="388" height="166"/>
                                                 </imageView>
                                                 <stackView opaque="NO" contentMode="scaleToFill" axis="vertical" distribution="fillEqually" translatesAutoresizingMaskIntoConstraints="NO" id="qA3-fw-7I4" userLabel="签约银行">
-                                                    <rect key="frame" x="35" y="21" width="194" height="74"/>
+                                                    <rect key="frame" x="34.999999999999986" y="21" width="231.66666666666663" height="74"/>
                                                     <subviews>
                                                         <label opaque="NO" userInteractionEnabled="NO" contentMode="left" horizontalHuggingPriority="251" text="签约银行" lineBreakMode="tailTruncation" baselineAdjustment="alignBaselines" minimumFontSize="8" translatesAutoresizingMaskIntoConstraints="NO" id="0nx-0d-Rs0" userLabel="key">
-                                                            <rect key="frame" x="0.0" y="0.0" width="194" height="37"/>
+                                                            <rect key="frame" x="0.0" y="0.0" width="231.66666666666666" height="37"/>
                                                             <fontDescription key="fontDescription" type="system" pointSize="12"/>
                                                             <color key="textColor" red="0.77254901960784317" green="0.90196078431372551" blue="0.96078431372549022" alpha="1" colorSpace="calibratedRGB"/>
                                                             <nil key="highlightedColor"/>
                                                         </label>
-                                                        <label opaque="NO" userInteractionEnabled="NO" contentMode="left" horizontalHuggingPriority="251" verticalHuggingPriority="251" text="浙商银行" lineBreakMode="tailTruncation" baselineAdjustment="alignBaselines" minimumFontSize="13" translatesAutoresizingMaskIntoConstraints="NO" id="WEm-RK-6Zi" userLabel="value">
-                                                            <rect key="frame" x="0.0" y="37" width="194" height="37"/>
+                                                        <label opaque="NO" userInteractionEnabled="NO" contentMode="left" horizontalHuggingPriority="251" verticalHuggingPriority="251" text="浙商银行" lineBreakMode="tailTruncation" baselineAdjustment="alignBaselines" minimumFontSize="12" translatesAutoresizingMaskIntoConstraints="NO" id="WEm-RK-6Zi" userLabel="value">
+                                                            <rect key="frame" x="0.0" y="37" width="231.66666666666666" height="37"/>
                                                             <fontDescription key="fontDescription" type="boldSystem" pointSize="16"/>
                                                             <color key="textColor" white="1" alpha="1" colorSpace="custom" customColorSpace="genericGamma22GrayColorSpace"/>
                                                             <nil key="highlightedColor"/>
@@ -1255,16 +1255,16 @@
                                                     </constraints>
                                                 </stackView>
                                                 <stackView opaque="NO" contentMode="scaleToFill" axis="vertical" distribution="fillEqually" translatesAutoresizingMaskIntoConstraints="NO" id="xz4-ye-Mu7" userLabel="账户名称">
-                                                    <rect key="frame" x="199" y="21" width="194" height="74"/>
+                                                    <rect key="frame" x="161.33333333333337" y="21" width="231.66666666666663" height="74"/>
                                                     <subviews>
-                                                        <label opaque="NO" userInteractionEnabled="NO" contentMode="left" horizontalHuggingPriority="251" verticalHuggingPriority="251" text="账户名称" lineBreakMode="tailTruncation" baselineAdjustment="alignBaselines" minimumFontSize="10" translatesAutoresizingMaskIntoConstraints="NO" id="iaH-IQ-tH3" userLabel="key">
-                                                            <rect key="frame" x="0.0" y="0.0" width="194" height="37"/>
+                                                        <label opaque="NO" userInteractionEnabled="NO" contentMode="left" horizontalHuggingPriority="251" verticalHuggingPriority="251" text="账户名称" textAlignment="right" lineBreakMode="tailTruncation" baselineAdjustment="alignBaselines" minimumFontSize="10" translatesAutoresizingMaskIntoConstraints="NO" id="iaH-IQ-tH3" userLabel="key">
+                                                            <rect key="frame" x="0.0" y="0.0" width="231.66666666666666" height="37"/>
                                                             <fontDescription key="fontDescription" type="system" pointSize="12"/>
                                                             <color key="textColor" red="0.77254901960784317" green="0.90196078431372551" blue="0.96078431372549022" alpha="1" colorSpace="calibratedRGB"/>
                                                             <nil key="highlightedColor"/>
                                                         </label>
-                                                        <label opaque="NO" userInteractionEnabled="NO" contentMode="left" horizontalHuggingPriority="251" verticalHuggingPriority="251" text="陈婷" lineBreakMode="tailTruncation" baselineAdjustment="alignBaselines" minimumFontSize="13" translatesAutoresizingMaskIntoConstraints="NO" id="UTj-cb-QCq" userLabel="value">
-                                                            <rect key="frame" x="0.0" y="37" width="194" height="37"/>
+                                                        <label opaque="NO" userInteractionEnabled="NO" contentMode="left" horizontalHuggingPriority="251" verticalHuggingPriority="251" text="陈婷" textAlignment="right" lineBreakMode="tailTruncation" baselineAdjustment="alignBaselines" minimumFontSize="13" translatesAutoresizingMaskIntoConstraints="NO" id="UTj-cb-QCq" userLabel="value">
+                                                            <rect key="frame" x="0.0" y="37" width="231.66666666666666" height="37"/>
                                                             <fontDescription key="fontDescription" type="boldSystem" pointSize="16"/>
                                                             <color key="textColor" white="1" alpha="1" colorSpace="custom" customColorSpace="genericGamma22GrayColorSpace"/>
                                                             <nil key="highlightedColor"/>
@@ -1276,16 +1276,16 @@
                                                     </constraints>
                                                 </stackView>
                                                 <stackView opaque="NO" contentMode="scaleToFill" axis="vertical" distribution="fillEqually" translatesAutoresizingMaskIntoConstraints="NO" id="rCb-r9-Z4r" userLabel="开户银行">
-                                                    <rect key="frame" x="35" y="93" width="194" height="74"/>
+                                                    <rect key="frame" x="34.999999999999986" y="93" width="231.66666666666663" height="74"/>
                                                     <subviews>
                                                         <label opaque="NO" userInteractionEnabled="NO" contentMode="left" horizontalHuggingPriority="251" verticalHuggingPriority="251" text="开户银行" lineBreakMode="tailTruncation" baselineAdjustment="alignBaselines" minimumFontSize="10" translatesAutoresizingMaskIntoConstraints="NO" id="VAj-mJ-nDa" userLabel="key">
-                                                            <rect key="frame" x="0.0" y="0.0" width="194" height="37"/>
+                                                            <rect key="frame" x="0.0" y="0.0" width="231.66666666666666" height="37"/>
                                                             <fontDescription key="fontDescription" type="system" pointSize="12"/>
                                                             <color key="textColor" red="0.77254901960784317" green="0.90196078431372551" blue="0.96078431372549022" alpha="1" colorSpace="calibratedRGB"/>
                                                             <nil key="highlightedColor"/>
                                                         </label>
                                                         <label opaque="NO" userInteractionEnabled="NO" contentMode="left" horizontalHuggingPriority="251" verticalHuggingPriority="251" text="农业银行" lineBreakMode="tailTruncation" baselineAdjustment="alignBaselines" minimumFontSize="13" translatesAutoresizingMaskIntoConstraints="NO" id="iqK-eu-Y2l" userLabel="value">
-                                                            <rect key="frame" x="0.0" y="37" width="194" height="37"/>
+                                                            <rect key="frame" x="0.0" y="37" width="231.66666666666666" height="37"/>
                                                             <fontDescription key="fontDescription" type="boldSystem" pointSize="16"/>
                                                             <color key="textColor" white="1" alpha="1" colorSpace="custom" customColorSpace="genericGamma22GrayColorSpace"/>
                                                             <nil key="highlightedColor"/>
@@ -1296,8 +1296,8 @@
                                                         <constraint firstItem="VAj-mJ-nDa" firstAttribute="width" secondItem="rCb-r9-Z4r" secondAttribute="width" id="s4D-Xl-BB4"/>
                                                     </constraints>
                                                 </stackView>
-                                                <label opaque="NO" userInteractionEnabled="NO" contentMode="left" horizontalHuggingPriority="251" verticalHuggingPriority="251" text="1022 3453 1126 729" lineBreakMode="tailTruncation" numberOfLines="0" baselineAdjustment="alignBaselines" minimumFontSize="13" translatesAutoresizingMaskIntoConstraints="NO" id="1LU-PM-RiO" userLabel="value">
-                                                    <rect key="frame" x="199" y="93" width="194" height="74"/>
+                                                <label opaque="NO" userInteractionEnabled="NO" contentMode="left" horizontalHuggingPriority="251" verticalHuggingPriority="251" text="1022 3453 1126 729" textAlignment="right" lineBreakMode="tailTruncation" numberOfLines="0" baselineAdjustment="alignBaselines" minimumFontSize="13" translatesAutoresizingMaskIntoConstraints="NO" id="1LU-PM-RiO" userLabel="value">
+                                                    <rect key="frame" x="161.33333333333337" y="93" width="231.66666666666663" height="74"/>
                                                     <fontDescription key="fontDescription" type="boldSystem" pointSize="16"/>
                                                     <color key="textColor" white="1" alpha="1" colorSpace="custom" customColorSpace="genericGamma22GrayColorSpace"/>
                                                     <nil key="highlightedColor"/>
@@ -1308,7 +1308,7 @@
                                                 <constraint firstItem="rCb-r9-Z4r" firstAttribute="height" secondItem="xz4-ye-Mu7" secondAttribute="height" id="8Fv-tj-UAn"/>
                                                 <constraint firstItem="1LU-PM-RiO" firstAttribute="top" relation="greaterThanOrEqual" secondItem="6aF-ZO-0wj" secondAttribute="topMargin" id="9SN-zB-FtV"/>
                                                 <constraint firstItem="xz4-ye-Mu7" firstAttribute="top" secondItem="6aF-ZO-0wj" secondAttribute="topMargin" constant="10" id="CKs-3R-wQF"/>
-                                                <constraint firstItem="qA3-fw-7I4" firstAttribute="width" secondItem="6aF-ZO-0wj" secondAttribute="width" multiplier="1/2" constant="-20" id="G07-xv-PIR"/>
+                                                <constraint firstItem="qA3-fw-7I4" firstAttribute="width" secondItem="6aF-ZO-0wj" secondAttribute="width" multiplier="1/1.7" constant="-20" id="G07-xv-PIR"/>
                                                 <constraint firstAttribute="trailingMargin" secondItem="1LU-PM-RiO" secondAttribute="trailing" constant="15" id="ITx-iR-J5u"/>
                                                 <constraint firstAttribute="bottomMargin" secondItem="ruK-vP-HOF" secondAttribute="bottom" id="JGJ-he-3T7"/>
                                                 <constraint firstItem="qA3-fw-7I4" firstAttribute="leading" secondItem="6aF-ZO-0wj" secondAttribute="leadingMargin" constant="15" id="KXE-2o-hg7"/>
@@ -1737,14 +1737,14 @@
                                                         <subviews>
                                                             <label userInteractionEnabled="NO" contentMode="left" horizontalHuggingPriority="251" verticalHuggingPriority="251" text="开户银行" lineBreakMode="tailTruncation" baselineAdjustment="alignBaselines" adjustsFontSizeToFit="NO" translatesAutoresizingMaskIntoConstraints="NO" id="OVx-sq-vgJ">
                                                                 <rect key="frame" x="0.0" y="0.0" width="100" height="35"/>
-                                                                <color key="backgroundColor" white="1" alpha="1" colorSpace="custom" customColorSpace="genericGamma22GrayColorSpace"/>
+                                                                <color key="backgroundColor" white="0.0" alpha="0.0" colorSpace="custom" customColorSpace="genericGamma22GrayColorSpace"/>
                                                                 <fontDescription key="fontDescription" type="system" pointSize="14"/>
                                                                 <color key="textColor" white="0.33333333329999998" alpha="1" colorSpace="custom" customColorSpace="genericGamma22GrayColorSpace"/>
                                                                 <nil key="highlightedColor"/>
                                                             </label>
                                                             <textField tag="201" contentMode="scaleToFill" contentHorizontalAlignment="left" contentVerticalAlignment="center" minimumFontSize="12" translatesAutoresizingMaskIntoConstraints="NO" id="MFR-qu-qGO" customClass="IBTextField" customModule="LYB" customModuleProvider="target">
                                                                 <rect key="frame" x="140" y="0.0" width="268" height="35"/>
-                                                                <color key="backgroundColor" white="1" alpha="1" colorSpace="custom" customColorSpace="genericGamma22GrayColorSpace"/>
+                                                                <color key="backgroundColor" white="0.0" alpha="0.0" colorSpace="custom" customColorSpace="genericGamma22GrayColorSpace"/>
                                                                 <constraints>
                                                                     <constraint firstAttribute="height" constant="35" id="uiy-yU-oV8"/>
                                                                 </constraints>
@@ -1794,14 +1794,14 @@
                                                         <subviews>
                                                             <label userInteractionEnabled="NO" contentMode="left" horizontalHuggingPriority="251" verticalHuggingPriority="251" text="账户名称" textAlignment="natural" lineBreakMode="tailTruncation" baselineAdjustment="alignBaselines" adjustsFontSizeToFit="NO" translatesAutoresizingMaskIntoConstraints="NO" id="VTO-KR-tXb">
                                                                 <rect key="frame" x="0.0" y="0.0" width="100" height="35"/>
-                                                                <color key="backgroundColor" white="1" alpha="1" colorSpace="custom" customColorSpace="genericGamma22GrayColorSpace"/>
+                                                                <color key="backgroundColor" white="0.0" alpha="0.0" colorSpace="custom" customColorSpace="genericGamma22GrayColorSpace"/>
                                                                 <fontDescription key="fontDescription" type="system" pointSize="14"/>
                                                                 <color key="textColor" white="0.33333333329999998" alpha="1" colorSpace="custom" customColorSpace="genericGamma22GrayColorSpace"/>
                                                                 <nil key="highlightedColor"/>
                                                             </label>
                                                             <textField contentMode="scaleToFill" contentHorizontalAlignment="left" contentVerticalAlignment="center" minimumFontSize="17" translatesAutoresizingMaskIntoConstraints="NO" id="LcG-fc-K6x" customClass="IBTextField" customModule="LYB" customModuleProvider="target">
                                                                 <rect key="frame" x="140" y="0.0" width="268" height="35"/>
-                                                                <color key="backgroundColor" white="1" alpha="1" colorSpace="custom" customColorSpace="genericGamma22GrayColorSpace"/>
+                                                                <color key="backgroundColor" white="0.0" alpha="0.0" colorSpace="custom" customColorSpace="genericGamma22GrayColorSpace"/>
                                                                 <fontDescription key="fontDescription" type="system" pointSize="14"/>
                                                                 <textInputTraits key="textInputTraits"/>
                                                                 <userDefinedRuntimeAttributes>
@@ -1829,14 +1829,14 @@
                                                         <subviews>
                                                             <label userInteractionEnabled="NO" contentMode="left" horizontalHuggingPriority="251" verticalHuggingPriority="251" text="银行账户" textAlignment="natural" lineBreakMode="tailTruncation" baselineAdjustment="alignBaselines" adjustsFontSizeToFit="NO" translatesAutoresizingMaskIntoConstraints="NO" id="gpu-PQ-YP2">
                                                                 <rect key="frame" x="0.0" y="0.0" width="100" height="35"/>
-                                                                <color key="backgroundColor" white="1" alpha="1" colorSpace="custom" customColorSpace="genericGamma22GrayColorSpace"/>
+                                                                <color key="backgroundColor" white="0.0" alpha="0.0" colorSpace="custom" customColorSpace="genericGamma22GrayColorSpace"/>
                                                                 <fontDescription key="fontDescription" type="system" pointSize="14"/>
                                                                 <color key="textColor" white="0.33333333329999998" alpha="1" colorSpace="custom" customColorSpace="genericGamma22GrayColorSpace"/>
                                                                 <nil key="highlightedColor"/>
                                                             </label>
                                                             <textField contentMode="scaleToFill" contentHorizontalAlignment="left" contentVerticalAlignment="center" minimumFontSize="17" translatesAutoresizingMaskIntoConstraints="NO" id="gDB-U6-4mO" customClass="IBTextField" customModule="LYB" customModuleProvider="target">
                                                                 <rect key="frame" x="140" y="0.0" width="268" height="35"/>
-                                                                <color key="backgroundColor" white="1" alpha="1" colorSpace="custom" customColorSpace="genericGamma22GrayColorSpace"/>
+                                                                <color key="backgroundColor" white="0.0" alpha="0.0" colorSpace="custom" customColorSpace="genericGamma22GrayColorSpace"/>
                                                                 <fontDescription key="fontDescription" type="system" pointSize="14"/>
                                                                 <textInputTraits key="textInputTraits"/>
                                                                 <userDefinedRuntimeAttributes>
@@ -1864,14 +1864,14 @@
                                                         <subviews>
                                                             <label userInteractionEnabled="NO" contentMode="left" horizontalHuggingPriority="251" verticalHuggingPriority="251" text="确认银行账户" textAlignment="natural" lineBreakMode="tailTruncation" baselineAdjustment="alignBaselines" adjustsFontSizeToFit="NO" translatesAutoresizingMaskIntoConstraints="NO" id="KVr-4G-gin">
                                                                 <rect key="frame" x="0.0" y="0.0" width="100" height="35"/>
-                                                                <color key="backgroundColor" white="1" alpha="1" colorSpace="custom" customColorSpace="genericGamma22GrayColorSpace"/>
+                                                                <color key="backgroundColor" white="0.0" alpha="0.0" colorSpace="custom" customColorSpace="genericGamma22GrayColorSpace"/>
                                                                 <fontDescription key="fontDescription" type="system" pointSize="14"/>
                                                                 <color key="textColor" white="0.33333333329999998" alpha="1" colorSpace="custom" customColorSpace="genericGamma22GrayColorSpace"/>
                                                                 <nil key="highlightedColor"/>
                                                             </label>
                                                             <textField contentMode="scaleToFill" contentHorizontalAlignment="left" contentVerticalAlignment="center" minimumFontSize="17" translatesAutoresizingMaskIntoConstraints="NO" id="yhY-Ak-129" customClass="IBTextField" customModule="LYB" customModuleProvider="target">
                                                                 <rect key="frame" x="140" y="0.0" width="268" height="35"/>
-                                                                <color key="backgroundColor" white="1" alpha="1" colorSpace="custom" customColorSpace="genericGamma22GrayColorSpace"/>
+                                                                <color key="backgroundColor" white="0.0" alpha="0.0" colorSpace="custom" customColorSpace="genericGamma22GrayColorSpace"/>
                                                                 <fontDescription key="fontDescription" type="system" pointSize="14"/>
                                                                 <textInputTraits key="textInputTraits"/>
                                                                 <userDefinedRuntimeAttributes>
@@ -1899,14 +1899,14 @@
                                                         <subviews>
                                                             <label userInteractionEnabled="NO" contentMode="left" horizontalHuggingPriority="251" verticalHuggingPriority="251" text="手机号码" textAlignment="natural" lineBreakMode="tailTruncation" baselineAdjustment="alignBaselines" adjustsFontSizeToFit="NO" translatesAutoresizingMaskIntoConstraints="NO" id="ZCY-3l-LB0">
                                                                 <rect key="frame" x="0.0" y="0.0" width="100" height="35"/>
-                                                                <color key="backgroundColor" white="1" alpha="1" colorSpace="custom" customColorSpace="genericGamma22GrayColorSpace"/>
+                                                                <color key="backgroundColor" white="0.0" alpha="0.0" colorSpace="custom" customColorSpace="genericGamma22GrayColorSpace"/>
                                                                 <fontDescription key="fontDescription" type="system" pointSize="14"/>
                                                                 <color key="textColor" white="0.33333333329999998" alpha="1" colorSpace="custom" customColorSpace="genericGamma22GrayColorSpace"/>
                                                                 <nil key="highlightedColor"/>
                                                             </label>
                                                             <textField contentMode="scaleToFill" contentHorizontalAlignment="left" contentVerticalAlignment="center" minimumFontSize="17" translatesAutoresizingMaskIntoConstraints="NO" id="WWI-Ny-Y7x" customClass="IBTextField" customModule="LYB" customModuleProvider="target">
                                                                 <rect key="frame" x="140" y="0.0" width="268" height="35"/>
-                                                                <color key="backgroundColor" white="1" alpha="1" colorSpace="custom" customColorSpace="genericGamma22GrayColorSpace"/>
+                                                                <color key="backgroundColor" white="0.0" alpha="0.0" colorSpace="custom" customColorSpace="genericGamma22GrayColorSpace"/>
                                                                 <fontDescription key="fontDescription" type="system" pointSize="14"/>
                                                                 <textInputTraits key="textInputTraits"/>
                                                                 <userDefinedRuntimeAttributes>
@@ -1961,14 +1961,14 @@
                                                         <subviews>
                                                             <label userInteractionEnabled="NO" contentMode="left" horizontalHuggingPriority="251" verticalHuggingPriority="251" text="开户省份" lineBreakMode="tailTruncation" baselineAdjustment="alignBaselines" adjustsFontSizeToFit="NO" translatesAutoresizingMaskIntoConstraints="NO" id="60P-hC-DLo">
                                                                 <rect key="frame" x="0.0" y="0.0" width="100" height="0.0"/>
-                                                                <color key="backgroundColor" white="1" alpha="1" colorSpace="custom" customColorSpace="genericGamma22GrayColorSpace"/>
+                                                                <color key="backgroundColor" white="0.0" alpha="0.0" colorSpace="custom" customColorSpace="genericGamma22GrayColorSpace"/>
                                                                 <fontDescription key="fontDescription" type="system" pointSize="14"/>
                                                                 <color key="textColor" white="0.33333333329999998" alpha="1" colorSpace="custom" customColorSpace="genericGamma22GrayColorSpace"/>
                                                                 <nil key="highlightedColor"/>
                                                             </label>
                                                             <textField tag="200" contentMode="scaleToFill" contentHorizontalAlignment="left" contentVerticalAlignment="center" minimumFontSize="12" translatesAutoresizingMaskIntoConstraints="NO" id="smm-Ra-snh" customClass="IBTextField" customModule="LYB" customModuleProvider="target">
                                                                 <rect key="frame" x="140" y="-15" width="268" height="30"/>
-                                                                <color key="backgroundColor" white="1" alpha="1" colorSpace="custom" customColorSpace="genericGamma22GrayColorSpace"/>
+                                                                <color key="backgroundColor" white="0.0" alpha="0.0" colorSpace="custom" customColorSpace="genericGamma22GrayColorSpace"/>
                                                                 <constraints>
                                                                     <constraint firstAttribute="height" constant="30" id="g2v-ki-HVY"/>
                                                                 </constraints>
@@ -2022,14 +2022,14 @@
                                                         <subviews>
                                                             <label userInteractionEnabled="NO" contentMode="left" horizontalHuggingPriority="251" verticalHuggingPriority="251" text="开户城市" lineBreakMode="tailTruncation" baselineAdjustment="alignBaselines" adjustsFontSizeToFit="NO" translatesAutoresizingMaskIntoConstraints="NO" id="wyh-ub-8fv">
                                                                 <rect key="frame" x="0.0" y="0.0" width="100" height="0.0"/>
-                                                                <color key="backgroundColor" white="1" alpha="1" colorSpace="custom" customColorSpace="genericGamma22GrayColorSpace"/>
+                                                                <color key="backgroundColor" white="0.0" alpha="0.0" colorSpace="custom" customColorSpace="genericGamma22GrayColorSpace"/>
                                                                 <fontDescription key="fontDescription" type="system" pointSize="14"/>
                                                                 <color key="textColor" white="0.33333333329999998" alpha="1" colorSpace="custom" customColorSpace="genericGamma22GrayColorSpace"/>
                                                                 <nil key="highlightedColor"/>
                                                             </label>
                                                             <textField tag="300" contentMode="scaleToFill" contentHorizontalAlignment="left" contentVerticalAlignment="center" minimumFontSize="12" translatesAutoresizingMaskIntoConstraints="NO" id="PVj-YN-Ys7" customClass="IBTextField" customModule="LYB" customModuleProvider="target">
                                                                 <rect key="frame" x="140" y="-15" width="268" height="30"/>
-                                                                <color key="backgroundColor" white="1" alpha="1" colorSpace="custom" customColorSpace="genericGamma22GrayColorSpace"/>
+                                                                <color key="backgroundColor" white="0.0" alpha="0.0" colorSpace="custom" customColorSpace="genericGamma22GrayColorSpace"/>
                                                                 <constraints>
                                                                     <constraint firstAttribute="height" constant="30" id="Gaa-48-E4L"/>
                                                                 </constraints>
@@ -2083,7 +2083,7 @@
                                                         <subviews>
                                                             <label userInteractionEnabled="NO" contentMode="left" horizontalHuggingPriority="251" verticalHuggingPriority="251" text="开户行支行号" textAlignment="natural" lineBreakMode="tailTruncation" baselineAdjustment="alignBaselines" adjustsFontSizeToFit="NO" translatesAutoresizingMaskIntoConstraints="NO" id="vrn-6K-adx">
                                                                 <rect key="frame" x="0.0" y="0.0" width="100" height="0.0"/>
-                                                                <color key="backgroundColor" white="1" alpha="1" colorSpace="custom" customColorSpace="genericGamma22GrayColorSpace"/>
+                                                                <color key="backgroundColor" white="0.0" alpha="0.0" colorSpace="custom" customColorSpace="genericGamma22GrayColorSpace"/>
                                                                 <color key="tintColor" white="1" alpha="1" colorSpace="custom" customColorSpace="genericGamma22GrayColorSpace"/>
                                                                 <fontDescription key="fontDescription" type="system" pointSize="14"/>
                                                                 <color key="textColor" white="0.33333333329999998" alpha="1" colorSpace="custom" customColorSpace="genericGamma22GrayColorSpace"/>
@@ -2091,7 +2091,7 @@
                                                             </label>
                                                             <textField contentMode="scaleToFill" contentHorizontalAlignment="left" contentVerticalAlignment="center" minimumFontSize="17" translatesAutoresizingMaskIntoConstraints="NO" id="7zx-ZG-TZ9" customClass="IBTextField" customModule="LYB" customModuleProvider="target">
                                                                 <rect key="frame" x="140" y="0.0" width="268" height="0.0"/>
-                                                                <color key="backgroundColor" white="1" alpha="1" colorSpace="custom" customColorSpace="genericGamma22GrayColorSpace"/>
+                                                                <color key="backgroundColor" white="0.0" alpha="0.0" colorSpace="custom" customColorSpace="genericGamma22GrayColorSpace"/>
                                                                 <color key="textColor" white="0.0" alpha="1" colorSpace="custom" customColorSpace="genericGamma22GrayColorSpace"/>
                                                                 <fontDescription key="fontDescription" type="system" pointSize="14"/>
                                                                 <textInputTraits key="textInputTraits" keyboardType="numberPad"/>
@@ -2117,14 +2117,14 @@
                                                         <subviews>
                                                             <label userInteractionEnabled="NO" contentMode="left" horizontalHuggingPriority="251" verticalHuggingPriority="251" text="开户行支行名称" textAlignment="natural" lineBreakMode="tailTruncation" baselineAdjustment="alignBaselines" adjustsFontSizeToFit="NO" translatesAutoresizingMaskIntoConstraints="NO" id="5Xv-Om-aMa">
                                                                 <rect key="frame" x="0.0" y="0.0" width="100" height="0.0"/>
-                                                                <color key="backgroundColor" white="1" alpha="1" colorSpace="custom" customColorSpace="genericGamma22GrayColorSpace"/>
+                                                                <color key="backgroundColor" white="0.0" alpha="0.0" colorSpace="custom" customColorSpace="genericGamma22GrayColorSpace"/>
                                                                 <fontDescription key="fontDescription" type="system" pointSize="14"/>
                                                                 <color key="textColor" white="0.33333333329999998" alpha="1" colorSpace="custom" customColorSpace="genericGamma22GrayColorSpace"/>
                                                                 <nil key="highlightedColor"/>
                                                             </label>
                                                             <textField contentMode="scaleToFill" contentHorizontalAlignment="left" contentVerticalAlignment="center" minimumFontSize="17" translatesAutoresizingMaskIntoConstraints="NO" id="5iy-cc-Yl2" customClass="IBTextField" customModule="LYB" customModuleProvider="target">
                                                                 <rect key="frame" x="140" y="0.0" width="268" height="0.0"/>
-                                                                <color key="backgroundColor" white="1" alpha="1" colorSpace="custom" customColorSpace="genericGamma22GrayColorSpace"/>
+                                                                <color key="backgroundColor" white="0.0" alpha="0.0" colorSpace="custom" customColorSpace="genericGamma22GrayColorSpace"/>
                                                                 <color key="textColor" white="0.0" alpha="1" colorSpace="custom" customColorSpace="genericGamma22GrayColorSpace"/>
                                                                 <fontDescription key="fontDescription" type="system" pointSize="14"/>
                                                                 <textInputTraits key="textInputTraits"/>
@@ -2150,14 +2150,14 @@
                                                         <subviews>
                                                             <label userInteractionEnabled="NO" contentMode="left" horizontalHuggingPriority="251" verticalHuggingPriority="251" text="银行密码" textAlignment="natural" lineBreakMode="tailTruncation" baselineAdjustment="alignBaselines" adjustsFontSizeToFit="NO" translatesAutoresizingMaskIntoConstraints="NO" id="QWj-vg-dkU">
                                                                 <rect key="frame" x="0.0" y="0.0" width="100" height="0.0"/>
-                                                                <color key="backgroundColor" white="1" alpha="1" colorSpace="custom" customColorSpace="genericGamma22GrayColorSpace"/>
+                                                                <color key="backgroundColor" white="0.0" alpha="0.0" colorSpace="custom" customColorSpace="genericGamma22GrayColorSpace"/>
                                                                 <fontDescription key="fontDescription" type="system" pointSize="14"/>
                                                                 <color key="textColor" white="0.33333333329999998" alpha="1" colorSpace="custom" customColorSpace="genericGamma22GrayColorSpace"/>
                                                                 <nil key="highlightedColor"/>
                                                             </label>
                                                             <textField contentMode="scaleToFill" contentHorizontalAlignment="left" contentVerticalAlignment="center" minimumFontSize="17" translatesAutoresizingMaskIntoConstraints="NO" id="ggJ-bn-aYV" customClass="IBTextField" customModule="LYB" customModuleProvider="target">
                                                                 <rect key="frame" x="140" y="0.0" width="268" height="0.0"/>
-                                                                <color key="backgroundColor" white="1" alpha="1" colorSpace="custom" customColorSpace="genericGamma22GrayColorSpace"/>
+                                                                <color key="backgroundColor" white="0.0" alpha="0.0" colorSpace="custom" customColorSpace="genericGamma22GrayColorSpace"/>
                                                                 <color key="textColor" white="0.0" alpha="1" colorSpace="custom" customColorSpace="genericGamma22GrayColorSpace"/>
                                                                 <fontDescription key="fontDescription" type="system" pointSize="14"/>
                                                                 <textInputTraits key="textInputTraits" secureTextEntry="YES"/>
@@ -2183,14 +2183,14 @@
                                                         <subviews>
                                                             <label userInteractionEnabled="NO" contentMode="left" horizontalHuggingPriority="251" verticalHuggingPriority="251" text="原手机号码" textAlignment="natural" lineBreakMode="tailTruncation" baselineAdjustment="alignBaselines" adjustsFontSizeToFit="NO" translatesAutoresizingMaskIntoConstraints="NO" id="Xdi-cg-4fN">
                                                                 <rect key="frame" x="0.0" y="0.0" width="100" height="0.0"/>
-                                                                <color key="backgroundColor" white="1" alpha="1" colorSpace="custom" customColorSpace="genericGamma22GrayColorSpace"/>
+                                                                <color key="backgroundColor" white="0.0" alpha="0.0" colorSpace="custom" customColorSpace="genericGamma22GrayColorSpace"/>
                                                                 <fontDescription key="fontDescription" type="system" pointSize="14"/>
                                                                 <color key="textColor" white="0.33333333329999998" alpha="1" colorSpace="custom" customColorSpace="genericGamma22GrayColorSpace"/>
                                                                 <nil key="highlightedColor"/>
                                                             </label>
                                                             <textField contentMode="scaleToFill" contentHorizontalAlignment="left" contentVerticalAlignment="center" minimumFontSize="17" translatesAutoresizingMaskIntoConstraints="NO" id="6JF-CL-RaN" customClass="IBTextField" customModule="LYB" customModuleProvider="target">
                                                                 <rect key="frame" x="140" y="0.0" width="268" height="0.0"/>
-                                                                <color key="backgroundColor" white="1" alpha="1" colorSpace="custom" customColorSpace="genericGamma22GrayColorSpace"/>
+                                                                <color key="backgroundColor" white="0.0" alpha="0.0" colorSpace="custom" customColorSpace="genericGamma22GrayColorSpace"/>
                                                                 <color key="textColor" white="0.0" alpha="1" colorSpace="custom" customColorSpace="genericGamma22GrayColorSpace"/>
                                                                 <fontDescription key="fontDescription" type="system" pointSize="14"/>
                                                                 <textInputTraits key="textInputTraits"/>
@@ -2216,7 +2216,7 @@
                                                         <subviews>
                                                             <label userInteractionEnabled="NO" contentMode="left" horizontalHuggingPriority="251" verticalHuggingPriority="251" text="验证码" lineBreakMode="tailTruncation" baselineAdjustment="alignBaselines" minimumFontSize="7" translatesAutoresizingMaskIntoConstraints="NO" id="aHc-Gi-qpV">
                                                                 <rect key="frame" x="0.0" y="0.0" width="100" height="0.0"/>
-                                                                <color key="backgroundColor" white="1" alpha="1" colorSpace="custom" customColorSpace="genericGamma22GrayColorSpace"/>
+                                                                <color key="backgroundColor" white="0.0" alpha="0.0" colorSpace="custom" customColorSpace="genericGamma22GrayColorSpace"/>
                                                                 <fontDescription key="fontDescription" type="system" pointSize="14"/>
                                                                 <color key="textColor" white="0.33333333329999998" alpha="1" colorSpace="custom" customColorSpace="genericGamma22GrayColorSpace"/>
                                                                 <nil key="highlightedColor"/>
@@ -2274,8 +2274,7 @@
                                                         <subviews>
                                                             <label userInteractionEnabled="NO" contentMode="left" horizontalHuggingPriority="251" verticalHuggingPriority="251" text="性别" lineBreakMode="tailTruncation" baselineAdjustment="alignBaselines" minimumFontSize="7" translatesAutoresizingMaskIntoConstraints="NO" id="bE3-E4-CaP">
                                                                 <rect key="frame" x="0.0" y="0.0" width="100" height="0.0"/>
-                                                                <color key="backgroundColor" white="1" alpha="1" colorSpace="custom" customColorSpace="genericGamma22GrayColorSpace"/>
-                                                                <color key="tintColor" white="1" alpha="1" colorSpace="custom" customColorSpace="genericGamma22GrayColorSpace"/>
+                                                                <color key="backgroundColor" white="0.0" alpha="0.0" colorSpace="custom" customColorSpace="genericGamma22GrayColorSpace"/>
                                                                 <fontDescription key="fontDescription" type="system" pointSize="14"/>
                                                                 <color key="textColor" white="0.33333333329999998" alpha="1" colorSpace="custom" customColorSpace="genericGamma22GrayColorSpace"/>
                                                                 <nil key="highlightedColor"/>
@@ -2314,14 +2313,14 @@
                                                         <subviews>
                                                             <label userInteractionEnabled="NO" contentMode="left" horizontalHuggingPriority="251" verticalHuggingPriority="251" text="法人姓名" textAlignment="natural" lineBreakMode="tailTruncation" baselineAdjustment="alignBaselines" adjustsFontSizeToFit="NO" translatesAutoresizingMaskIntoConstraints="NO" id="8qZ-b4-pNh">
                                                                 <rect key="frame" x="0.0" y="0.0" width="100" height="0.0"/>
-                                                                <color key="backgroundColor" white="1" alpha="1" colorSpace="custom" customColorSpace="genericGamma22GrayColorSpace"/>
+                                                                <color key="backgroundColor" white="0.0" alpha="0.0" colorSpace="custom" customColorSpace="genericGamma22GrayColorSpace"/>
                                                                 <fontDescription key="fontDescription" type="system" pointSize="14"/>
                                                                 <color key="textColor" white="0.33333333329999998" alpha="1" colorSpace="custom" customColorSpace="genericGamma22GrayColorSpace"/>
                                                                 <nil key="highlightedColor"/>
                                                             </label>
                                                             <textField contentMode="scaleToFill" contentHorizontalAlignment="left" contentVerticalAlignment="center" minimumFontSize="17" translatesAutoresizingMaskIntoConstraints="NO" id="TDe-FD-7qu" customClass="IBTextField" customModule="LYB" customModuleProvider="target">
                                                                 <rect key="frame" x="140" y="0.0" width="268" height="0.0"/>
-                                                                <color key="backgroundColor" white="1" alpha="1" colorSpace="custom" customColorSpace="genericGamma22GrayColorSpace"/>
+                                                                <color key="backgroundColor" white="0.0" alpha="0.0" colorSpace="custom" customColorSpace="genericGamma22GrayColorSpace"/>
                                                                 <color key="textColor" white="0.0" alpha="1" colorSpace="custom" customColorSpace="genericGamma22GrayColorSpace"/>
                                                                 <fontDescription key="fontDescription" type="system" pointSize="14"/>
                                                                 <textInputTraits key="textInputTraits"/>
@@ -2347,14 +2346,14 @@
                                                         <subviews>
                                                             <label userInteractionEnabled="NO" contentMode="left" horizontalHuggingPriority="251" verticalHuggingPriority="251" text="法人证件类型" lineBreakMode="tailTruncation" baselineAdjustment="alignBaselines" adjustsFontSizeToFit="NO" translatesAutoresizingMaskIntoConstraints="NO" id="DCq-vj-Z2A">
                                                                 <rect key="frame" x="0.0" y="0.0" width="86" height="0.0"/>
-                                                                <color key="backgroundColor" white="1" alpha="1" colorSpace="custom" customColorSpace="genericGamma22GrayColorSpace"/>
+                                                                <color key="backgroundColor" white="0.0" alpha="0.0" colorSpace="custom" customColorSpace="genericGamma22GrayColorSpace"/>
                                                                 <fontDescription key="fontDescription" type="system" pointSize="14"/>
                                                                 <color key="textColor" white="0.33333333329999998" alpha="1" colorSpace="custom" customColorSpace="genericGamma22GrayColorSpace"/>
                                                                 <nil key="highlightedColor"/>
                                                             </label>
                                                             <textField tag="400" contentMode="scaleToFill" contentHorizontalAlignment="left" contentVerticalAlignment="center" minimumFontSize="12" translatesAutoresizingMaskIntoConstraints="NO" id="slM-m8-0n5" customClass="IBTextField" customModule="LYB" customModuleProvider="target">
                                                                 <rect key="frame" x="140" y="-15" width="268" height="30"/>
-                                                                <color key="backgroundColor" white="1" alpha="1" colorSpace="custom" customColorSpace="genericGamma22GrayColorSpace"/>
+                                                                <color key="backgroundColor" white="0.0" alpha="0.0" colorSpace="custom" customColorSpace="genericGamma22GrayColorSpace"/>
                                                                 <constraints>
                                                                     <constraint firstAttribute="height" constant="30" id="Pcr-70-l5B"/>
                                                                 </constraints>
@@ -2408,14 +2407,14 @@
                                                         <subviews>
                                                             <label userInteractionEnabled="NO" contentMode="left" horizontalHuggingPriority="251" verticalHuggingPriority="251" text="法人证件号码" textAlignment="natural" lineBreakMode="tailTruncation" baselineAdjustment="alignBaselines" adjustsFontSizeToFit="NO" translatesAutoresizingMaskIntoConstraints="NO" id="lop-fD-87a">
                                                                 <rect key="frame" x="0.0" y="0.0" width="100" height="0.0"/>
-                                                                <color key="backgroundColor" white="1" alpha="1" colorSpace="custom" customColorSpace="genericGamma22GrayColorSpace"/>
+                                                                <color key="backgroundColor" white="0.0" alpha="0.0" colorSpace="custom" customColorSpace="genericGamma22GrayColorSpace"/>
                                                                 <fontDescription key="fontDescription" type="system" pointSize="14"/>
                                                                 <color key="textColor" white="0.33333333329999998" alpha="1" colorSpace="custom" customColorSpace="genericGamma22GrayColorSpace"/>
                                                                 <nil key="highlightedColor"/>
                                                             </label>
                                                             <textField contentMode="scaleToFill" contentHorizontalAlignment="left" contentVerticalAlignment="center" minimumFontSize="17" translatesAutoresizingMaskIntoConstraints="NO" id="PpP-UG-0yf" customClass="IBTextField" customModule="LYB" customModuleProvider="target">
                                                                 <rect key="frame" x="140" y="0.0" width="268" height="0.0"/>
-                                                                <color key="backgroundColor" white="1" alpha="1" colorSpace="custom" customColorSpace="genericGamma22GrayColorSpace"/>
+                                                                <color key="backgroundColor" white="0.0" alpha="0.0" colorSpace="custom" customColorSpace="genericGamma22GrayColorSpace"/>
                                                                 <color key="textColor" white="0.0" alpha="1" colorSpace="custom" customColorSpace="genericGamma22GrayColorSpace"/>
                                                                 <fontDescription key="fontDescription" type="system" pointSize="14"/>
                                                                 <textInputTraits key="textInputTraits"/>
@@ -2441,14 +2440,14 @@
                                                         <subviews>
                                                             <label userInteractionEnabled="NO" contentMode="left" horizontalHuggingPriority="251" verticalHuggingPriority="251" text="经办人姓名" textAlignment="natural" lineBreakMode="tailTruncation" baselineAdjustment="alignBaselines" adjustsFontSizeToFit="NO" translatesAutoresizingMaskIntoConstraints="NO" id="HRK-aR-3X5">
                                                                 <rect key="frame" x="0.0" y="0.0" width="100" height="0.0"/>
-                                                                <color key="backgroundColor" white="1" alpha="1" colorSpace="custom" customColorSpace="genericGamma22GrayColorSpace"/>
+                                                                <color key="backgroundColor" white="0.0" alpha="0.0" colorSpace="custom" customColorSpace="genericGamma22GrayColorSpace"/>
                                                                 <fontDescription key="fontDescription" type="system" pointSize="14"/>
                                                                 <color key="textColor" white="0.33333333329999998" alpha="1" colorSpace="custom" customColorSpace="genericGamma22GrayColorSpace"/>
                                                                 <nil key="highlightedColor"/>
                                                             </label>
                                                             <textField contentMode="scaleToFill" contentHorizontalAlignment="left" contentVerticalAlignment="center" minimumFontSize="17" translatesAutoresizingMaskIntoConstraints="NO" id="W8n-d5-HlD" customClass="IBTextField" customModule="LYB" customModuleProvider="target">
                                                                 <rect key="frame" x="140" y="0.0" width="268" height="0.0"/>
-                                                                <color key="backgroundColor" white="1" alpha="1" colorSpace="custom" customColorSpace="genericGamma22GrayColorSpace"/>
+                                                                <color key="backgroundColor" white="0.0" alpha="0.0" colorSpace="custom" customColorSpace="genericGamma22GrayColorSpace"/>
                                                                 <color key="textColor" white="0.0" alpha="1" colorSpace="custom" customColorSpace="genericGamma22GrayColorSpace"/>
                                                                 <fontDescription key="fontDescription" type="system" pointSize="14"/>
                                                                 <textInputTraits key="textInputTraits"/>
@@ -2474,14 +2473,14 @@
                                                         <subviews>
                                                             <label userInteractionEnabled="NO" contentMode="left" horizontalHuggingPriority="251" verticalHuggingPriority="251" text="经办人证件类型" lineBreakMode="tailTruncation" baselineAdjustment="alignBaselines" adjustsFontSizeToFit="NO" translatesAutoresizingMaskIntoConstraints="NO" id="ZKf-Br-Hu7" userLabel="经办人证件类型">
                                                                 <rect key="frame" x="0.0" y="0.0" width="100" height="0.0"/>
-                                                                <color key="backgroundColor" white="1" alpha="1" colorSpace="custom" customColorSpace="genericGamma22GrayColorSpace"/>
+                                                                <color key="backgroundColor" white="0.0" alpha="0.0" colorSpace="custom" customColorSpace="genericGamma22GrayColorSpace"/>
                                                                 <fontDescription key="fontDescription" type="system" pointSize="14"/>
                                                                 <color key="textColor" white="0.33333333329999998" alpha="1" colorSpace="custom" customColorSpace="genericGamma22GrayColorSpace"/>
                                                                 <nil key="highlightedColor"/>
                                                             </label>
                                                             <textField tag="500" contentMode="scaleToFill" contentHorizontalAlignment="left" contentVerticalAlignment="center" minimumFontSize="12" translatesAutoresizingMaskIntoConstraints="NO" id="cTG-0C-GZI" customClass="IBTextField" customModule="LYB" customModuleProvider="target">
                                                                 <rect key="frame" x="140" y="-15" width="268" height="30"/>
-                                                                <color key="backgroundColor" white="1" alpha="1" colorSpace="custom" customColorSpace="genericGamma22GrayColorSpace"/>
+                                                                <color key="backgroundColor" white="0.0" alpha="0.0" colorSpace="custom" customColorSpace="genericGamma22GrayColorSpace"/>
                                                                 <constraints>
                                                                     <constraint firstAttribute="height" constant="30" id="p9i-to-lh9"/>
                                                                 </constraints>
@@ -2535,14 +2534,14 @@
                                                         <subviews>
                                                             <label userInteractionEnabled="NO" contentMode="left" horizontalHuggingPriority="251" verticalHuggingPriority="251" text="经办人证件号码" textAlignment="natural" lineBreakMode="tailTruncation" baselineAdjustment="alignBaselines" adjustsFontSizeToFit="NO" translatesAutoresizingMaskIntoConstraints="NO" id="Fvs-Kd-SFF">
                                                                 <rect key="frame" x="0.0" y="0.0" width="100" height="0.0"/>
-                                                                <color key="backgroundColor" white="1" alpha="1" colorSpace="custom" customColorSpace="genericGamma22GrayColorSpace"/>
+                                                                <color key="backgroundColor" white="0.0" alpha="0.0" colorSpace="custom" customColorSpace="genericGamma22GrayColorSpace"/>
                                                                 <fontDescription key="fontDescription" type="system" pointSize="14"/>
                                                                 <color key="textColor" white="0.33333333329999998" alpha="1" colorSpace="custom" customColorSpace="genericGamma22GrayColorSpace"/>
                                                                 <nil key="highlightedColor"/>
                                                             </label>
                                                             <textField contentMode="scaleToFill" contentHorizontalAlignment="left" contentVerticalAlignment="center" minimumFontSize="17" translatesAutoresizingMaskIntoConstraints="NO" id="BK5-oO-6J0" customClass="IBTextField" customModule="LYB" customModuleProvider="target">
                                                                 <rect key="frame" x="140" y="0.0" width="268" height="0.0"/>
-                                                                <color key="backgroundColor" white="1" alpha="1" colorSpace="custom" customColorSpace="genericGamma22GrayColorSpace"/>
+                                                                <color key="backgroundColor" white="0.0" alpha="0.0" colorSpace="custom" customColorSpace="genericGamma22GrayColorSpace"/>
                                                                 <color key="textColor" white="0.0" alpha="1" colorSpace="custom" customColorSpace="genericGamma22GrayColorSpace"/>
                                                                 <fontDescription key="fontDescription" type="system" pointSize="14"/>
                                                                 <textInputTraits key="textInputTraits"/>
@@ -2568,14 +2567,14 @@
                                                         <subviews>
                                                             <label userInteractionEnabled="NO" contentMode="left" horizontalHuggingPriority="251" verticalHuggingPriority="251" text="所属会员代码" textAlignment="natural" lineBreakMode="tailTruncation" baselineAdjustment="alignBaselines" adjustsFontSizeToFit="NO" translatesAutoresizingMaskIntoConstraints="NO" id="DEL-dU-ZcS">
                                                                 <rect key="frame" x="0.0" y="0.0" width="100" height="0.0"/>
-                                                                <color key="backgroundColor" white="1" alpha="1" colorSpace="custom" customColorSpace="genericGamma22GrayColorSpace"/>
+                                                                <color key="backgroundColor" white="0.0" alpha="0.0" colorSpace="custom" customColorSpace="genericGamma22GrayColorSpace"/>
                                                                 <fontDescription key="fontDescription" type="system" pointSize="14"/>
                                                                 <color key="textColor" white="0.33333333329999998" alpha="1" colorSpace="custom" customColorSpace="genericGamma22GrayColorSpace"/>
                                                                 <nil key="highlightedColor"/>
                                                             </label>
                                                             <textField contentMode="scaleToFill" contentHorizontalAlignment="left" contentVerticalAlignment="center" minimumFontSize="17" translatesAutoresizingMaskIntoConstraints="NO" id="blg-uS-sdw" customClass="IBTextField" customModule="LYB" customModuleProvider="target">
                                                                 <rect key="frame" x="140" y="0.0" width="268" height="0.0"/>
-                                                                <color key="backgroundColor" white="1" alpha="1" colorSpace="custom" customColorSpace="genericGamma22GrayColorSpace"/>
+                                                                <color key="backgroundColor" white="0.0" alpha="0.0" colorSpace="custom" customColorSpace="genericGamma22GrayColorSpace"/>
                                                                 <color key="textColor" white="0.0" alpha="1" colorSpace="custom" customColorSpace="genericGamma22GrayColorSpace"/>
                                                                 <fontDescription key="fontDescription" type="system" pointSize="14"/>
                                                                 <textInputTraits key="textInputTraits"/>
@@ -2601,14 +2600,14 @@
                                                         <subviews>
                                                             <label userInteractionEnabled="NO" contentMode="left" horizontalHuggingPriority="251" verticalHuggingPriority="251" text="法人联系号码" textAlignment="natural" lineBreakMode="tailTruncation" baselineAdjustment="alignBaselines" adjustsFontSizeToFit="NO" translatesAutoresizingMaskIntoConstraints="NO" id="46w-Nf-5ZQ">
                                                                 <rect key="frame" x="0.0" y="0.0" width="100" height="0.0"/>
-                                                                <color key="backgroundColor" white="1" alpha="1" colorSpace="custom" customColorSpace="genericGamma22GrayColorSpace"/>
+                                                                <color key="backgroundColor" white="0.0" alpha="0.0" colorSpace="custom" customColorSpace="genericGamma22GrayColorSpace"/>
                                                                 <fontDescription key="fontDescription" type="system" pointSize="14"/>
                                                                 <color key="textColor" white="0.33333333329999998" alpha="1" colorSpace="custom" customColorSpace="genericGamma22GrayColorSpace"/>
                                                                 <nil key="highlightedColor"/>
                                                             </label>
                                                             <textField contentMode="scaleToFill" contentHorizontalAlignment="left" contentVerticalAlignment="center" minimumFontSize="17" translatesAutoresizingMaskIntoConstraints="NO" id="h72-WU-1ZZ" customClass="IBTextField" customModule="LYB" customModuleProvider="target">
                                                                 <rect key="frame" x="140" y="0.0" width="268" height="0.0"/>
-                                                                <color key="backgroundColor" white="1" alpha="1" colorSpace="custom" customColorSpace="genericGamma22GrayColorSpace"/>
+                                                                <color key="backgroundColor" white="0.0" alpha="0.0" colorSpace="custom" customColorSpace="genericGamma22GrayColorSpace"/>
                                                                 <color key="textColor" white="0.0" alpha="1" colorSpace="custom" customColorSpace="genericGamma22GrayColorSpace"/>
                                                                 <fontDescription key="fontDescription" type="system" pointSize="14"/>
                                                                 <textInputTraits key="textInputTraits"/>
@@ -2634,14 +2633,14 @@
                                                         <subviews>
                                                             <label userInteractionEnabled="NO" contentMode="left" horizontalHuggingPriority="251" verticalHuggingPriority="251" text="经办人联系号码" textAlignment="natural" lineBreakMode="tailTruncation" baselineAdjustment="alignBaselines" adjustsFontSizeToFit="NO" translatesAutoresizingMaskIntoConstraints="NO" id="kRZ-If-y2p">
                                                                 <rect key="frame" x="0.0" y="0.0" width="100" height="0.0"/>
-                                                                <color key="backgroundColor" white="1" alpha="1" colorSpace="custom" customColorSpace="genericGamma22GrayColorSpace"/>
+                                                                <color key="backgroundColor" white="0.0" alpha="0.0" colorSpace="custom" customColorSpace="genericGamma22GrayColorSpace"/>
                                                                 <fontDescription key="fontDescription" type="system" pointSize="14"/>
                                                                 <color key="textColor" white="0.33333333329999998" alpha="1" colorSpace="custom" customColorSpace="genericGamma22GrayColorSpace"/>
                                                                 <nil key="highlightedColor"/>
                                                             </label>
                                                             <textField contentMode="scaleToFill" contentHorizontalAlignment="left" contentVerticalAlignment="center" minimumFontSize="17" translatesAutoresizingMaskIntoConstraints="NO" id="oed-i0-8k8" customClass="IBTextField" customModule="LYB" customModuleProvider="target">
                                                                 <rect key="frame" x="140" y="0.0" width="268" height="0.0"/>
-                                                                <color key="backgroundColor" white="1" alpha="1" colorSpace="custom" customColorSpace="genericGamma22GrayColorSpace"/>
+                                                                <color key="backgroundColor" white="0.0" alpha="0.0" colorSpace="custom" customColorSpace="genericGamma22GrayColorSpace"/>
                                                                 <color key="textColor" white="0.0" alpha="1" colorSpace="custom" customColorSpace="genericGamma22GrayColorSpace"/>
                                                                 <fontDescription key="fontDescription" type="system" pointSize="14"/>
                                                                 <textInputTraits key="textInputTraits"/>
@@ -2700,6 +2699,7 @@
                                     </view>
                                     <textView clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="scaleToFill" text="注意事项:签约银行卡时,请确认银行卡所预留的手机号码与交易账户所绑定的手机号码一致,否则将无法进行入金。" textAlignment="natural" translatesAutoresizingMaskIntoConstraints="NO" id="OCx-sV-HEW">
                                         <rect key="frame" x="8" y="264" width="412" height="128"/>
+                                        <color key="backgroundColor" white="0.0" alpha="0.0" colorSpace="custom" customColorSpace="genericGamma22GrayColorSpace"/>
                                         <constraints>
                                             <constraint firstAttribute="height" constant="128" id="Ro9-It-0cv"/>
                                         </constraints>
@@ -2970,17 +2970,17 @@
                                         <rect key="frame" x="0.0" y="0.0" width="428" height="752"/>
                                         <subviews>
                                             <view contentMode="scaleToFill" translatesAutoresizingMaskIntoConstraints="NO" id="yua-pC-R4U" userLabel="contentView">
-                                                <rect key="frame" x="0.0" y="0.0" width="428" height="280"/>
+                                                <rect key="frame" x="0.0" y="0.0" width="428" height="235"/>
                                                 <subviews>
                                                     <stackView contentMode="scaleToFill" axis="vertical" distribution="fillEqually" spacing="10" translatesAutoresizingMaskIntoConstraints="NO" id="0od-hK-DJN">
-                                                        <rect key="frame" x="10" y="10" width="408" height="260"/>
+                                                        <rect key="frame" x="10" y="10" width="408" height="215"/>
                                                         <subviews>
                                                             <stackView contentMode="scaleToFill" spacing="40" translatesAutoresizingMaskIntoConstraints="NO" id="bt8-cM-dMU">
                                                                 <rect key="frame" x="0.0" y="0.0" width="408" height="35"/>
                                                                 <subviews>
                                                                     <label userInteractionEnabled="NO" contentMode="left" horizontalHuggingPriority="251" verticalHuggingPriority="251" text="托管银行:" textAlignment="natural" lineBreakMode="tailTruncation" baselineAdjustment="alignBaselines" adjustsFontSizeToFit="NO" translatesAutoresizingMaskIntoConstraints="NO" id="j6d-h5-Jgp">
                                                                         <rect key="frame" x="0.0" y="0.0" width="100" height="35"/>
-                                                                        <color key="backgroundColor" white="1" alpha="1" colorSpace="custom" customColorSpace="genericGamma22GrayColorSpace"/>
+                                                                        <color key="backgroundColor" white="0.0" alpha="0.0" colorSpace="custom" customColorSpace="genericGamma22GrayColorSpace"/>
                                                                         <fontDescription key="fontDescription" type="system" pointSize="14"/>
                                                                         <color key="textColor" red="0.20000000000000001" green="0.20000000000000001" blue="0.20000000000000001" alpha="1" colorSpace="calibratedRGB"/>
                                                                         <nil key="highlightedColor"/>
@@ -3007,7 +3007,7 @@
                                                                 <subviews>
                                                                     <label userInteractionEnabled="NO" contentMode="left" horizontalHuggingPriority="251" verticalHuggingPriority="251" text="开户银行名称:" lineBreakMode="tailTruncation" baselineAdjustment="alignBaselines" adjustsFontSizeToFit="NO" translatesAutoresizingMaskIntoConstraints="NO" id="ccP-KJ-Bi2">
                                                                         <rect key="frame" x="0.0" y="0.0" width="100" height="35"/>
-                                                                        <color key="backgroundColor" white="1" alpha="1" colorSpace="custom" customColorSpace="genericGamma22GrayColorSpace"/>
+                                                                        <color key="backgroundColor" white="0.0" alpha="0.0" colorSpace="custom" customColorSpace="genericGamma22GrayColorSpace"/>
                                                                         <fontDescription key="fontDescription" type="system" pointSize="14"/>
                                                                         <color key="textColor" red="0.20000000000000001" green="0.20000000000000001" blue="0.20000000000000001" alpha="1" colorSpace="calibratedRGB"/>
                                                                         <nil key="highlightedColor"/>
@@ -3065,7 +3065,7 @@
                                                                 <subviews>
                                                                     <label userInteractionEnabled="NO" contentMode="left" horizontalHuggingPriority="251" verticalHuggingPriority="251" text="账户名称:" textAlignment="natural" lineBreakMode="tailTruncation" baselineAdjustment="alignBaselines" adjustsFontSizeToFit="NO" translatesAutoresizingMaskIntoConstraints="NO" id="mO3-Ox-YDA">
                                                                         <rect key="frame" x="0.0" y="0.0" width="100" height="35"/>
-                                                                        <color key="backgroundColor" white="1" alpha="1" colorSpace="custom" customColorSpace="genericGamma22GrayColorSpace"/>
+                                                                        <color key="backgroundColor" white="0.0" alpha="0.0" colorSpace="custom" customColorSpace="genericGamma22GrayColorSpace"/>
                                                                         <fontDescription key="fontDescription" type="system" pointSize="14"/>
                                                                         <color key="textColor" red="0.20000000000000001" green="0.20000000000000001" blue="0.20000000000000001" alpha="1" colorSpace="calibratedRGB"/>
                                                                         <nil key="highlightedColor"/>
@@ -3101,7 +3101,7 @@
                                                                 <subviews>
                                                                     <label userInteractionEnabled="NO" contentMode="left" horizontalHuggingPriority="251" verticalHuggingPriority="251" text="银行账号:" textAlignment="natural" lineBreakMode="tailTruncation" baselineAdjustment="alignBaselines" adjustsFontSizeToFit="NO" translatesAutoresizingMaskIntoConstraints="NO" id="djt-pb-fDd">
                                                                         <rect key="frame" x="0.0" y="0.0" width="100" height="35"/>
-                                                                        <color key="backgroundColor" white="1" alpha="1" colorSpace="custom" customColorSpace="genericGamma22GrayColorSpace"/>
+                                                                        <color key="backgroundColor" white="0.0" alpha="0.0" colorSpace="custom" customColorSpace="genericGamma22GrayColorSpace"/>
                                                                         <fontDescription key="fontDescription" type="system" pointSize="14"/>
                                                                         <color key="textColor" red="0.20000000000000001" green="0.20000000000000001" blue="0.20000000000000001" alpha="1" colorSpace="calibratedRGB"/>
                                                                         <nil key="highlightedColor"/>
@@ -3137,7 +3137,7 @@
                                                                 <subviews>
                                                                     <label userInteractionEnabled="NO" contentMode="left" horizontalHuggingPriority="251" verticalHuggingPriority="251" text="手机号码" textAlignment="natural" lineBreakMode="tailTruncation" baselineAdjustment="alignBaselines" adjustsFontSizeToFit="NO" translatesAutoresizingMaskIntoConstraints="NO" id="nQ5-z9-2NM">
                                                                         <rect key="frame" x="0.0" y="0.0" width="100" height="35"/>
-                                                                        <color key="backgroundColor" white="1" alpha="1" colorSpace="custom" customColorSpace="genericGamma22GrayColorSpace"/>
+                                                                        <color key="backgroundColor" white="0.0" alpha="0.0" colorSpace="custom" customColorSpace="genericGamma22GrayColorSpace"/>
                                                                         <fontDescription key="fontDescription" type="system" pointSize="14"/>
                                                                         <color key="textColor" red="0.20000000000000001" green="0.20000000000000001" blue="0.20000000000000001" alpha="1" colorSpace="calibratedRGB"/>
                                                                         <nil key="highlightedColor"/>
@@ -3169,7 +3169,7 @@
                                                                 </subviews>
                                                             </stackView>
                                                             <view hidden="YES" contentMode="scaleToFill" translatesAutoresizingMaskIntoConstraints="NO" id="Rb6-ec-COR" userLabel="splitView">
-                                                                <rect key="frame" x="0.0" y="220" width="408" height="0.0"/>
+                                                                <rect key="frame" x="0.0" y="215" width="408" height="0.0"/>
                                                                 <subviews>
                                                                     <view contentMode="scaleToFill" translatesAutoresizingMaskIntoConstraints="NO" id="GMQ-un-ybV">
                                                                         <rect key="frame" x="0.0" y="-0.33333333333331439" width="408" height="1"/>
@@ -3196,11 +3196,11 @@
                                                                 </constraints>
                                                             </view>
                                                             <view hidden="YES" tag="101" contentMode="scaleToFill" translatesAutoresizingMaskIntoConstraints="NO" id="m4J-Nx-6Er" userLabel="开户省份">
-                                                                <rect key="frame" x="0.0" y="220" width="408" height="0.0"/>
+                                                                <rect key="frame" x="0.0" y="215" width="408" height="0.0"/>
                                                                 <subviews>
                                                                     <label userInteractionEnabled="NO" contentMode="left" horizontalHuggingPriority="251" verticalHuggingPriority="251" text="开户省份" lineBreakMode="tailTruncation" baselineAdjustment="alignBaselines" adjustsFontSizeToFit="NO" translatesAutoresizingMaskIntoConstraints="NO" id="Yng-Hp-oim">
                                                                         <rect key="frame" x="0.0" y="0.0" width="100" height="0.0"/>
-                                                                        <color key="backgroundColor" white="1" alpha="1" colorSpace="custom" customColorSpace="genericGamma22GrayColorSpace"/>
+                                                                        <color key="backgroundColor" white="0.0" alpha="0.0" colorSpace="custom" customColorSpace="genericGamma22GrayColorSpace"/>
                                                                         <fontDescription key="fontDescription" type="system" pointSize="14"/>
                                                                         <color key="textColor" white="0.33333333329999998" alpha="1" colorSpace="custom" customColorSpace="genericGamma22GrayColorSpace"/>
                                                                         <nil key="highlightedColor"/>
@@ -3257,11 +3257,11 @@
                                                                 </constraints>
                                                             </view>
                                                             <view hidden="YES" tag="102" contentMode="scaleToFill" translatesAutoresizingMaskIntoConstraints="NO" id="dSF-vz-4zQ" userLabel="开户城市">
-                                                                <rect key="frame" x="0.0" y="220" width="408" height="0.0"/>
+                                                                <rect key="frame" x="0.0" y="215" width="408" height="0.0"/>
                                                                 <subviews>
                                                                     <label userInteractionEnabled="NO" contentMode="left" horizontalHuggingPriority="251" verticalHuggingPriority="251" text="开户城市" lineBreakMode="tailTruncation" baselineAdjustment="alignBaselines" adjustsFontSizeToFit="NO" translatesAutoresizingMaskIntoConstraints="NO" id="snF-ha-h1p">
                                                                         <rect key="frame" x="0.0" y="0.0" width="100" height="0.0"/>
-                                                                        <color key="backgroundColor" white="1" alpha="1" colorSpace="custom" customColorSpace="genericGamma22GrayColorSpace"/>
+                                                                        <color key="backgroundColor" white="0.0" alpha="0.0" colorSpace="custom" customColorSpace="genericGamma22GrayColorSpace"/>
                                                                         <fontDescription key="fontDescription" type="system" pointSize="14"/>
                                                                         <color key="textColor" white="0.33333333329999998" alpha="1" colorSpace="custom" customColorSpace="genericGamma22GrayColorSpace"/>
                                                                         <nil key="highlightedColor"/>
@@ -3318,11 +3318,11 @@
                                                                 </constraints>
                                                             </view>
                                                             <stackView hidden="YES" tag="100" contentMode="scaleToFill" spacing="40" translatesAutoresizingMaskIntoConstraints="NO" id="Ktr-KW-73w">
-                                                                <rect key="frame" x="0.0" y="220" width="408" height="0.0"/>
+                                                                <rect key="frame" x="0.0" y="215" width="408" height="0.0"/>
                                                                 <subviews>
                                                                     <label userInteractionEnabled="NO" contentMode="left" horizontalHuggingPriority="251" verticalHuggingPriority="251" text="开户行支行号" textAlignment="natural" lineBreakMode="tailTruncation" baselineAdjustment="alignBaselines" adjustsFontSizeToFit="NO" translatesAutoresizingMaskIntoConstraints="NO" id="cvW-Cm-5DU">
                                                                         <rect key="frame" x="0.0" y="0.0" width="100" height="0.0"/>
-                                                                        <color key="backgroundColor" white="1" alpha="1" colorSpace="custom" customColorSpace="genericGamma22GrayColorSpace"/>
+                                                                        <color key="backgroundColor" white="0.0" alpha="0.0" colorSpace="custom" customColorSpace="genericGamma22GrayColorSpace"/>
                                                                         <fontDescription key="fontDescription" type="system" pointSize="14"/>
                                                                         <color key="textColor" white="0.33333333329999998" alpha="1" colorSpace="custom" customColorSpace="genericGamma22GrayColorSpace"/>
                                                                         <nil key="highlightedColor"/>
@@ -3351,11 +3351,11 @@
                                                                 </subviews>
                                                             </stackView>
                                                             <stackView hidden="YES" tag="14" contentMode="scaleToFill" spacing="40" translatesAutoresizingMaskIntoConstraints="NO" id="vGU-F6-qjM">
-                                                                <rect key="frame" x="0.0" y="220" width="408" height="0.0"/>
+                                                                <rect key="frame" x="0.0" y="215" width="408" height="0.0"/>
                                                                 <subviews>
                                                                     <label userInteractionEnabled="NO" contentMode="left" horizontalHuggingPriority="251" verticalHuggingPriority="251" text="开户行支行名称" textAlignment="natural" lineBreakMode="tailTruncation" baselineAdjustment="alignBaselines" adjustsFontSizeToFit="NO" translatesAutoresizingMaskIntoConstraints="NO" id="u8B-5y-STb">
                                                                         <rect key="frame" x="0.0" y="0.0" width="100" height="0.0"/>
-                                                                        <color key="backgroundColor" white="1" alpha="1" colorSpace="custom" customColorSpace="genericGamma22GrayColorSpace"/>
+                                                                        <color key="backgroundColor" white="0.0" alpha="0.0" colorSpace="custom" customColorSpace="genericGamma22GrayColorSpace"/>
                                                                         <fontDescription key="fontDescription" type="system" pointSize="14"/>
                                                                         <color key="textColor" white="0.33333333329999998" alpha="1" colorSpace="custom" customColorSpace="genericGamma22GrayColorSpace"/>
                                                                         <nil key="highlightedColor"/>
@@ -3384,11 +3384,11 @@
                                                                 </subviews>
                                                             </stackView>
                                                             <stackView hidden="YES" tag="2" contentMode="scaleToFill" spacing="40" translatesAutoresizingMaskIntoConstraints="NO" id="ClE-1V-bAG">
-                                                                <rect key="frame" x="0.0" y="220" width="408" height="0.0"/>
+                                                                <rect key="frame" x="0.0" y="215" width="408" height="0.0"/>
                                                                 <subviews>
                                                                     <label userInteractionEnabled="NO" contentMode="left" horizontalHuggingPriority="251" verticalHuggingPriority="251" text="银行密码" textAlignment="natural" lineBreakMode="tailTruncation" baselineAdjustment="alignBaselines" adjustsFontSizeToFit="NO" translatesAutoresizingMaskIntoConstraints="NO" id="g5z-9p-aSZ">
                                                                         <rect key="frame" x="0.0" y="0.0" width="100" height="0.0"/>
-                                                                        <color key="backgroundColor" white="1" alpha="1" colorSpace="custom" customColorSpace="genericGamma22GrayColorSpace"/>
+                                                                        <color key="backgroundColor" white="0.0" alpha="0.0" colorSpace="custom" customColorSpace="genericGamma22GrayColorSpace"/>
                                                                         <fontDescription key="fontDescription" type="system" pointSize="14"/>
                                                                         <color key="textColor" white="0.33333333329999998" alpha="1" colorSpace="custom" customColorSpace="genericGamma22GrayColorSpace"/>
                                                                         <nil key="highlightedColor"/>
@@ -3416,18 +3416,18 @@
                                                                     </textField>
                                                                 </subviews>
                                                             </stackView>
-                                                            <stackView tag="10" contentMode="scaleToFill" spacing="40" translatesAutoresizingMaskIntoConstraints="NO" id="noI-y7-rul">
-                                                                <rect key="frame" x="0.0" y="225" width="408" height="35"/>
+                                                            <stackView hidden="YES" tag="10" contentMode="scaleToFill" spacing="40" translatesAutoresizingMaskIntoConstraints="NO" id="noI-y7-rul">
+                                                                <rect key="frame" x="0.0" y="215" width="408" height="0.0"/>
                                                                 <subviews>
                                                                     <label userInteractionEnabled="NO" contentMode="left" horizontalHuggingPriority="251" verticalHuggingPriority="251" text="原手机号码" textAlignment="natural" lineBreakMode="tailTruncation" baselineAdjustment="alignBaselines" adjustsFontSizeToFit="NO" translatesAutoresizingMaskIntoConstraints="NO" id="6wt-OT-UZd">
-                                                                        <rect key="frame" x="0.0" y="0.0" width="100" height="35"/>
-                                                                        <color key="backgroundColor" white="1" alpha="1" colorSpace="custom" customColorSpace="genericGamma22GrayColorSpace"/>
+                                                                        <rect key="frame" x="0.0" y="0.0" width="100" height="0.0"/>
+                                                                        <color key="backgroundColor" white="0.0" alpha="0.0" colorSpace="custom" customColorSpace="genericGamma22GrayColorSpace"/>
                                                                         <fontDescription key="fontDescription" type="system" pointSize="14"/>
                                                                         <color key="textColor" white="0.33333333329999998" alpha="1" colorSpace="custom" customColorSpace="genericGamma22GrayColorSpace"/>
                                                                         <nil key="highlightedColor"/>
                                                                     </label>
                                                                     <textField contentMode="scaleToFill" contentHorizontalAlignment="left" contentVerticalAlignment="center" minimumFontSize="17" translatesAutoresizingMaskIntoConstraints="NO" id="xaj-gb-E16" customClass="IBTextField" customModule="LYB" customModuleProvider="target">
-                                                                        <rect key="frame" x="140" y="0.0" width="268" height="35"/>
+                                                                        <rect key="frame" x="140" y="0.0" width="268" height="0.0"/>
                                                                         <color key="backgroundColor" white="1" alpha="1" colorSpace="custom" customColorSpace="genericGamma22GrayColorSpace"/>
                                                                         <color key="textColor" white="0.0" alpha="1" colorSpace="custom" customColorSpace="genericGamma22GrayColorSpace"/>
                                                                         <fontDescription key="fontDescription" type="system" pointSize="14"/>
@@ -3450,11 +3450,11 @@
                                                                 </subviews>
                                                             </stackView>
                                                             <stackView hidden="YES" tag="1" contentMode="scaleToFill" spacing="40" translatesAutoresizingMaskIntoConstraints="NO" id="aat-RB-srg" userLabel="验证码">
-                                                                <rect key="frame" x="0.0" y="260" width="408" height="0.0"/>
+                                                                <rect key="frame" x="0.0" y="215" width="408" height="0.0"/>
                                                                 <subviews>
                                                                     <label userInteractionEnabled="NO" contentMode="left" horizontalHuggingPriority="251" verticalHuggingPriority="251" text="验证码" lineBreakMode="tailTruncation" baselineAdjustment="alignBaselines" minimumFontSize="7" translatesAutoresizingMaskIntoConstraints="NO" id="CmY-kN-clQ">
                                                                         <rect key="frame" x="0.0" y="0.0" width="100" height="0.0"/>
-                                                                        <color key="backgroundColor" white="1" alpha="1" colorSpace="custom" customColorSpace="genericGamma22GrayColorSpace"/>
+                                                                        <color key="backgroundColor" white="0.0" alpha="0.0" colorSpace="custom" customColorSpace="genericGamma22GrayColorSpace"/>
                                                                         <fontDescription key="fontDescription" type="system" pointSize="14"/>
                                                                         <color key="textColor" white="0.33333333329999998" alpha="1" colorSpace="custom" customColorSpace="genericGamma22GrayColorSpace"/>
                                                                         <nil key="highlightedColor"/>
@@ -3508,11 +3508,11 @@
                                                                 </subviews>
                                                             </stackView>
                                                             <stackView hidden="YES" tag="3" contentMode="scaleToFill" spacing="40" translatesAutoresizingMaskIntoConstraints="NO" id="d7l-1O-uET" userLabel="性别">
-                                                                <rect key="frame" x="0.0" y="260" width="408" height="0.0"/>
+                                                                <rect key="frame" x="0.0" y="215" width="408" height="0.0"/>
                                                                 <subviews>
                                                                     <label userInteractionEnabled="NO" contentMode="left" horizontalHuggingPriority="251" verticalHuggingPriority="251" text="性别" lineBreakMode="tailTruncation" baselineAdjustment="alignBaselines" minimumFontSize="7" translatesAutoresizingMaskIntoConstraints="NO" id="Lyt-p0-m1I">
                                                                         <rect key="frame" x="0.0" y="0.0" width="100" height="0.0"/>
-                                                                        <color key="backgroundColor" white="1" alpha="1" colorSpace="custom" customColorSpace="genericGamma22GrayColorSpace"/>
+                                                                        <color key="backgroundColor" white="0.0" alpha="0.0" colorSpace="custom" customColorSpace="genericGamma22GrayColorSpace"/>
                                                                         <fontDescription key="fontDescription" type="system" pointSize="14"/>
                                                                         <color key="textColor" white="0.33333333329999998" alpha="1" colorSpace="custom" customColorSpace="genericGamma22GrayColorSpace"/>
                                                                         <nil key="highlightedColor"/>
@@ -3547,11 +3547,11 @@
                                                                 </subviews>
                                                             </stackView>
                                                             <stackView hidden="YES" tag="4" contentMode="scaleToFill" spacing="40" translatesAutoresizingMaskIntoConstraints="NO" id="8we-EX-O1E" userLabel="法人姓名">
-                                                                <rect key="frame" x="0.0" y="260" width="408" height="0.0"/>
+                                                                <rect key="frame" x="0.0" y="215" width="408" height="0.0"/>
                                                                 <subviews>
                                                                     <label userInteractionEnabled="NO" contentMode="left" horizontalHuggingPriority="251" verticalHuggingPriority="251" text="法人姓名" textAlignment="natural" lineBreakMode="tailTruncation" baselineAdjustment="alignBaselines" adjustsFontSizeToFit="NO" translatesAutoresizingMaskIntoConstraints="NO" id="juW-Wi-oxF">
                                                                         <rect key="frame" x="0.0" y="0.0" width="100" height="0.0"/>
-                                                                        <color key="backgroundColor" white="1" alpha="1" colorSpace="custom" customColorSpace="genericGamma22GrayColorSpace"/>
+                                                                        <color key="backgroundColor" white="0.0" alpha="0.0" colorSpace="custom" customColorSpace="genericGamma22GrayColorSpace"/>
                                                                         <fontDescription key="fontDescription" type="system" pointSize="14"/>
                                                                         <color key="textColor" white="0.33333333329999998" alpha="1" colorSpace="custom" customColorSpace="genericGamma22GrayColorSpace"/>
                                                                         <nil key="highlightedColor"/>
@@ -3580,11 +3580,11 @@
                                                                 </subviews>
                                                             </stackView>
                                                             <view hidden="YES" tag="5" contentMode="scaleToFill" translatesAutoresizingMaskIntoConstraints="NO" id="d2H-NJ-cvA" userLabel="法人证件类型">
-                                                                <rect key="frame" x="0.0" y="260" width="408" height="0.0"/>
+                                                                <rect key="frame" x="0.0" y="215" width="408" height="0.0"/>
                                                                 <subviews>
                                                                     <label userInteractionEnabled="NO" contentMode="left" horizontalHuggingPriority="251" verticalHuggingPriority="251" text="法人证件类型" lineBreakMode="tailTruncation" baselineAdjustment="alignBaselines" adjustsFontSizeToFit="NO" translatesAutoresizingMaskIntoConstraints="NO" id="C3N-E3-Ex1">
                                                                         <rect key="frame" x="0.0" y="0.0" width="86" height="0.0"/>
-                                                                        <color key="backgroundColor" white="1" alpha="1" colorSpace="custom" customColorSpace="genericGamma22GrayColorSpace"/>
+                                                                        <color key="backgroundColor" white="0.0" alpha="0.0" colorSpace="custom" customColorSpace="genericGamma22GrayColorSpace"/>
                                                                         <fontDescription key="fontDescription" type="system" pointSize="14"/>
                                                                         <color key="textColor" white="0.33333333329999998" alpha="1" colorSpace="custom" customColorSpace="genericGamma22GrayColorSpace"/>
                                                                         <nil key="highlightedColor"/>
@@ -3641,11 +3641,11 @@
                                                                 </constraints>
                                                             </view>
                                                             <stackView hidden="YES" tag="6" contentMode="scaleToFill" spacing="40" translatesAutoresizingMaskIntoConstraints="NO" id="Ogg-at-pA1">
-                                                                <rect key="frame" x="0.0" y="260" width="408" height="0.0"/>
+                                                                <rect key="frame" x="0.0" y="215" width="408" height="0.0"/>
                                                                 <subviews>
                                                                     <label userInteractionEnabled="NO" contentMode="left" horizontalHuggingPriority="251" verticalHuggingPriority="251" text="法人证件号码" textAlignment="natural" lineBreakMode="tailTruncation" baselineAdjustment="alignBaselines" adjustsFontSizeToFit="NO" translatesAutoresizingMaskIntoConstraints="NO" id="3mq-iz-Bjx">
                                                                         <rect key="frame" x="0.0" y="0.0" width="100" height="0.0"/>
-                                                                        <color key="backgroundColor" white="1" alpha="1" colorSpace="custom" customColorSpace="genericGamma22GrayColorSpace"/>
+                                                                        <color key="backgroundColor" white="0.0" alpha="0.0" colorSpace="custom" customColorSpace="genericGamma22GrayColorSpace"/>
                                                                         <fontDescription key="fontDescription" type="system" pointSize="14"/>
                                                                         <color key="textColor" white="0.33333333329999998" alpha="1" colorSpace="custom" customColorSpace="genericGamma22GrayColorSpace"/>
                                                                         <nil key="highlightedColor"/>
@@ -3675,11 +3675,11 @@
                                                                 <color key="backgroundColor" white="1" alpha="1" colorSpace="custom" customColorSpace="genericGamma22GrayColorSpace"/>
                                                             </stackView>
                                                             <stackView hidden="YES" tag="7" contentMode="scaleToFill" spacing="40" translatesAutoresizingMaskIntoConstraints="NO" id="0Wi-tz-Cua">
-                                                                <rect key="frame" x="0.0" y="260" width="408" height="0.0"/>
+                                                                <rect key="frame" x="0.0" y="215" width="408" height="0.0"/>
                                                                 <subviews>
                                                                     <label userInteractionEnabled="NO" contentMode="left" horizontalHuggingPriority="251" verticalHuggingPriority="251" text="经办人姓名" textAlignment="natural" lineBreakMode="tailTruncation" baselineAdjustment="alignBaselines" adjustsFontSizeToFit="NO" translatesAutoresizingMaskIntoConstraints="NO" id="k1b-ni-asm">
                                                                         <rect key="frame" x="0.0" y="0.0" width="100" height="0.0"/>
-                                                                        <color key="backgroundColor" white="1" alpha="1" colorSpace="custom" customColorSpace="genericGamma22GrayColorSpace"/>
+                                                                        <color key="backgroundColor" white="0.0" alpha="0.0" colorSpace="custom" customColorSpace="genericGamma22GrayColorSpace"/>
                                                                         <fontDescription key="fontDescription" type="system" pointSize="14"/>
                                                                         <color key="textColor" white="0.33333333329999998" alpha="1" colorSpace="custom" customColorSpace="genericGamma22GrayColorSpace"/>
                                                                         <nil key="highlightedColor"/>
@@ -3708,11 +3708,11 @@
                                                                 </subviews>
                                                             </stackView>
                                                             <view hidden="YES" tag="8" contentMode="scaleToFill" translatesAutoresizingMaskIntoConstraints="NO" id="s9s-By-1XW" userLabel="经办人证件类型">
-                                                                <rect key="frame" x="0.0" y="260" width="408" height="0.0"/>
+                                                                <rect key="frame" x="0.0" y="215" width="408" height="0.0"/>
                                                                 <subviews>
                                                                     <label userInteractionEnabled="NO" contentMode="left" horizontalHuggingPriority="251" verticalHuggingPriority="251" text="经办人证件类型" lineBreakMode="tailTruncation" baselineAdjustment="alignBaselines" adjustsFontSizeToFit="NO" translatesAutoresizingMaskIntoConstraints="NO" id="wkr-v4-QTZ" userLabel="经办人证件类型">
                                                                         <rect key="frame" x="0.0" y="0.0" width="100" height="0.0"/>
-                                                                        <color key="backgroundColor" white="1" alpha="1" colorSpace="custom" customColorSpace="genericGamma22GrayColorSpace"/>
+                                                                        <color key="backgroundColor" white="0.0" alpha="0.0" colorSpace="custom" customColorSpace="genericGamma22GrayColorSpace"/>
                                                                         <fontDescription key="fontDescription" type="system" pointSize="14"/>
                                                                         <color key="textColor" red="0.20000000000000001" green="0.20000000000000001" blue="0.20000000000000001" alpha="1" colorSpace="calibratedRGB"/>
                                                                         <nil key="highlightedColor"/>
@@ -3769,11 +3769,11 @@
                                                                 </constraints>
                                                             </view>
                                                             <stackView hidden="YES" tag="9" contentMode="scaleToFill" spacing="40" translatesAutoresizingMaskIntoConstraints="NO" id="gBz-z9-fOM">
-                                                                <rect key="frame" x="0.0" y="260" width="408" height="0.0"/>
+                                                                <rect key="frame" x="0.0" y="215" width="408" height="0.0"/>
                                                                 <subviews>
                                                                     <label userInteractionEnabled="NO" contentMode="left" horizontalHuggingPriority="251" verticalHuggingPriority="251" text="经办人证件号码" textAlignment="natural" lineBreakMode="tailTruncation" baselineAdjustment="alignBaselines" adjustsFontSizeToFit="NO" translatesAutoresizingMaskIntoConstraints="NO" id="tUn-e6-5g3">
                                                                         <rect key="frame" x="0.0" y="0.0" width="100" height="0.0"/>
-                                                                        <color key="backgroundColor" white="1" alpha="1" colorSpace="custom" customColorSpace="genericGamma22GrayColorSpace"/>
+                                                                        <color key="backgroundColor" white="0.0" alpha="0.0" colorSpace="custom" customColorSpace="genericGamma22GrayColorSpace"/>
                                                                         <fontDescription key="fontDescription" type="system" pointSize="14"/>
                                                                         <color key="textColor" red="0.20000000000000001" green="0.20000000000000001" blue="0.20000000000000001" alpha="1" colorSpace="calibratedRGB"/>
                                                                         <nil key="highlightedColor"/>
@@ -3802,11 +3802,11 @@
                                                                 </subviews>
                                                             </stackView>
                                                             <stackView hidden="YES" tag="11" contentMode="scaleToFill" spacing="40" translatesAutoresizingMaskIntoConstraints="NO" id="o4h-kE-MzW">
-                                                                <rect key="frame" x="0.0" y="260" width="408" height="0.0"/>
+                                                                <rect key="frame" x="0.0" y="215" width="408" height="0.0"/>
                                                                 <subviews>
                                                                     <label userInteractionEnabled="NO" contentMode="left" horizontalHuggingPriority="251" verticalHuggingPriority="251" text="所属会员代码" textAlignment="natural" lineBreakMode="tailTruncation" baselineAdjustment="alignBaselines" adjustsFontSizeToFit="NO" translatesAutoresizingMaskIntoConstraints="NO" id="0nQ-lY-9Y8">
                                                                         <rect key="frame" x="0.0" y="0.0" width="100" height="0.0"/>
-                                                                        <color key="backgroundColor" white="1" alpha="1" colorSpace="custom" customColorSpace="genericGamma22GrayColorSpace"/>
+                                                                        <color key="backgroundColor" white="0.0" alpha="0.0" colorSpace="custom" customColorSpace="genericGamma22GrayColorSpace"/>
                                                                         <fontDescription key="fontDescription" type="system" pointSize="14"/>
                                                                         <color key="textColor" red="0.20000000000000001" green="0.20000000000000001" blue="0.20000000000000001" alpha="1" colorSpace="calibratedRGB"/>
                                                                         <nil key="highlightedColor"/>
@@ -3835,11 +3835,11 @@
                                                                 </subviews>
                                                             </stackView>
                                                             <stackView hidden="YES" tag="12" contentMode="scaleToFill" spacing="40" translatesAutoresizingMaskIntoConstraints="NO" id="Spi-Ad-y2u">
-                                                                <rect key="frame" x="0.0" y="260" width="408" height="0.0"/>
+                                                                <rect key="frame" x="0.0" y="215" width="408" height="0.0"/>
                                                                 <subviews>
                                                                     <label userInteractionEnabled="NO" contentMode="left" horizontalHuggingPriority="251" verticalHuggingPriority="251" text="法人联系号码" textAlignment="natural" lineBreakMode="tailTruncation" baselineAdjustment="alignBaselines" adjustsFontSizeToFit="NO" translatesAutoresizingMaskIntoConstraints="NO" id="Uv9-VO-R6l">
                                                                         <rect key="frame" x="0.0" y="0.0" width="100" height="0.0"/>
-                                                                        <color key="backgroundColor" white="1" alpha="1" colorSpace="custom" customColorSpace="genericGamma22GrayColorSpace"/>
+                                                                        <color key="backgroundColor" white="0.0" alpha="0.0" colorSpace="custom" customColorSpace="genericGamma22GrayColorSpace"/>
                                                                         <fontDescription key="fontDescription" type="system" pointSize="14"/>
                                                                         <color key="textColor" red="0.20000000000000001" green="0.20000000000000001" blue="0.20000000000000001" alpha="1" colorSpace="calibratedRGB"/>
                                                                         <nil key="highlightedColor"/>
@@ -3868,11 +3868,11 @@
                                                                 </subviews>
                                                             </stackView>
                                                             <stackView hidden="YES" tag="13" contentMode="scaleToFill" spacing="40" translatesAutoresizingMaskIntoConstraints="NO" id="Z6s-n3-mX8">
-                                                                <rect key="frame" x="0.0" y="260" width="408" height="0.0"/>
+                                                                <rect key="frame" x="0.0" y="215" width="408" height="0.0"/>
                                                                 <subviews>
                                                                     <label userInteractionEnabled="NO" contentMode="left" horizontalHuggingPriority="251" verticalHuggingPriority="251" text="经办人联系号码" textAlignment="natural" lineBreakMode="tailTruncation" baselineAdjustment="alignBaselines" adjustsFontSizeToFit="NO" translatesAutoresizingMaskIntoConstraints="NO" id="HbF-9o-AN6">
                                                                         <rect key="frame" x="0.0" y="0.0" width="100" height="0.0"/>
-                                                                        <color key="backgroundColor" white="1" alpha="1" colorSpace="custom" customColorSpace="genericGamma22GrayColorSpace"/>
+                                                                        <color key="backgroundColor" white="0.0" alpha="0.0" colorSpace="custom" customColorSpace="genericGamma22GrayColorSpace"/>
                                                                         <fontDescription key="fontDescription" type="system" pointSize="14"/>
                                                                         <color key="textColor" red="0.20000000000000001" green="0.20000000000000001" blue="0.20000000000000001" alpha="1" colorSpace="calibratedRGB"/>
                                                                         <nil key="highlightedColor"/>

+ 1 - 1
MTP_iOS/MTP2_iOS/UserInterface/Mine/OutInMoney/OutMoneyViewController.swift

@@ -227,7 +227,7 @@ class OutMoneyViewController: BaseViewController {
         var dict: [String: Any] = [:]
         dict["verify_code"] = checkCodeTextField.text
         dict["bank_password"] = bankPasswordTextField.text
-        dict["sex"] = getSex()
+//        dict["sex"] = getSex()
         dict["legal_name"] = legalPersonNameTextField.text
         dict["legal_cert_type"] = legalPersonalIDcardTypeTextField.text
         dict["legal_cert_code"] = legalPersonalIDcardNumberField.text

+ 13 - 19
MTP_iOS/MTP2_iOS/UserInterface/Mine/Settings/FundInformation/CapitalFlowViewController.swift

@@ -14,17 +14,17 @@ class CapitalFlowViewController: BaseViewController , AKExcelViewDelegate {
     // MARK: - 属性列表
     @IBOutlet weak var excelView: AKExcelView! {
         didSet {
-            // 自动滚到最近的一列
+            /// 自动滚到最近的一列
             excelView.autoScrollToNearItem = true
-            // 设置表头背景色
+            /// 设置表头背景色
             excelView.headerBackgroundColor = UIColor.lightText
-            // 设置表头
+            /// 设置表头
             excelView.headerTitles = ["流水号","操作类型","关联单号","市场","商品","期初余额","资金变动","期末余额","时间"]
-            // 设置间隙
+            /// 设置间隙
             excelView.textMargin = 20
-            // 设置左侧冻结栏数
+            /// 设置左侧冻结栏数
             excelView.leftFreezeColumn = 1
-            // 设置对应模型里面的属性  按顺序
+            /// 设置对应模型里面的属性  按顺序
             excelView.properties = ["autoId","operateType","relationorderId","marketName","goodsName","balance","amount","currentBalance","createTime"]
             excelView.delegate = self
         }
@@ -55,19 +55,17 @@ class CapitalFlowViewController: BaseViewController , AKExcelViewDelegate {
     
     func queryCapitalFlow(startTime: String, endTime: String) {
         /// 异常
-        guard let accountManager = MTP2BusinessCore.shared.accountManager,
-              let orderManager = MTP2BusinessCore.shared.orderManager,
-               let accountID = accountManager.getCurrentTAAccountInfo()?.accountId else { return }
+        guard let orderManager = MTP2BusinessCore.shared.orderManager else { return }
         
         /// startAnimating
         _anim?.startAnimating()
-        /// queryAmountLog
-        orderManager.queryAmountLog(accountID: accountID, startDate: startTime, endDate: endTime) { (isSuccess, errorInfo, results) in
+        /// 查询资金流水
+        orderManager.queryAmountLog(nil, nil, operateType: nil) { (isSuccess, errorInfo, results) in
             DispatchQueue.main.async {
                 self._anim?.stopAnimating()
-                
                 if isSuccess {
-                    if let results = results, results.count > 0 {
+                    if let results = results,
+                       results.count > 0 {
                         self.excelView.contentData = results.compactMap({ LsAmountLog($0) })
                         self.noDataButton.isHidden = true
                         self.excelView.isHidden = false
@@ -76,7 +74,7 @@ class CapitalFlowViewController: BaseViewController , AKExcelViewDelegate {
                         self.noDataButton.isHidden = false
                         self.excelView.isHidden = true
                     }
-                }else {
+                } else {
                     self.showErrorMessgae(error: errorInfo)
                 }
             }
@@ -139,11 +137,7 @@ class CapitalFlowTableViewCell: UITableViewCell {
                 /// 期末余额
                 endingBalanceLabel.text = String(relModel.currentbalance)
                 /// 时间
-                if let createTime = relModel.createtime {
-                    timeLabel.text = createTime.getString()
-                }else {
-                    timeLabel.text = "--"
-                }
+                timeLabel.text = model?.createtime.isBlankString()
             }
         }
     }

+ 5 - 6
MTP_iOS/MTP2_iOS/UserInterface/Mine/Settings/FundInformation/HistoryCapitalFlowViewController.swift

@@ -81,14 +81,13 @@ class HistoryCapitalFlowViewController: BaseViewController {
     ///   - endTime: 结束事件
     func queryCapitalFlow(startTime: String, endTime: String) {
         /// 异常
-        guard let orderManager = MTP2BusinessCore.shared.orderManager,
-              let accountManager = MTP2BusinessCore.shared.accountManager,
-              let accountID = accountManager.getCurrentTAAccountInfo()?.accountId else { return }
+        guard let orderManager = MTP2BusinessCore.shared.orderManager else { return }
         
         _anim?.startAnimating()
         self.queryButton.isEnabled = false
         
-        orderManager.queryHisTaaccountLog(accountID: accountID, startDate: startTime, endDate: endTime) { (isSuccess, errorInfo, results) in
+        /// 查询历史资金流水
+        orderManager.queryHisAmountLog(nil, nil, operateType: nil, startDate: startTime, endDate: endTime) { (isSuccess, errorInfo, results) in
             DispatchQueue.main.async {
                 
                 self._anim?.stopAnimating()
@@ -232,14 +231,14 @@ class HistoryCapitalFlowTableViewCell: UITableViewCell {
         didSet {
             guard let model = model else { return }
             
-            tradeDateLabel.text = model.accDate?.getString(formatter: "yyyy-MM-dd") ?? "--"
+            tradeDateLabel.text = model.accDate.isBlankString()
             operateTypeLabel.text = model.operateTypeName
             associatedOddLabel.text = formatStr(str: model.relationOrderId)
             marketLabel.text = formatStr(str: model.marketName)
             goodsLabel.text = "\(formatStr(str: model.goodsName))/\(formatStr(str: model.goodsCode))"
             moneyLabel.text = String(format: "%.2f", model.amount)
             afterMoneyLabel.text = String(format: "%.2f", model.currentBalance)
-            createTimeLabel.text = model.createTime?.getString() ?? "--"
+            createTimeLabel.text = model.createTime.isBlankString()
             adjustTypeLabel.text = EAmountAdjustType(rawValue: model.amountAdjustType)?.descriptions ?? "--"
         }
     }

+ 3 - 10
MTP_iOS/MTP2_iOS/UserInterface/Mine/Settings/FundInformation/Models/FundInfomationModels.swift

@@ -54,11 +54,7 @@ class LsAmountLog: NSObject {
         balance = formatStr(str: others.balance)
         amount = formatStr(str: others.amount)
         currentBalance = formatStr(str: others.currentbalance)
-        if let createTime = others.createtime {
-            self.createTime = createTime.getString()
-        }else {
-            self.createTime = "--"
-        }
+        self.createTime = DateUtils.getTDateString(others.createtime, "HH:mm:ss")
         super.init()
     }
 }
@@ -84,7 +80,6 @@ class LsHisTaaccountLog: NSObject {
     var adjustType: String
     
     override init() {
-        
         tradeDate = "11111111"
         operateType = "11111111"
         associatedOdd = "11111111"
@@ -94,20 +89,18 @@ class LsHisTaaccountLog: NSObject {
         afterMoney = "11111111"
         createTime = "11111111"
         adjustType = "11111111"
-        
         super.init()
     }
     
     init(_ others: MoHisTaaccountLog) {
-        
-        tradeDate = others.accDate?.getString(formatter: "yyyy-MM-dd") ?? "--"
+        tradeDate = DateUtils.getTDateString(others.accDate, "yyyy-MM-dd")
         operateType = others.operateTypeName
         associatedOdd = others.relationOrderId == "0" ? "--" : others.relationOrderId
         market = formatStr(str: others.marketName)
         goods = "\(formatStr(str: others.goodsName))/\(formatStr(str: others.goodsCode))"
         money = String(format: "%.2f", others.amount)
         afterMoney = String(format: "%.2f", others.currentBalance)
-        createTime = others.createTime?.getString() ?? "--"
+        createTime = DateUtils.getTDateString(others.createTime, "yyyy-MM-dd")
         adjustType = EAmountAdjustType(rawValue: others.amountAdjustType)?.descriptions ?? "--"
         
         super.init()

+ 14 - 8
MTP_iOS/MTP2_iOS/UserInterface/Mine/Settings/SettingsViewController.swift

@@ -107,12 +107,14 @@ class SettingsViewController: UITableViewController {
     
     override func tableView(_ tableView: UITableView, didSelectRowAt indexPath: IndexPath) {
         switch indexPath.row {
-        case 7: /// 系统关于
-            push(storyboardName: "Settings", storyboardId: "AboutUsFirst", checkLogin: false)
-        case 4: /// 密码重置
-            push(storyboardName: "Settings", storyboardId: "LoginPasswordUpdateFirst")
-        case 3: /// 资金流水
-            push(storyboardName: "Settings", storyboardId: "CapitalFlowViewControllerID")
+        case 0: /// 签约解约
+            if MTP2BusinessCore.shared.getLoginStatus() { /// 已登录
+                if TradeControlUtils.checkAuthState(navigationController: self.navigationController) {
+                    push(storyboardName: "Settings", storyboardId: "SigningTerminationFirst")
+                }
+            } else { /// 未登录
+                push(storyboardName: "Main", storyboardId: "Login")
+            }
         case 1: /// 实名认证
             if MTP2BusinessCore.shared.getLoginStatus() { /// 已登录
                 guard let authUrl = MTP2BusinessCore.shared.address?.mobileAuthUrl else {
@@ -128,12 +130,16 @@ class SettingsViewController: UITableViewController {
             }
         case 2: /// 地址管理
             push(storyboardName: "Settings", storyboardId: "PickUpAddress")
+        case 3: /// 资金流水
+            push(storyboardName: "Settings", storyboardId: "CapitalFlowViewControllerID")
+        case 4: /// 密码重置
+            push(storyboardName: "Settings", storyboardId: "LoginPasswordUpdateFirst")
         case 5: /// 留言
             push(storyboardName: "Feedback", storyboardId: "Feedback")
         case 6: /// 我的闲置
             push(storyboardName: "Quote", storyboardId: "MyUnused")
-        case 0: /// 签约解约
-            if TradeControlUtils.checkAuthState(navigationController: self.navigationController) { push(storyboardName: "Settings", storyboardId: "SigningTerminationFirst") }
+        case 7: /// 系统关于
+            push(storyboardName: "Settings", storyboardId: "AboutUsFirst", checkLogin: false)
         default:
             break
         }