兼兼街租房小程序
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

55 lines
857 B

  1. <template>
  2. <view>
  3. <!-- 搜索栏 -->
  4. <u-sticky>
  5. <view class="sticky">
  6. <view class="city">
  7. 长沙
  8. </view>
  9. <view class="search_btn">
  10. <u-search placeholder="请输入您要搜索的城市" v-model="keyword" @search="Search" ></u-search>
  11. </view>
  12. </view>
  13. </u-sticky>
  14. <!-- 选择区 -->
  15. <select-search></select-search>
  16. <view class="search_box">
  17. </view>
  18. </view>
  19. </template>
  20. <script>
  21. export default {
  22. data() {
  23. return {
  24. }
  25. },
  26. methods: {
  27. // 搜索
  28. Search() {
  29. },
  30. }
  31. }
  32. </script>
  33. <style lang="scss" scoped>
  34. /deep/ .u-sticky{
  35. display: flex;
  36. justify-content: center;
  37. align-items: center;
  38. height: 90rpx;
  39. border-bottom: 1px solid #aaa9a5;
  40. background-color: #fff;
  41. .sticky{
  42. display: flex;
  43. align-items: center;
  44. .city{
  45. padding-right: 20rpx;
  46. }
  47. }
  48. }
  49. </style>