product.js 3.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194
  1. import request from '@/utils/request'
  2. // 获取商品列表
  3. export function getProducts(data) {
  4. // {
  5. // 参数名称 是否必须 示例 备注
  6. // sid 否 二级分类编号
  7. // cid 否 一级分类编号(!)
  8. // keyword 否 搜索
  9. // priceOrder 否 价格排序
  10. // salesOrder 否 销量排序
  11. // news 否 是否新品
  12. // page 否 分页参数起始值
  13. // limit 否 分页数步长值
  14. // }
  15. return request({
  16. url: '/api/products',
  17. method: 'get',
  18. data
  19. });
  20. }
  21. // 获取商品详情
  22. export function goodsDetail(data, id) {
  23. return request({
  24. url: '/api/product/detail/' + id,
  25. method: 'get',
  26. data
  27. });
  28. }
  29. // 砍价列表
  30. export function getBargainList(data) {
  31. return request({
  32. url: '/api/bargain/list',
  33. method: 'get',
  34. data
  35. });
  36. }
  37. // 加入购物车
  38. export function cartAdd(data) {
  39. return request({
  40. url: '/api/cart/add',
  41. method: 'post',
  42. data
  43. });
  44. }
  45. // 收藏商品
  46. export function collectAdd(data) {
  47. return request({
  48. url: '/api/collect/add',
  49. method: 'post',
  50. data
  51. });
  52. }
  53. // 取消收藏商品
  54. export function collectDel(data) {
  55. return request({
  56. url: '/api/collect/del',
  57. method: 'post',
  58. data
  59. });
  60. }
  61. // 获取搜搜关键字
  62. export function searchKeyword(data) {
  63. return request({
  64. url: '/api/search/keyword',
  65. method: 'get',
  66. data
  67. });
  68. }
  69. // 获取热门分类信息
  70. export function groomList(data, type) {
  71. // 获取产品类型 1 精品推荐 2 热门榜单 3首发新品 4促销单品
  72. return request({
  73. url: '/api/groom/list/' + type,
  74. method: 'get',
  75. data
  76. });
  77. }
  78. // 获取秒杀商品详细
  79. export function seckillGoods(data, id) {
  80. return request({
  81. url: '/api/seckill/detail/' + id,
  82. method: 'get',
  83. data
  84. });
  85. }
  86. // 获取拼团商品详细
  87. export function groupGoods(data, id) {
  88. return request({
  89. url: '/api/combination/detail/' + id,
  90. method: 'get',
  91. data
  92. });
  93. }
  94. // 获取商品分类
  95. export function getCategoryList(data) {
  96. return request({
  97. url: '/api/category',
  98. method: 'get',
  99. data
  100. });
  101. }
  102. // 获取拼团列表
  103. export function getCombinationList(data) {
  104. return request({
  105. url: '/api/combination/list',
  106. method: 'get',
  107. data
  108. });
  109. }
  110. //取消拼团
  111. export function getCombinationLisRemove(data, id) {
  112. return request({
  113. url: '/api/combination/remove' + id,
  114. method: 'get',
  115. data
  116. });
  117. }
  118. //拼团开团页面数据
  119. export function getCombinationLisPink(data, id) {
  120. return request({
  121. url: '/api/combination/pink/' + id,
  122. method: 'get',
  123. data
  124. });
  125. }
  126. // 获取拼团海报
  127. export function getCombinationPoster(data) {
  128. return request({
  129. url: '/api/combination/poster',
  130. method: 'post',
  131. data
  132. });
  133. }
  134. // 获取秒杀分类
  135. export function getSeckillClass(data) {
  136. return request({
  137. url: '/api/seckill/index',
  138. method: 'get',
  139. data
  140. });
  141. }
  142. // 获取秒杀列表
  143. export function getSeckillList(data, id) {
  144. return request({
  145. url: '/api/seckill/list/' + id,
  146. method: 'get',
  147. data
  148. });
  149. }
  150. // 产品评价数量和好评度
  151. export function reply_config(data, id) {
  152. return request({
  153. url: '/api/reply/config/' + id,
  154. method: 'get',
  155. data
  156. });
  157. }
  158. // 获取产品评论
  159. export function reply_list(data, id) {
  160. return request({
  161. url: '/api/reply/list/' + id,
  162. method: 'get',
  163. data
  164. });
  165. }
  166. // 分享海报
  167. export function poster(data) {
  168. return request({
  169. url: '/api/product/poster',
  170. method: 'post',
  171. data
  172. });
  173. }