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