Feat(店铺):置顶资讯接口对接

This commit is contained in:
lifizer
2024-03-20 21:48:39 +08:00
parent 326010949b
commit 56fc52bb10
2 changed files with 54 additions and 6 deletions
+11
View File
@@ -208,4 +208,15 @@ export function getHotelGoodList(data) {
return request.get("/api/hotelMain/goodsList", data, {
login: false
});
}
/**
* 置顶客栈资讯
* @param data
* @returns {*}
*/
export function setTopHotelNew(data) {
return request.post("/api/hotelNews/setIsTop", data, {
login: true
});
}