Feat(时令尝鲜):接口对接

This commit is contained in:
lifizer
2023-09-23 18:13:26 +08:00
parent c9ceac9f37
commit 2d73c2fe46
35 changed files with 2834 additions and 1547 deletions
+22 -1
View File
@@ -15,7 +15,7 @@ export function wellnessPlaceList(param) {
}
/**
* 定制礼品首页
* 特色礼品首页
* */
export function customizedGift() {
return request.get("/customizedGift/index", {}, {login: true})
@@ -41,3 +41,24 @@ export function getStoryList(page) {
export function getStoryDetail(id) {
return request.get("/countyFamous/content/" + id, {}, {login: true})
}
/**
* 时令尝鲜首页
* */
export function seasonHomeData() {
return request.get("/seasonalFood/index", {}, {login: true})
}
/**
* 时令尝鲜
* */
export function getSeason(id) {
return request.get("/seasonalFood/content/" + id, {}, {login: true})
}
/**
* 时令尝鲜
* */
export function getSeasonPoster(id) {
return request.get("/seasonalFood/poster/" + id, {}, {login: true})
}