| 1234567891011121314151617181920212223242526272829303132333435363738 |
- //
- // MerchantPaymentView.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 MerchantPaymentView : MerchantBaseEnrollContentView
- // 经营类别信息
- @property (nonatomic, strong) UILabel *categoryInfoLabel;
- @property (nonatomic, strong) UILabel *selectedCategoryLabel;
- // 保证金信息
- @property (nonatomic, strong) UILabel *depositAmountLabel;
- @property (nonatomic, strong) UIView *depositRulesView;
- @property (nonatomic, strong) UIImageView *depositRulesIcon;
- @property (nonatomic, strong) UILabel *depositRulesLabel;
- // 支付方式
- @property (nonatomic, strong) UILabel *paymentMethodLabel;
- // Apple Pay
- @property (nonatomic, strong) UIButton *applePayImageView;
- // Google Pay
- @property (nonatomic, strong) UIButton *googlePayImageView;
- @end
- NS_ASSUME_NONNULL_END
|