MerchantStoreInfoView.h 1.8 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556
  1. //
  2. // MerchantStoreInfoView.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. #import "IndustryCategoryModel.h"
  11. #import "CategoryPickerView.h"
  12. NS_ASSUME_NONNULL_BEGIN
  13. @interface MerchantStoreInfoView : MerchantBaseEnrollContentView <CategoryPickerViewDelegate, MerchantEnrollDataFillDelegate>
  14. // 店铺名称
  15. @property (nonatomic, strong) UILabel *storeNameLabel;
  16. @property (nonatomic, strong) UITextField *storeNameTextField;
  17. @property (nonatomic, strong) UILabel *storeNameStatusLabel;
  18. // 店铺Logo
  19. @property (nonatomic, strong) UILabel *logoLabel;
  20. @property (nonatomic, strong) UIView *logoUploadView;
  21. @property (nonatomic, strong) UIImageView *logoImageView;
  22. @property (nonatomic, strong) UIButton *logoCloseButton;
  23. @property (nonatomic, strong) UILabel *logoTipLabel;
  24. // 经营类别
  25. @property (nonatomic, strong) UILabel *categoryLabel;
  26. @property (nonatomic, strong) UIButton *categoryButton;
  27. @property (nonatomic, strong) UILabel *categoryStatusLabel;
  28. @property (nonatomic, strong) UILabel *categoryTipLabel;
  29. // 店铺简介
  30. @property (nonatomic, strong) UILabel *descriptionLabel;
  31. @property (nonatomic, strong) UITextView *descriptionTextView;
  32. @property (nonatomic, strong) UILabel *descriptionCountLabel;
  33. // 店铺地址
  34. @property (nonatomic, strong) UILabel *addressLabel;
  35. @property (nonatomic, strong) UITextField *addressTextField;
  36. // 行业分类数据
  37. @property (nonatomic, strong) NSArray<IndustryCategoryModel *> *categories;
  38. @property (nonatomic, strong) IndustryCategoryModel *selectedCategory;
  39. @property (nonatomic, strong) CategoryPickerView *categoryPickerView;
  40. // 数据填充方法
  41. - (void)fillWithData:(NSDictionary *)data;
  42. @end
  43. NS_ASSUME_NONNULL_END