Merge pull request 'lj' (#56) from lj into master

Reviewed-on: http://git.feashow.cn/odjbin/city-store-transfer/pulls/56
This commit is contained in:
luojie
2023-11-16 12:52:13 +00:00
8 changed files with 38 additions and 20 deletions

View File

@@ -15,7 +15,7 @@
<DropDown></DropDown>
</view>
<view class="marginLR10">
<ShowShopList :showStyle="1"/>
<ShowShopList :showStyle="2"/>
</view>
</view>
</template>

View File

@@ -15,7 +15,7 @@
<DropDown></DropDown>
</view>
<view class="marginLR10">
<ShowShopList :showStyle="1"/>
<ShowShopList :showStyle="2"/>
</view>
</view>
</template>

View File

@@ -29,6 +29,7 @@
import HomeNoticeBar from "./HomeMainContent/HomeNoticeBar.vue"
import HomeNavCard from "./HomeMainContent/HomeNavCard.vue"
import Statistics from "./HomeMainContent/Statistics.vue"
import QQMapWX from "@/utils/qqmap-wx-jssdk.min.js"
export default {
components: {
@@ -49,6 +50,7 @@
this.getNotice()
this.getStat()
this.open()
this.getClassList()
},
methods: {
getBanner() {
@@ -64,6 +66,10 @@
getStat() {
this.$api.getStat().then(res => {
this.statNum = res.data.data
})
},
getClassList() {
this.$api.getClassList().then(res => {
console.log(res.data.data);
})
},