From 392e84634218164105a0e04575ccd4133d4480f4 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=EC=9D=B4=EC=A0=95=ED=98=81?= Date: Thu, 16 May 2024 11:49:18 +0900 Subject: [PATCH] feat : attraction.js upload --- src/api/attraction.js | 15 +++++++++++++++ 1 file changed, 15 insertions(+) create mode 100644 src/api/attraction.js diff --git a/src/api/attraction.js b/src/api/attraction.js new file mode 100644 index 0000000..57c4586 --- /dev/null +++ b/src/api/attraction.js @@ -0,0 +1,15 @@ +import { localAxios } from "@/utils/http-commons"; + +const local = localAxios; + +function getArticles(contentTypeId, sidoCode, gugunCode, title, success, fail) { + //list + local + .get( + `/attraction/search?contentTypeId=${contentTypeId}&sidoCode=${sidoCode}&gugunCode=${gugunCode}&title=${title}` + ) + .then(success) + .catch(fail); +} + +export { getArticles };