兼兼街租房小程序
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.

46 lines
746 B

  1. <template>
  2. <view>
  3. <!-- 搜索栏 -->
  4. <u-sticky class="sticky_box" enable h5-nav-height="44" offset-top="88">
  5. <view class="sticky">
  6. <view class="city">
  7. 长沙
  8. </view>
  9. <view class="search_btn">
  10. <u-search placeholder="请输入您要搜索的城市" v-model="keyword" @search="toSearch" @focus="toSearch"></u-search>
  11. </view>
  12. </view>
  13. </u-sticky>
  14. <view class="search_box">
  15. </view>
  16. </view>
  17. </template>
  18. <script>
  19. export default {
  20. data() {
  21. return {
  22. }
  23. },
  24. methods: {
  25. }
  26. }
  27. </script>
  28. <style lang="scss" scoped>
  29. /deep/ .u-sticky{
  30. display: flex;
  31. justify-content: center;
  32. .sticky{
  33. display: flex;
  34. align-items: center;
  35. .city{
  36. padding-right: 20rpx;
  37. }
  38. }
  39. }
  40. </style>