2025-03-21 06:39:22 +00:00
|
|
|
import api_request from '@/utils/api-request';
|
|
|
|
|
|
|
|
|
|
class BlogAPI {
|
|
|
|
|
/** 博客自动数据 */
|
|
|
|
|
static getAutoList(data: any) {
|
|
|
|
|
return api_request({
|
2026-01-05 01:44:26 +00:00
|
|
|
url: `plugins/index/pluginsname/activity/pluginscontrol/diyactivity/pluginsaction/autoactivitylist.html`,
|
2025-03-21 06:39:22 +00:00
|
|
|
method: 'post',
|
|
|
|
|
data,
|
|
|
|
|
});
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
export default BlogAPI;
|
|
|
|
|
|
|
|
|
|
// 分类树结构
|
|
|
|
|
export interface Tree {
|
|
|
|
|
/** 主键 */
|
|
|
|
|
id: string;
|
|
|
|
|
}
|