api/article/article.js
@@ -9,3 +9,22 @@
      }
   })
}
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
      }
   })
}