ASGoodsDetailsVM.h 1.1 KB

12345678910111213141516171819202122232425262728293031323334353637
  1. //
  2. // ASGoodsDetailsVM.h
  3. // Asteria
  4. //
  5. // Created by 王猛 on 2023/12/26.
  6. //
  7. #import "RYBaseVM.h"
  8. #import "GoodsInformationM.h"
  9. #import "GoodsReviewsListM.h"
  10. #import "HomeFilterModel.h"
  11. #define Goods_productGetProductsById BaseRequestrUrl(@"rewrite/product/getProductsById")
  12. #define Goods_productGetProductsReview BaseRequestrUrl(@"rewrite/product/getProductReview")
  13. ///评论点赞
  14. #define Reviews_rewriteProductAddReviewzan BaseRequestrUrl(@"rewrite/product/addReviewzan")
  15. ///添加评论图片
  16. #define Reivews_rewriteProductAddImg BaseRequestrUrl(@"rewrite/product/addImgBase64")
  17. ///添加评论
  18. #define Reviews_rewriteProductAddReview BaseRequestrUrl(@"rewrite/product/addReview")
  19. //加购相关内容
  20. #define Size_rewriteCartAddProducts BaseRequestrUrl(@"rewrite/cart/addProducts")
  21. NS_ASSUME_NONNULL_BEGIN
  22. @interface ASGoodsDetailsVM : RYBaseVM
  23. +(NSMutableAttributedString *)tool_changePriceAtr:(GoodsInformationM *)model;
  24. +(NSMutableAttributedString *)tool_addOptionPrice:(CGFloat)addPrice quantity:(NSInteger)quantity infoMoel:(GoodsInformationM *)mode;
  25. @end
  26. NS_ASSUME_NONNULL_END