46 lines
1.1 KiB
TypeScript
46 lines
1.1 KiB
TypeScript
import type { PageParam, PageResult } from '@vben/request';
|
|
|
|
import { requestClient } from '#/api/request';
|
|
|
|
export namespace MpFreePublishApi {
|
|
/** 自由发布文章信息 */
|
|
export interface FreePublish {
|
|
id?: number;
|
|
accountId: number;
|
|
mediaId: string;
|
|
articleId: string;
|
|
title: string;
|
|
author: string;
|
|
digest: string;
|
|
content: string;
|
|
thumbUrl: string;
|
|
status: number;
|
|
publishTime?: Date;
|
|
createTime?: Date;
|
|
}
|
|
}
|
|
|
|
/** 查询自由发布文章列表 */
|
|
export function getFreePublishPage(params: PageParam) {
|
|
return requestClient.get<PageResult<MpFreePublishApi.FreePublish>>(
|
|
'/mp/free-publish/page',
|
|
{
|
|
params,
|
|
},
|
|
);
|
|
}
|
|
|
|
/** 删除自由发布文章 */
|
|
export function deleteFreePublish(accountId: number, articleId: string) {
|
|
return requestClient.delete('/mp/free-publish/delete', {
|
|
params: { accountId, articleId },
|
|
});
|
|
}
|
|
|
|
/** 发布自由发布文章 */
|
|
export function submitFreePublish(accountId: number, mediaId: string) {
|
|
return requestClient.post('/mp/free-publish/submit', null, {
|
|
params: { accountId, mediaId },
|
|
});
|
|
}
|