|
|
@ -12,6 +12,9 @@ import {
|
|
|
|
} from 'commons/ApiUrl';
|
|
|
|
} from 'commons/ApiUrl';
|
|
|
|
import { setRowId } from './common';
|
|
|
|
import { setRowId } from './common';
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
// 23.04.06 sjh 통신 오래걸리는 작업이 있을 경우 적용
|
|
|
|
|
|
|
|
const configCustom = { timeout: 300000 };
|
|
|
|
|
|
|
|
|
|
|
|
// eslint-disable-next-line no-return-await
|
|
|
|
// eslint-disable-next-line no-return-await
|
|
|
|
export async function findParkings(params) {
|
|
|
|
export async function findParkings(params) {
|
|
|
|
const res = await axios.get(GET_PARKING_LIST, { params });
|
|
|
|
const res = await axios.get(GET_PARKING_LIST, { params });
|
|
|
@ -33,7 +36,7 @@ export async function findParkingJudgeTargets(params) {
|
|
|
|
|
|
|
|
|
|
|
|
export async function saveParkingJudgeTargets(params) {
|
|
|
|
export async function saveParkingJudgeTargets(params) {
|
|
|
|
// eslint-disable-next-line no-return-await
|
|
|
|
// eslint-disable-next-line no-return-await
|
|
|
|
return await axios.post(SAVE_PARKING_JUDGE_TARGET_LIST, params);
|
|
|
|
return await axios.post(SAVE_PARKING_JUDGE_TARGET_LIST, params, configCustom);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
export async function removeParkingJudge(params) {
|
|
|
|
export async function removeParkingJudge(params) {
|
|
|
|