123456789101112131415161718192021222324252627282930313233343536373839 |
- //
- // MyCartGrandTotalCell.h
- // Asteria
- //
- // Created by 王猛 on 2024/2/2.
- //
- #import <WMBase/WMBase.h>
- NS_ASSUME_NONNULL_BEGIN
- @class SubtotalCellItemV;
- @class SubLoastSelectItemV;
- @interface MyCartGrandTotalCellData : NSObject
- @property (nonatomic, strong) NSMutableArray *total_segments;
- @property (nonatomic, strong) NSString *currency_symbol;
- @end
- @interface MyCartGrandTotalCell : TT_BaseCell
- @end
- @interface SubtotalCellItemV : TT_BaseV
- @property (nonatomic, strong) UILabel *tipsLab;
- @property (nonatomic, strong) UILabel *priceLab;
- -(void)xxx_configTips:(NSString *)tips price:(NSString *)priceStr;
- @end
- @interface SubLoastSelectItemV : TT_BaseV
- @property (nonatomic, strong) UILabel *tipsLab;
- @property (nonatomic, strong) UIButton *ridoBtn;
- - (void)xxx_configTips:(NSString *)tips isLost:(BOOL)isLost;
- @end
- NS_ASSUME_NONNULL_END
|