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

59 lines
901 B
Vue

<template>
<view class="root">
<InputAndSwiper></InputAndSwiper>
<view style="margin-top: 10px;">
<DropDown></DropDown>
</view>
<ShowShopList :showStyle="1"></ShowShopList>
<TabBar :current-page="1"></TabBar>
</view>
</template>
<script>
export default {
data() {
return {
value1: 1,
value2: 2,
options1: [{
label: '默认排序',
value: 1,
},
{
label: '距离优先',
value: 2,
},
{
label: '价格优先',
value: 3,
}
],
options2: [{
label: '去冰',
value: 1,
},
{
label: '加冰',
value: 2,
},
],
}
},
methods: {
}
}
</script>
<style lang="scss">
page {
background-color: $uni-bg-color-grey;
}
.root {
margin: 0 10px;
}
</style>