12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364 |
- <template>
- <view class="container">
- <view class="header">
- <view class="city">
- <text>全国</text>
- <u-icon name="arrow-down"></u-icon>
- </view>
- <u-search input-align="left" :show-action="false" height="70" placeholder="请输入位置信息"></u-search>
- </view>
- <view class="header2">
- <view>山海广场</view>
- <view class="">
- 重新定位
- </view>
- </view>
- <view class="pposition">
- <view>
- <view>
- 山海广场
- </view>
- <view>4.2千米</view>
- </view>
- <view>
- 山海广场
- </view>
- </view>
- </view>
- </template>
- <script>
- export default {
- components: {
- },
- data() {
- return {
- }
- },
- methods: {
- }
- }
- </script>
- <style lang="scss" scoped>
- .container{
- padding: 0 35rpx;
- }
- /deep/.u-content{
- padding-left: 140rpx;
- }
- .header{
- position: relative;
- display: flex;
- .city{
- top: 0;
- bottom: 0;
- left: 20rpx;
- margin: auto;
- position: absolute;
- display: flex;
- align-items: center;
-
- }
- }
- </style>
|