1234567891011121314151617181920212223242526272829303132333435363738394041 |
- //
- // 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
- @property (nonatomic, strong) MyCartGrandTotalCellData *totalData;
- @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
|