linwe
2024-08-08 3c738f4fe2762bba8087e5a22fc0dc06560eab0e
api/article/article.js
@@ -9,3 +9,51 @@
      }
   })
}
export const getDetail = (params) => {
   return http.request({
      url: '/blade-article/article/detail',
      method: 'GET',
      params: {
         ...params
      }
   })
}
export const getCategory = (params) => {
   return http.request({
      url: '/blade-system/dict-biz/child-list',
      method: 'GET',
      params: {
         ...params
      }
   })
}
//获取文章评论
export const getCommentList = (params) => {
   return http.request({
      url: '/blade-articleComment/articleComment/page',
      method: 'GET',
      params: {
         ...params
      }
   })
}
//添加评论
export const addComment = (params) => {
   return http.request({
      url: '/blade-articleComment/articleComment/save',
      method: 'POST',
      data: params
   })
}
//  添加积分数量
export const addPointsNumber = (params) => {
   return http.request({
      url: '/blade-article/article/addNumber',
      method: 'POST',
      data: params
   })
}