补充管理后台漏掉的接口定义

This commit is contained in:
chenbo 2020-04-01 16:43:35 +08:00
parent d7af9a21bb
commit 195350d8ed
1 changed files with 16 additions and 0 deletions

View File

@ -8,6 +8,22 @@ export function fetchList(query) {
})
}
export function approveAgency(data) {
return request({
url: '/user/approveAgency',
method: 'post',
data
})
}
export function detailApprove(id) {
return request({
url: '/user/detailApprove',
method: 'get',
params: { id }
})
}
export function listAddress(query) {
return request({
url: '/address/list',