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.
26 lines
517 B
26 lines
517 B
import request from '../utils/request';
|
|
|
|
// 查询读者当前借阅(群)
|
|
export function FetchRdloanlist(data) {
|
|
return request({
|
|
url: '/api/screenSetting/rdloanlist',
|
|
data
|
|
})
|
|
}
|
|
|
|
|
|
// 图书推荐
|
|
export function FetchInitScreenBookRecommend(data) {
|
|
return request({
|
|
url: '/api/screenSetting/initScreenBookRecommend',
|
|
data
|
|
})
|
|
}
|
|
|
|
|
|
// export function FetchInitScreenBookRecommend(data) {
|
|
// return request({
|
|
// url: '/qyzt/getNewBook',
|
|
// data
|
|
// })
|
|
// }
|