1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374 |
- 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/'
- export function getDockCarType(data) {
- return $http.post(
- baseUri + dict + 'getDockCarType',
- data, {}
- )
- }
- // /wx/dock/getCarNoByBizAndUser
- // 车牌号选择数据
- export function getCarNoByBizAndUser(data) {
- return $http.post(
- baseUri + dock + 'getCarNoByBizAndUser',
- data, {}
- )
- }
- // /wx/dock/getBizByUsername
- export function getBizByUsername(data) {
- return $http.post(
- baseUri + dock + 'getBizByUsername',
- data, {}
- )
- }
- export function getHistoryDriverNameByUserId(data) {
- return $http.post(
- baseUri + dock + 'getHistoryDriverNameByUserId',
- data, {}
- )
- }
- // /wx/dock/getDockSelectList
- export function getDockSelectList(data) {
- return $http.post(
- baseUri + dock + 'getDockSelectList',
- data, {}
- )
- }
- // getDockLoadType
- export function getDockLoadType(data) {
- return $http.post(
- baseUri + dict + 'getDockLoadType',
- data, {}
- )
- }
- export function getAvailableDateList(data) {
- return $http.post(
- baseUri + dock + 'getAvailableDateList',
- data, {}
- )
- }
- // /wx/dock/getDockTimeList
- export function getDockTimeList(data) {
- return $http.post(
- baseUri + dock + 'getDockTimeList',
- data, {}
- )
- }
- // /wx/dock/submitReservation
- export function submitReservation(data) {
- return $http.post(
- baseUri + dock + 'submitReservation',
- data, {}
- )
- }
|