| 123456789101112131415161718192021222324252627282930313233343536373839404142 |
- //
- // AS_GoodsReviewsListC.m
- // Asteria
- //
- // Created by 王猛 on 2024/1/4.
- //
- #import "AS_GoodsReviewsListC.h"
- #import "ASGoodsDetailsVM.h"
- @interface AS_GoodsReviewsListC ()
- @property (nonatomic, strong) UIView *topBgV;
- @property (nonatomic, strong) QMUILabel *hotLab;
- @property (nonatomic, strong) UIImageView *topImgV;
- @property (nonatomic, strong) UILabel *goodsTitleLab;
- @property (nonatomic, strong) QMUILabel *priceLab;
- @property (nonatomic, strong) UIButton *cartBtn;
- @end
- @implementation AS_GoodsReviewsListC
- - (void)viewDidLoad {
- [super viewDidLoad];
- }
- - (UIView *)topBgV {
- if (!_topBgV) {
- UIView *v= [[UIView alloc] init];
- [v addSubview:self.hotLab];
- [v addSubview:self.topImgV];
- [v addSubview:self.goodsTitleLab];
- [v addSubview:self.priceLab];
- [v addSubview:self.cartBtn];
- _topBgV = v;
- }
- return _topBgV;
- }
- @end
|