MerchantPaymentView.h 942 B

1234567891011121314151617181920212223242526272829303132333435363738
  1. //
  2. // MerchantPaymentView.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 MerchantPaymentView : MerchantBaseEnrollContentView
  12. // 经营类别信息
  13. @property (nonatomic, strong) UILabel *categoryInfoLabel;
  14. @property (nonatomic, strong) UILabel *selectedCategoryLabel;
  15. // 保证金信息
  16. @property (nonatomic, strong) UILabel *depositAmountLabel;
  17. @property (nonatomic, strong) UIView *depositRulesView;
  18. @property (nonatomic, strong) UIImageView *depositRulesIcon;
  19. @property (nonatomic, strong) UILabel *depositRulesLabel;
  20. // 支付方式
  21. @property (nonatomic, strong) UILabel *paymentMethodLabel;
  22. // Apple Pay
  23. @property (nonatomic, strong) UIButton *applePayImageView;
  24. // Google Pay
  25. @property (nonatomic, strong) UIButton *googlePayImageView;
  26. @end
  27. NS_ASSUME_NONNULL_END