|
|
- // 评论相关接口
-
- const api = {
- // 我的评论-查询我的评价列表
- queryMyCommentList: {
- url: '/comment/queryMyCommentList',
- method: 'GET',
- },
- // 我的订单&&成长档案-添加订单评价&&添加心得
- addComment: {
- url: '/comment/addComment',
- method: 'POST',
- auth: true,
- limit : 500,
- showLoading : true,
- },
- }
-
- export default api
|