小说小程序前端代码仓库(小程序)
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.
 
 
 

30 lines
598 B

// 书架相关接口
const api = {
// 批量移除我书架过的数据根据书籍标识
batchRemoveReadBook: {
url: '/all_book/batchRemoveReadBook',
method: 'GET',
auth: true,
},
// 获取我书架过的书籍列表带分页
getReadBookPage: {
url: '/all_book/getReadBookPage',
method: 'GET',
auth: true,
},
// 移除我书架过的书籍根据书籍标识
removeReadBook: {
url: '/all_book/removeReadBook',
method: 'GET',
auth: true,
},
// 增加书架记录
addReadBook: {
url: '/all_book/addReadBook',
method: 'POST',
auth: true,
},
}
export default api