diff --git a/src/pages/index/index.vue b/src/pages/index/index.vue index c8ffa03..52a75a7 100644 --- a/src/pages/index/index.vue +++ b/src/pages/index/index.vue @@ -12,12 +12,31 @@ - + + + + + + + + + + + + + + + + + + + + @@ -26,7 +45,8 @@ data() { return { swiperList: [], - catitems: [] + catitems: [], + floordata:[] } }, // 页面生命周期 @@ -35,6 +55,8 @@ this.getSwiper() // 获取导航图 this.getCatitems() + // 获取楼层数据 + this.getFloordata() }, methods: { // getSwiper(){ @@ -54,6 +76,12 @@ async getCatitems(){ const { message } = await this.$u.api.getCatitems() this.catitems = message + }, + + // 楼层 + async getFloordata(){ + const { message } = await this.$u.api.getFloordata() + this.floordata = message } } }