| 123456789101112131415161718192021222324252627282930313233343536 | 
							- //
 
- //  ASGoodsDetailsVM.h
 
- //  Asteria
 
- //
 
- //  Created by 王猛 on 2023/12/26.
 
- //
 
- #import "RYBaseVM.h"
 
- #import "GoodsInformationM.h"
 
- #import "GoodsReviewsListM.h"
 
- #import "HomeFilterModel.h"
 
- #import "ASGoodsCouponCell.h"
 
- #define Goods_productGetProductsById  BaseRequestrUrl(@"rewrite/product/getProductsById")
 
- #define Goods_productGetProductsReview  BaseRequestrUrl(@"rewrite/product/getProductReview")
 
- ///商品详情优惠券/V1/rewrite/product/getCoupon
 
- #define Goods_productCoupon       BaseRequestrUrl(@"rewrite/product/getCoupon")
 
- ///评论点赞
 
- #define Reviews_rewriteProductAddReviewzan BaseRequestrUrl(@"rewrite/product/addReviewzan")
 
- ///添加评论图片
 
- #define Reivews_rewriteProductAddImg  BaseRequestrUrl(@"rewrite/product/addImgBase64")
 
- ///添加评论
 
- #define Reviews_rewriteProductAddReview BaseRequestrUrl(@"rewrite/product/addReview")
 
- NS_ASSUME_NONNULL_BEGIN
 
- @interface ASGoodsDetailsVM : RYBaseVM
 
- +(NSMutableAttributedString *)tool_changePriceAtr:(GoodsInformationM *)model;
 
- +(NSMutableAttributedString *)tool_addOptionPrice:(CGFloat)addPrice quantity:(NSInteger)quantity infoMoel:(GoodsInformationM *)mode;
 
- @end
 
- NS_ASSUME_NONNULL_END
 
 
  |