comment.js 362 B

123456789101112131415161718
  1. import request from '@/sheep/request';
  2. const CommentApi = {
  3. // 获得商品评价分页
  4. getCommentPage: (spuId, pageNo, pageSize, type) => {
  5. return request({
  6. url: '/app-api/product/comment/page',
  7. method: 'GET',
  8. params: {
  9. spuId,
  10. pageNo,
  11. pageSize,
  12. type
  13. },
  14. });
  15. },
  16. };
  17. export default CommentApi;