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

35 lines
464 B
Vue

<template>
<view class="root">
<InputAndSwiper></InputAndSwiper>
<view style="margin-top: 10px;">
<DropDown></DropDown>
</view>
<SearchShopList :showStyle="1"></SearchShopList>
<TabBar :current-page="3"></TabBar>
</view>
</template>
<script>
export default {
data() {
return {
}
},
methods: {
}
}
</script>
<style lang="scss">
page {
background-color: $uni-bg-color-grey;
}
.root{
margin: 0 10px;
}
</style>