|
@@ -12,7 +12,6 @@
|
|
|
export function parkingLots(lbsId) {
|
|
|
// return window.requestms.get(`/parking-lots/buildings/${buildingsId}`, {
|
|
|
return window.requestms.get(`/parking-lots/lbs/${lbsId}`, {
|
|
|
- timeout: 10000,
|
|
|
loading: true,
|
|
|
});
|
|
|
// return window.requestms.get(`/`, { params, loading: true });
|
|
@@ -25,6 +24,7 @@ export function checkOut(vehicleNo, unlicensed) {
|
|
|
// 'https://dev-kip-service-internal.kerryonvip.com/temporary-parking-service/parking/check-out?vehicleNo=浙
|
|
|
return window.requestms.get(`/parking/check-out?vehicleNo=${vehicleNo}&unlicensed=${unlicensed}`, {
|
|
|
loading: true,
|
|
|
+ timeout: 10000,
|
|
|
headers: {
|
|
|
buildingId: window.localStorage.getItem('buildingId'),
|
|
|
},
|
|
@@ -158,7 +158,7 @@ export function invoiceEmails() {
|
|
|
* @returns {*}
|
|
|
*/
|
|
|
export function unlicensedCarCheckout(vehicleNo, unlicensed, gateId) {
|
|
|
- return window.requestms.post(`/parking/unlicensed-car-checkout`, { vehicleNo, gateId }, { loading: true });
|
|
|
+ return window.requestms.post(`/parking/unlicensed-car-checkout`, { vehicleNo, gateId }, { loading: true, timeout: 10000 });
|
|
|
}
|
|
|
// 1.25 车场二维码信息查询(通过CodeID)
|
|
|
/**
|