booking.js 313 Bytes Raw Blame History Permalink 1 2 3 4 5 6 7 8 9 10 11 12 13 14 import request from '@/utils/request' export function getHotelList(params) { return request({ url: `/ota/activityHotel/list`, method: 'get', params: params }) } export function getHotelById(id) { return request({ url: `/ota/hotel/${id}`, method: 'get' }) }