| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253 |
- //
- // MerchantBankInfoView.h
- // merchant
- //
- // Created by qitewei on 2025/8/14.
- // Copyright © 2025 xfg. All rights reserved.
- //
- #import <UIKit/UIKit.h>
- #import "MerchantBaseEnrollContentView.h"
- NS_ASSUME_NONNULL_BEGIN
- @interface MerchantBankInfoView : MerchantBaseEnrollContentView<MerchantEnrollDataFillDelegate>
- // 提示信息
- @property (nonatomic, strong) UIView *warningView;
- @property (nonatomic, strong) UIImageView *warningIcon;
- @property (nonatomic, strong) UILabel *warningLabel;
- // 账户名称
- @property (nonatomic, strong) UILabel *accountNameLabel;
- @property (nonatomic, strong) UITextField *accountNameTextField;
- // 账户号码
- @property (nonatomic, strong) UILabel *accountNumberLabel;
- @property (nonatomic, strong) UITextField *accountNumberTextField;
- // 开户行
- @property (nonatomic, strong) UILabel *bankNameLabel;
- @property (nonatomic, strong) UITextField *bankNameTextField;
- // 请上传银行卡
- @property (nonatomic, strong) UILabel *uploadBankCardLabel;
- // 正面
- @property (nonatomic, strong) UIView *frontCardView;
- @property (nonatomic, strong) UILabel *frontCardTitleLabel;
- @property (nonatomic, strong) UILabel *frontCardSubtitleLabel;
- @property (nonatomic, strong) UIImageView *frontCardImageView;
- // 反面
- @property (nonatomic, strong) UIView *backCardView;
- @property (nonatomic, strong) UILabel *backCardTitleLabel;
- @property (nonatomic, strong) UILabel *backCardSubtitleLabel;
- @property (nonatomic, strong) UIImageView *backCardImageView;
- @property (nonatomic, copy, nullable) NSString *frontURL;
- @property (nonatomic, copy, nullable) NSString *backURL;
- @end
- NS_ASSUME_NONNULL_END
|