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

19 lines
365 B

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