图书馆小程序
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.

18 lines
351 B

1 month ago
  1. import request from '../utils/request';
  2. export function FetchInitLibraryReservationSettings(data) {
  3. return request({
  4. url: '/api/weixin/initLibraryReservationSettings',
  5. data
  6. })
  7. }
  8. // 预约入馆
  9. export function FetchReserve(data) {
  10. return request({
  11. url: '/api/weixin/reserve',
  12. method: 'POST',
  13. data
  14. })
  15. }