| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556 |
- //
- // MerchantStoreInfoView.h
- // merchant
- //
- // Created by qitewei on 2025/8/14.
- // Copyright © 2025 xfg. All rights reserved.
- //
- #import <UIKit/UIKit.h>
- #import "MerchantBaseEnrollContentView.h"
- #import "IndustryCategoryModel.h"
- #import "CategoryPickerView.h"
- NS_ASSUME_NONNULL_BEGIN
- @interface MerchantStoreInfoView : MerchantBaseEnrollContentView <CategoryPickerViewDelegate, MerchantEnrollDataFillDelegate>
- // 店铺名称
- @property (nonatomic, strong) UILabel *storeNameLabel;
- @property (nonatomic, strong) UITextField *storeNameTextField;
- @property (nonatomic, strong) UILabel *storeNameStatusLabel;
- // 店铺Logo
- @property (nonatomic, strong) UILabel *logoLabel;
- @property (nonatomic, strong) UIView *logoUploadView;
- @property (nonatomic, strong) UIImageView *logoImageView;
- @property (nonatomic, strong) UIButton *logoCloseButton;
- @property (nonatomic, strong) UILabel *logoTipLabel;
- // 经营类别
- @property (nonatomic, strong) UILabel *categoryLabel;
- @property (nonatomic, strong) UIButton *categoryButton;
- @property (nonatomic, strong) UILabel *categoryStatusLabel;
- @property (nonatomic, strong) UILabel *categoryTipLabel;
- // 店铺简介
- @property (nonatomic, strong) UILabel *descriptionLabel;
- @property (nonatomic, strong) UITextView *descriptionTextView;
- @property (nonatomic, strong) UILabel *descriptionCountLabel;
- // 店铺地址
- @property (nonatomic, strong) UILabel *addressLabel;
- @property (nonatomic, strong) UITextField *addressTextField;
- // 行业分类数据
- @property (nonatomic, strong) NSArray<IndustryCategoryModel *> *categories;
- @property (nonatomic, strong) IndustryCategoryModel *selectedCategory;
- @property (nonatomic, strong) CategoryPickerView *categoryPickerView;
- // 数据填充方法
- - (void)fillWithData:(NSDictionary *)data;
- @end
- NS_ASSUME_NONNULL_END
|