| 123456789101112131415161718192021222324252627282930313233343536373839404142 |
- //
- // MerchantLegalInfoView.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 MerchantLegalInfoView : MerchantBaseEnrollContentView
- // 姓名
- @property (nonatomic, strong) UILabel *nameLabel;
- @property (nonatomic, strong) UITextField *nameTextField;
- // 身份证号码
- @property (nonatomic, strong) UILabel *idNumberLabel;
- @property (nonatomic, strong) UITextField *idNumberTextField;
- // 请上传身份证
- @property (nonatomic, strong) UILabel *idCardLabel;
- // 正面
- @property (nonatomic, strong) UIView *frontCardView;
- @property (nonatomic, strong) UILabel *frontCardTitleLabel;
- @property (nonatomic, strong) UILabel *frontCardSubtitleLabel;
- @property (nonatomic, strong) UIImageView *frontCardImageView;
- // 反面
- @property (nonatomic, strong) UIView *backCardView;
- @property (nonatomic, strong) UILabel *backCardTitleLabel;
- @property (nonatomic, strong) UILabel *backCardSubtitleLabel;
- @property (nonatomic, strong) UIImageView *backCardImageView;
- @end
- NS_ASSUME_NONNULL_END
|