<template>
|
|
<view>
|
|
<!-- 搜索栏 -->
|
|
<u-sticky>
|
|
<view class="sticky">
|
|
<view class="city">
|
|
长沙
|
|
</view>
|
|
<view class="search_btn">
|
|
<u-search placeholder="请输入您要搜索的城市" v-model="keyword" @search="Search" ></u-search>
|
|
</view>
|
|
</view>
|
|
</u-sticky>
|
|
<!-- 选择区 -->
|
|
<select-search></select-search>
|
|
<view class="search_box">
|
|
|
|
</view>
|
|
</view>
|
|
</template>
|
|
|
|
<script>
|
|
export default {
|
|
data() {
|
|
return {
|
|
|
|
}
|
|
},
|
|
methods: {
|
|
// 搜索
|
|
Search() {
|
|
|
|
},
|
|
}
|
|
}
|
|
</script>
|
|
|
|
<style lang="scss" scoped>
|
|
/deep/ .u-sticky{
|
|
display: flex;
|
|
justify-content: center;
|
|
align-items: center;
|
|
height: 90rpx;
|
|
border-bottom: 1px solid #aaa9a5;
|
|
background-color: #fff;
|
|
.sticky{
|
|
display: flex;
|
|
align-items: center;
|
|
.city{
|
|
padding-right: 20rpx;
|
|
}
|
|
}
|
|
}
|
|
|
|
</style>
|