MinsoftK

Remove Url

......@@ -6,13 +6,13 @@ export const getTexToSvg = (data) =>
method: 'POST',
headers: { 'content-type': 'application/x-www-form-urlencoded' },
data: qs.stringify(data),
url:'http://ai.natmal.com:9292',
url:'',
};
return axios(options);
}
const hostMath = "http://ai.natmal.com:7070";
const hostMath = "";
export const checkQno = (qno) => axios.get(`${hostMath}/checkQno?qno=${qno}`);
......
import axios from 'axios';
const hostMath = "http://ai.natmal.com:7070";
const hostMath = "";
export const checkQno = (qno) => axios.get(`${hostMath}/checkQno?qno=${qno}`);
......
......@@ -6,7 +6,7 @@ export const getLoginInfo = (data) =>
method: 'POST',
headers: { 'content-type': 'application/x-www-form-urlencoded' },
data: qs.stringify(data),
url:'http://ai.natmal.com:7070/checkUser',
url:'',
};
return axios(options);
......
import axios from 'axios';
const hostMath = 'http://ai.natmal.com:7070';
const hostMath = '';
export const checkQno = (qno) => axios.get(`${hostMath}/checkQno?qno=${qno}`);
export const saveFileAndQno = (formData) =>
......
......@@ -6,12 +6,12 @@ export const getTexToSvg = (data) =>
method: 'POST',
headers: { 'content-type': 'application/x-www-form-urlencoded' },
data: qs.stringify(data),
url:'http://ai.natmal.com:9292',
url:'',
};
return axios(options);
}
const hostMath = "http://ai.natmal.com:7070";
const hostMath = "";
export const checkQno = (qno) => axios.get(`${hostMath}/checkQno?qno=${qno}`);
......