feat: websources视图

This commit is contained in:
2026-03-19 16:49:52 +08:00
parent 43635333b9
commit cbe7633c23
2 changed files with 27 additions and 17 deletions

View File

@@ -80,3 +80,15 @@ export const deleteProject = (id: string) => {
method: 'delete'
})
}
/**
* 批量获取url对应的标题
* @param { string[] } data 批量获取url对应的标题参数
*/
export const fetchUrlTitle = (data: string[]) => {
return request({
url: '/api/ai-design/fetch-url-content',
method: 'post',
data: { urls: data }
})
}