position.vue 987 B

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364
  1. <template>
  2. <view class="container">
  3. <view class="header">
  4. <view class="city">
  5. <text>全国</text>
  6. <u-icon name="arrow-down"></u-icon>
  7. </view>
  8. <u-search input-align="left" :show-action="false" height="70" placeholder="请输入位置信息"></u-search>
  9. </view>
  10. <view class="header2">
  11. <view>山海广场</view>
  12. <view class="">
  13. 重新定位
  14. </view>
  15. </view>
  16. <view class="pposition">
  17. <view>
  18. <view>
  19. 山海广场
  20. </view>
  21. <view>4.2千米</view>
  22. </view>
  23. <view>
  24. 山海广场
  25. </view>
  26. </view>
  27. </view>
  28. </template>
  29. <script>
  30. export default {
  31. components: {
  32. },
  33. data() {
  34. return {
  35. }
  36. },
  37. methods: {
  38. }
  39. }
  40. </script>
  41. <style lang="scss" scoped>
  42. .container{
  43. padding: 0 35rpx;
  44. }
  45. /deep/.u-content{
  46. padding-left: 140rpx;
  47. }
  48. .header{
  49. position: relative;
  50. display: flex;
  51. .city{
  52. top: 0;
  53. bottom: 0;
  54. left: 20rpx;
  55. margin: auto;
  56. position: absolute;
  57. display: flex;
  58. align-items: center;
  59. }
  60. }
  61. </style>