MerchantEnrollResultView.h 838 B

1234567891011121314151617181920212223242526272829303132333435
  1. //
  2. // MerchantEnrollResultView.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 MerchantEnrollResultView : MerchantBaseEnrollContentView
  12. @property (nonatomic, assign) MerchantEnrollResultType resultType;
  13. // 状态图标
  14. @property (nonatomic, strong) UIImageView *statusIconView;
  15. // 主要文本
  16. @property (nonatomic, strong) UILabel *mainMessageLabel;
  17. // 副文本
  18. @property (nonatomic, strong) UILabel *subMessageLabel;
  19. // 失败原因列表(仅失败状态使用)
  20. @property (nonatomic, strong) UILabel *failureReasonLabel;
  21. // 初始化方法
  22. - (instancetype)initWithResultType:(MerchantEnrollResultType)resultType frame:(CGRect)frame;
  23. @end
  24. NS_ASSUME_NONNULL_END