Files
city-store-transfer/pages/index/index.vue

44 lines
707 B
Vue

<template>
<view class="home-base-bg">
<InputAndSwiper></InputAndSwiper>
<view class="home-content">
<HomeNavCard></HomeNavCard>
<HomeNoticeBar></HomeNoticeBar>
<ShowShopList/>
<SearchShopListItem></SearchShopListItem>
<SearchShopListItem></SearchShopListItem>
</view>
<TabBar :current-page="0"></TabBar>
</view>
</template>
<script>
import HomeNoticeBar from "./HomeNoticeBar.vue"
export default {
components: {
HomeNoticeBar
},
data() {
return {
}
},
onLoad() {
},
methods: {
}
}
</script>
<style lang="scss" scoped>
.home-base-bg {
background-color: $uni-bg-color-grey;
width: 100%;
.home-content {
margin: 0 10px;
}
}
</style>