feat: 内容稿件审核列表

This commit is contained in:
rd
2025-08-04 17:05:44 +08:00
parent eb76d00a8e
commit e2f2d26d00
14 changed files with 190 additions and 56 deletions

View File

@ -8,6 +8,14 @@ export const getWorksList = (params = {}) => {
export const postWorksBatch = (params = {}) => {
return Http.post('/v1/works/batch', params);
};
// 生成分享链接
export const postShareLinksGenerate = (params = {}) => {
return Http.post('/v1/share-links/generate', params);
};
// 生成写手链接
export const postWriterLinksGenerate = (params = {}) => {
return Http.post('/v1/writer-links/generate', params);
};
// 内容稿件-修改
export const putWorksUpdate = (params = {}) => {
const { id, ...rest } = params as { id: string; [key: string]: any };