新增:分享、下载图片、视频功能登

This commit is contained in:
2025-06-09 20:09:52 +08:00
parent 522281300f
commit 4eb8ef0f54
11 changed files with 1346 additions and 56 deletions

View File

@@ -21,6 +21,9 @@ export const updateHouseInfo = (data) => http.put('/house/house-info', data)
// 删除房源信息
export const removeHouseInfo = (id) => http.delete('/house/house-info/' + id)
// 生成海报
export const getGeneratePoster = (id) => http.get('/house/house-info/generatePoster/' + id)
// 收藏房源
export const likeHouse = (data) => http.post('/house/house-like-log', data)
@@ -37,5 +40,6 @@ export default {
addHouseInfo,
likeHouse,
getLikeHouseList,
getViewsHouseList
getViewsHouseList,
getGeneratePoster
}