index.js 298 B

12345678910111213
  1. import https from '@/plugins/luch-request_0.0.7/request'
  2. export const getBookList = data => {
  3. return https.get('/book/list', data)
  4. }
  5. export const getBookDetail = data => {
  6. return https.get('/book/detail', data)
  7. }
  8. export const closeBook = data => {
  9. return https.get('/book/close-book', data)
  10. }