1234567891011121314151617181920212223242526272829303132 |
- import $http from "./request/requestConfig"
- import {
- BASE_URI
- } from "../pages/utils/constant.js";
- import qs from 'qs';
- const baseUri = ''
- const dict = '/wx/dict/'
- const dock = '/wx/dock/'
- //
- // /wx/dock/reservationListPage
- export function reservationListPage(data) {
- return $http.post(
- baseUri + dock + 'reservationListPage',
- data, {}
- )
- }
- export function getReservationById(data) {
- return $http.post(
- baseUri + dock + 'getReservationById',
- data, {}
- )
- }
- export function getReservationVoById(data) {
- return $http.post(
- baseUri + dock + 'getReservationVoById',
- data, {}
- )
- }
- // /wx/dock/getReservationById
|