import { axios } from '@/utils/request'
|
|
/**
|
* 查询友情链接
|
*
|
* @author inleft
|
* @date 2022-02-17 14:50:13
|
*/
|
export function blogFriendshipLinkPage (parameter) {
|
return axios({
|
url: '/blogFriendshipLink/page',
|
method: 'get',
|
params: parameter
|
})
|
}
|
|
/**
|
* 友情链接列表
|
*
|
* @author inleft
|
* @date 2022-02-17 14:50:13
|
*/
|
export function blogFriendshipLinkList (parameter) {
|
return axios({
|
url: '/blogFriendshipLink/list',
|
method: 'get',
|
params: parameter
|
})
|
}
|
|
/**
|
* 添加友情链接
|
*
|
* @author inleft
|
* @date 2022-02-17 14:50:13
|
*/
|
export function blogFriendshipLinkAdd (parameter) {
|
return axios({
|
url: '/blogFriendshipLink/add',
|
method: 'post',
|
data: parameter
|
})
|
}
|
|
/**
|
* 编辑友情链接
|
*
|
* @author inleft
|
* @date 2022-02-17 14:50:13
|
*/
|
export function blogFriendshipLinkEdit (parameter) {
|
return axios({
|
url: '/blogFriendshipLink/edit',
|
method: 'post',
|
data: parameter
|
})
|
}
|
|
/**
|
* 删除友情链接
|
*
|
* @author inleft
|
* @date 2022-02-17 14:50:13
|
*/
|
export function blogFriendshipLinkDelete (parameter) {
|
return axios({
|
url: '/blogFriendshipLink/delete',
|
method: 'post',
|
data: parameter
|
})
|
}
|
|
/**
|
* 导出友情链接
|
*
|
* @author inleft
|
* @date 2022-02-17 14:50:13
|
*/
|
export function blogFriendshipLinkExport (parameter) {
|
return axios({
|
url: '/blogFriendshipLink/export',
|
method: 'get',
|
params: parameter,
|
responseType: 'blob'
|
})
|
}
|