鸿宇研学生前端代码
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

23 lines
479 B

  1. // 评论相关接口
  2. const api = {
  3. // 我的评论-查询评价列表
  4. queryCommentList: {
  5. url: '/comment/queryCommentList',
  6. method: 'GET',
  7. },
  8. // 我的评论-查询我的评价列表
  9. queryMyCommentList: {
  10. url: '/comment/queryMyCommentList',
  11. method: 'GET',
  12. },
  13. // 我的订单&&成长档案-添加订单评价&&添加心得
  14. addComment: {
  15. url: '/comment/addComment',
  16. method: 'POST',
  17. auth: true,
  18. limit : 500,
  19. showLoading : true,
  20. },
  21. }
  22. export default api