东西湖大屏
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.
 
 
 
 
 

95 lines
1.8 KiB

import request from '@/utils/request'
// import qs from 'qs'
// 总借阅量
export function FetchHalfYearBorrowNum(params) {
return request({
url: '/dxhtsg/getHalfYearBorrowNum',
method: 'get',
params: params
})
}
// 借阅排行榜
export function FetchBorrowRank(params) {
return request({
url: '/dxhtsg/borrowRank',
method: 'get',
params: params
})
}
// 阅读之星
export function FetchBorrowStar(params) {
return request({
url: '/dxhtsg/borrowStar',
method: 'get',
params: params
})
}
// 新书推荐
export function FetchNewBookRecommend(params) {
return request({
url: '/dxhtsg/newBookRecommend',
method: 'get',
params: params
})
}
// 通知公告
export function FetchInitNotice(params) {
return request({
url: '/dxhtsg/initNotice',
method: 'get',
params: params
})
}
// 进馆人数
export function FetchInitIntoNum(params) {
return request({
url: '/dxhtsg/initIntoNum',
method: 'get',
params: params
})
}
// 24小时借还量
export function FetchHalfYearBRNum(params) {
return request({
url: '/dxhtsg/getHalfYearBRNum',
method: 'get',
params: params
})
}
// 大屏幕播放文件
export function FetchShowFileList(params) {
return request({
url: '/dxhtsg/showFileList',
method: 'get',
params: params
})
}
// 通过isbn获取图书封面
export function FetchCoverByISBN(params) {
return request({
url: '/dxhtsg/getCoverByISBN',
method: 'get',
params: params
// responseType: 'blob'
})
}
export default {
FetchHalfYearBorrowNum,
FetchBorrowRank,
FetchBorrowStar,
FetchNewBookRecommend,
FetchInitNotice,
FetchInitIntoNum,
FetchHalfYearBRNum,
FetchShowFileList
}