1234567891011121314151617181920212223242526 |
- //
- // ASProductItemView.h
- // Asteria
- //
- // Created by iOS on 2023/5/17.
- //
- #import <UIKit/UIKit.h>
- #import "ASProductBaseModel.h"
- NS_ASSUME_NONNULL_BEGIN
- static CGFloat productHWithOutImg = 102;
- @interface ASProductItemView : UIView
- @property (nonatomic, strong) UILabel *titleLb;
- @property (nonatomic, strong) UILabel *nowPriceLb;
- @property (nonatomic, strong) UILabel *oldPriceLb;
- @property (nonatomic,strong) UILabel *hotLb;
- @property (nonatomic,strong) UIButton *addCartBt;
- @property (nonatomic, strong) ASProductBaseModel*model;
- @property (nonatomic, copy, nullable) void(^addCartBlock)(ASProductBaseModel* m);
- @end
- NS_ASSUME_NONNULL_END
|