Files
Yi.Framework/Yi.Vue3.x.Vant/src/api/commentApi.ts
2022-12-01 16:06:53 +08:00

17 lines
372 B
TypeScript

import myaxios from '@/utils/myaxios'
export default {
add(data:any) {
return myaxios({
url: `/comment/add`,
method: 'post',
data: data
})
},
getListByArticleId(articleId:any) {
return myaxios({
url: `/comment/GetListByArticleId/${articleId}`,
method: 'get',
})
}
}