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 @@
-
+
- 中国昆明第九届国际大健康暨养生养老产业博览会
+ {{ details.theme }}
展会信息
主题
- 中国昆明第九届国际大健康暨养生养老产业博览会
+ {{ details.theme }}
内容
- “中国(昆明)国际大健康养生养老产业博览会”创办于2017
- 年,由云南省民政厅、云南省老龄办、云南省贸促会共同发
- 起指导,早云南省商务厅、云南省投促局以及昆明市政府相
- 关部门支持下,至今已连续成功举办了八届,在国内同类型
- 展会中已具一定规模和影响力,被昆明市有关部门综合评估
- 为5A级博览会。
-
+ {{ details.content||'' }}
时间
- 2024年11月22日--2024年11月24日
+ {{ details.startTime }}--{{ details.endTime }}
地点
- 滇池国际会展中心
+ {{ details.address }}
@@ -41,23 +35,18 @@
:key="index"
@click="getOther(item.id)"
class="v12-white v12-dark-text v12-font-bold v12-font-26 v12-mb-3 v12-radius-50 v12-pa-2">
- {{ item.label }}
+ {{ item.name }}
@@ -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;
}