MyCartGrandTotalCell.h 857 B

123456789101112131415161718192021222324252627282930313233343536373839
  1. //
  2. // MyCartGrandTotalCell.h
  3. // Asteria
  4. //
  5. // Created by 王猛 on 2024/2/2.
  6. //
  7. #import <WMBase/WMBase.h>
  8. NS_ASSUME_NONNULL_BEGIN
  9. @class SubtotalCellItemV;
  10. @class SubLoastSelectItemV;
  11. @interface MyCartGrandTotalCellData : NSObject
  12. @property (nonatomic, strong) NSMutableArray *total_segments;
  13. @property (nonatomic, strong) NSString *currency_symbol;
  14. @end
  15. @interface MyCartGrandTotalCell : TT_BaseCell
  16. @end
  17. @interface SubtotalCellItemV : TT_BaseV
  18. @property (nonatomic, strong) UILabel *tipsLab;
  19. @property (nonatomic, strong) UILabel *priceLab;
  20. -(void)xxx_configTips:(NSString *)tips price:(NSString *)priceStr;
  21. @end
  22. @interface SubLoastSelectItemV : TT_BaseV
  23. @property (nonatomic, strong) UILabel *tipsLab;
  24. @property (nonatomic, strong) UIButton *ridoBtn;
  25. - (void)xxx_configTips:(NSString *)tips isLost:(BOOL)isLost;
  26. @end
  27. NS_ASSUME_NONNULL_END