43 lines
641 B
Vue
43 lines
641 B
Vue
<template>
|
|
<view class="root">
|
|
<InputAndSwiper></InputAndSwiper>
|
|
|
|
<view class="content">
|
|
<view style="margin-top: 10px;">
|
|
<DropDown></DropDown>
|
|
</view>
|
|
|
|
<ShowShopList :showStyle="1"></ShowShopList>
|
|
</view>
|
|
<DropDownItem></DropDownItem>
|
|
<TabBar :current-page="1"></TabBar>
|
|
</view>
|
|
</template>
|
|
|
|
<script>
|
|
import DropDownItem from "@/components/DropDown/DropDownItem.vue"
|
|
export default {
|
|
components: {
|
|
DropDownItem
|
|
},
|
|
data() {
|
|
return {
|
|
|
|
}
|
|
},
|
|
methods: {
|
|
|
|
}
|
|
}
|
|
</script>
|
|
|
|
<style lang="scss">
|
|
page {
|
|
background-color: $uni-bg-color-grey;
|
|
}
|
|
.content{
|
|
margin: 0 10px;
|
|
}
|
|
|
|
</style>
|