mirror of
http://git.mhez-qa.uplus.co.kr/hubez/hubez-admin.git
synced 2025-12-07 10:03:55 +09:00
공지사항 불필요한 리스트 수정 및 FAQ 추가 개발 진행
This commit is contained in:
@@ -20,6 +20,21 @@ const deleteNotice = (params) => {
|
||||
return httpClient.post('/api/v1/bo/homeMgt/deleteNotice', params, { withCredentials: false });
|
||||
};
|
||||
|
||||
// 자주묻는 질문 등록
|
||||
const insertFaq = (params) => {
|
||||
return httpClient.post('/api/v1/bo/homeMgt/insertFaq', params, { withCredentials: false });
|
||||
};
|
||||
|
||||
// 자주묻는 질문 수정
|
||||
const updateFaq = (params) => {
|
||||
return httpClient.post('/api/v1/bo/homeMgt/updateFaq', params, { withCredentials: false });
|
||||
};
|
||||
|
||||
// 자주묻는 질문 삭제
|
||||
const deleteFaq = (params) => {
|
||||
return httpClient.post('/api/v1/bo/homeMgt/deleteFaq', params, { withCredentials: false });
|
||||
};
|
||||
|
||||
const getImageUrl = (params) => {
|
||||
return httpClient.post('/api/v1/bo/homeMgt/getImageUrl', params, {
|
||||
headers: {
|
||||
@@ -64,4 +79,7 @@ export default {
|
||||
deleteNotice,
|
||||
fileDownload,
|
||||
getImageUrl,
|
||||
insertFaq,
|
||||
updateFaq,
|
||||
deleteFaq,
|
||||
};
|
||||
|
||||
Reference in New Issue
Block a user