mirror of
http://git.mhez-qa.uplus.co.kr/hubez/hubez-admin.git
synced 2025-12-07 02:59:22 +09:00
10 lines
211 B
JavaScript
10 lines
211 B
JavaScript
import httpClient from '@/common/http-client';
|
|
// 주소찾기
|
|
const getAddressList = params => {
|
|
return httpClient.get('/api/comm/address', { params: params })
|
|
}
|
|
|
|
export default {
|
|
getAddressList
|
|
}
|