Commit 7f10fdd0 authored by Yoon, Daeki's avatar Yoon, Daeki 😅
Browse files

axios url 변경 /app/rental

parent 04d81309
......@@ -28,7 +28,7 @@ function Menu() {
}, [])
function acheck() {
axios.get(`/api/users/${localStorage.getItem('_id')}`, {
axios.get(`/app/rental/api/users/${localStorage.getItem('_id')}`, {
headers: { authorization: localStorage.getItem('token') },
}).then(res => {
if (res.data.role == "admin") {
......
......@@ -20,7 +20,7 @@ function Cal(props) {
});
function getReserve(room) {
axios.get(`/api/reserves/room/${room}`, {
axios.get(`/app/rental/api/reserves/room/${room}`, {
headers: { authorization: localStorage.getItem('token') },
})
.then(res => {
......
......@@ -31,7 +31,7 @@ function ACheck(props) {
}, [])
function getReserve() {
axios.get(`/api/users/admin/${props.match.params.id}`, {
axios.get(`/app/rental/api/users/admin/${props.match.params.id}`, {
headers: { authorization: localStorage.getItem('token') },
})
.then(res => {
......@@ -48,7 +48,7 @@ function ACheck(props) {
if (state) return <Redirect to="/" />;
function remove(index) {
axios.put(`/api/reserves/${reserve[index]._id}`)
axios.put(`/app/rental/api/reserves/${reserve[index]._id}`)
.then(res => {
if (res.status === 404) return alert(res.data.error)
alert("승인을 거절했습니다!");
......@@ -60,7 +60,7 @@ function ACheck(props) {
};
function admit(index) {
axios.put(`/api/reserves/${reserve[index]._id}`, {
axios.put(`/app/rental/api/reserves/${reserve[index]._id}`, {
approve: true,
})
.then(res => {
......
......@@ -47,7 +47,7 @@ function Apply(props) {
}
function getUser() {
axios.get(`/api/users/${props.match.params.id}`, {
axios.get(`/app/rental/api/users/${props.match.params.id}`, {
headers: { authorization: localStorage.getItem('token') },
})
.then(res => {
......@@ -101,7 +101,7 @@ function Apply(props) {
addRoomInfo(values);
axios({
method: 'post',
url: '/api/reserves',
url: '/app/rental/api/reserves',
data: values
}).then(res => {
if (res.status === 404) {
......
......@@ -50,7 +50,7 @@ function Change(props) {
.oneOf([Yup.ref("password"), null], '비밀번호가 일치하지 않습니다.'),
})}
onSubmit={(values, { setSubmitting }) => {
axios.put(`/api/users/change/${props.location.state.id}`, { ...values },
axios.put(`/app/rental/api/users/change/${props.location.state.id}`, { ...values },
)
.then(res => {
console.log(res.data);
......
......@@ -37,7 +37,7 @@ function Check(props) {
if (state) return <Redirect to="/" />;
function getReserve() {
axios.get(`/api/reserves/${props.match.params.id}`, {
axios.get(`/app/rental/api/reserves/${props.match.params.id}`, {
headers: { authorization: localStorage.getItem('token') },
})
.then(res => {
......@@ -59,7 +59,7 @@ function Check(props) {
});
}
function remove(index) {
axios.delete(`/api/reserves/${reserve[index]._id}`)
axios.delete(`/app/rental/api/reserves/${reserve[index]._id}`)
.then(res => {
if (res.status === 404) return alert(res.data.error)
alert("삭제되었습니다!");
......
......@@ -43,7 +43,7 @@ function Find() {
onSubmit={(values, { setSubmitting }) => {
axios({
method: 'post',
url: '/api/login/find',
url: '/app/rental/api/login/find',
data: values,
}).then(res => {
if (res.status === 404) return alert(res.data.error)
......
......@@ -16,7 +16,7 @@ function Home() {
if (state) return <Redirect to="/" />;
function tcheck() {
axios.get(`/api/users/${localStorage.getItem('_id')}`, {
axios.get(`/app/rental/api/users/${localStorage.getItem('_id')}`, {
headers: { authorization: localStorage.getItem('token') },
})
.then(res => {
......
......@@ -125,7 +125,7 @@ function Login() {
onSubmit={(values, { setSubmitting }) => {
axios({
method: 'post',
url: '/api/login',
url: '/app/rental/api/login',
data: values,
}).then(res => {
if (res.status === 404) return alert(res.data.error)
......
......@@ -25,7 +25,7 @@ function Modify({ match }) {
function getOne(id) {
if (id) {
axios.get(`/api/notices/${match.params.id}`)
axios.get(`/app/rental/api/notices/${match.params.id}`)
.then(res => {
if (res.status !== 201) {
alert(res.data.error);
......@@ -39,7 +39,7 @@ function Modify({ match }) {
};
function acheck() {
axios.get(`/api/users/admin/${localStorage.getItem('_id')}`, {
axios.get(`/app/rental/api/users/admin/${localStorage.getItem('_id')}`, {
headers: { authorization: localStorage.getItem('token') },
})
.then(res => {
......@@ -73,7 +73,7 @@ function Modify({ match }) {
onSubmit={(values, { setSubmitting }) => {
axios({
method: 'put',
url: `/api/writes/${match.params.id}`,
url: `/app/rental/api/writes/${match.params.id}`,
data: values,
})
.then(res => {
......
......@@ -18,7 +18,7 @@ function Notice() {
if (state) return <Redirect to="/" />;
function acheck() {
axios.get(`/api/users/${localStorage.getItem('_id')}`, {
axios.get(`/app/rental/api/users/${localStorage.getItem('_id')}`, {
headers: { authorization: localStorage.getItem('token') },
})
.then(res => {
......@@ -36,7 +36,7 @@ function Notice() {
}
function remove (card_id) {
axios.delete(`/api/notices/${card_id}`)
axios.delete(`/app/rental/api/notices/${card_id}`)
.then(res => {
if (res.status === 404) return alert(res.data.error)
alert("삭제되었습니다!");
......@@ -49,7 +49,7 @@ function Notice() {
function getNotice() {
axios.get(`/api/notices`)
axios.get(`/app/rental/api/notices`)
.then(res => {
console.log('res.data=', res.data)
if (res.status !== 201) {
......
......@@ -62,7 +62,7 @@ function Signup() {
onSubmit={(values, { setSubmitting }) => {
axios({
method: 'post',
url: '/api/users',
url: '/app/rental/api/users',
data: values,
}).then(res => {
if (res.status === 404) return alert(res.data.error)
......
......@@ -22,7 +22,7 @@ function Write() {
}
function acheck() {
axios.get(`/api/users/admin/${localStorage.getItem('_id')}`, {
axios.get(`/app/rental/api/users/admin/${localStorage.getItem('_id')}`, {
headers: { authorization: localStorage.getItem('token') },
})
.then(res => {
......@@ -56,7 +56,7 @@ function Write() {
console.log(values)
axios({
method: 'post',
url: '/api/writes',
url: '/app/rental/api/writes',
data: values,
}).then(res => {
if (res.status === 404) return alert(res.data.error)
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment