鸿宇研学生前端代码
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.

18 lines
365 B

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