22 lines
572 B
JavaScript
22 lines
572 B
JavaScript
// 获取咨询列表
|
|
async function getArticleList(params) {
|
|
const urlParams = new URLSearchParams(params)
|
|
return fetch(`http://49.232.154.205/prod-api/export/article/list?${urlParams.toString()}`, {
|
|
method: 'GET',
|
|
headers: {
|
|
'Content-Type': 'application/json'
|
|
},
|
|
})
|
|
.then(res => res.json())
|
|
}
|
|
|
|
// 获取咨询详情
|
|
async function getArticleDetail(id) {
|
|
return fetch(`http://49.232.154.205/prod-api/export/article/${id}`, {
|
|
method: 'GET',
|
|
headers: {
|
|
'Content-Type': 'application/json'
|
|
}
|
|
})
|
|
.then(res => res.json())
|
|
} |