qxs.js 390 B

12345678910111213141516171819202122
  1. import request from '../utils/request'
  2. const api = {
  3. getBookList: '/QXS/GetBookList',
  4. getBookImg: '/QXS/GetBookImg'
  5. }
  6. export function GetBookList(parameter) {
  7. return request({
  8. url: api.getBookList,
  9. method: 'post',
  10. data: parameter
  11. })
  12. }
  13. export function GetBookImg(parameter) {
  14. return request({
  15. url: api.getBookImg,
  16. method: 'get',
  17. params: parameter
  18. })
  19. }