mirror of
https://gitee.com/hhyykk/ipms-sjy.git
synced 2025-07-13 18:45:06 +08:00
24 lines
593 B
TypeScript
24 lines
593 B
TypeScript
![]() |
import request from '@/config/axios'
|
||
|
|
||
|
// 获得公众号素材分页
|
||
|
export function getFreePublishPage(query) {
|
||
|
return request.get({
|
||
|
url: '/mp/free-publish/page',
|
||
|
params: query
|
||
|
})
|
||
|
}
|
||
|
|
||
|
// 删除公众号素材
|
||
|
export function deleteFreePublish(accountId, articleId) {
|
||
|
return request.delete({
|
||
|
url: '/mp/free-publish/delete?accountId=' + accountId + '&articleId=' + articleId
|
||
|
})
|
||
|
}
|
||
|
|
||
|
// 发布公众号素材
|
||
|
export function submitFreePublish(accountId, mediaId) {
|
||
|
return request.post({
|
||
|
url: '/mp/free-publish/submit?accountId=' + accountId + '&mediaId=' + mediaId
|
||
|
})
|
||
|
}
|