diff --git a/api/health.js b/api/health.js new file mode 100644 index 0000000..795864f --- /dev/null +++ b/api/health.js @@ -0,0 +1,37 @@ +import request from "@/utils/request"; + + +/** + * 康养生活-养生圣地分类列表 + * @returns + */ +export function getCategory() { + return request.get("/wellness/place/category") +} + +/** + * 康养生活-养生圣地列表 + * @param {*} params + * @returns + */ +export function getWellnessPlace(params) { + return request.get("/wellness/place", params) +} + +/** + * 康养生活-展会列表 + * @param {*} params + * @returns + */ +export function getWellnessExhibition(params) { + return request.get("/wellness/exhibition", params) +} + +/** + * 康养生活-展会详情 + * @param {*} id + * @returns + */ +export function getWellnessExhibitionDetails(id) { + return request.get("/wellness/exhibition/" + id) +} \ No newline at end of file diff --git a/pkg_product/views/expoDetails.vue b/pkg_product/views/expoDetails.vue index df0bc77..96f367b 100644 --- a/pkg_product/views/expoDetails.vue +++ b/pkg_product/views/expoDetails.vue @@ -1,34 +1,28 @@ @@ -123,13 +149,12 @@ export default { .atr{ width: 52rpx; height: 52rpx; - background: #707070; border-radius: 50%; } .img{ width: 320rpx; height: 320rpx; - background: #707070; + // background: #707070; border-radius: 16rpx; position: relative; }