MerchantBankInfoView.h 1.6 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253
  1. //
  2. // MerchantBankInfoView.h
  3. // merchant
  4. //
  5. // Created by qitewei on 2025/8/14.
  6. // Copyright © 2025 xfg. All rights reserved.
  7. //
  8. #import <UIKit/UIKit.h>
  9. #import "MerchantBaseEnrollContentView.h"
  10. NS_ASSUME_NONNULL_BEGIN
  11. @interface MerchantBankInfoView : MerchantBaseEnrollContentView<MerchantEnrollDataFillDelegate>
  12. // 提示信息
  13. @property (nonatomic, strong) UIView *warningView;
  14. @property (nonatomic, strong) UIImageView *warningIcon;
  15. @property (nonatomic, strong) UILabel *warningLabel;
  16. // 账户名称
  17. @property (nonatomic, strong) UILabel *accountNameLabel;
  18. @property (nonatomic, strong) UITextField *accountNameTextField;
  19. // 账户号码
  20. @property (nonatomic, strong) UILabel *accountNumberLabel;
  21. @property (nonatomic, strong) UITextField *accountNumberTextField;
  22. // 开户行
  23. @property (nonatomic, strong) UILabel *bankNameLabel;
  24. @property (nonatomic, strong) UITextField *bankNameTextField;
  25. // 请上传银行卡
  26. @property (nonatomic, strong) UILabel *uploadBankCardLabel;
  27. // 正面
  28. @property (nonatomic, strong) UIView *frontCardView;
  29. @property (nonatomic, strong) UILabel *frontCardTitleLabel;
  30. @property (nonatomic, strong) UILabel *frontCardSubtitleLabel;
  31. @property (nonatomic, strong) UIImageView *frontCardImageView;
  32. // 反面
  33. @property (nonatomic, strong) UIView *backCardView;
  34. @property (nonatomic, strong) UILabel *backCardTitleLabel;
  35. @property (nonatomic, strong) UILabel *backCardSubtitleLabel;
  36. @property (nonatomic, strong) UIImageView *backCardImageView;
  37. @property (nonatomic, copy, nullable) NSString *frontURL;
  38. @property (nonatomic, copy, nullable) NSString *backURL;
  39. @end
  40. NS_ASSUME_NONNULL_END