|
@@ -8,13 +8,13 @@
|
|
|
<view class="custom_box" style="background: rgb(254,245,246); color: black;">
|
|
|
<view class="sys-head">
|
|
|
<view class="sys-bar" :style="{ height: sysHeight }"></view>
|
|
|
- <view class="sys-title">中意购</view>
|
|
|
+ <view class="sys-title">中意购{{ sysHeight }} </view>
|
|
|
<view class="bg"></view>
|
|
|
</view>
|
|
|
</view>
|
|
|
|
|
|
- <view class="index_body">
|
|
|
- <view class="block_2 flex-row justify-between" @click="changeAddress()">
|
|
|
+ <view class="index_body" :style="{ top: sysHeightTop}">
|
|
|
+ <view class="block_2 flex-row justify-between" @click="changeAddress()">
|
|
|
<view class="image-text_9 flex-row justify-between">
|
|
|
<image class="icon_1" referrerpolicy="no-referrer" src="../../../static/images/addressIcon.png" />
|
|
|
<text class="text-group_1 ">{{ markers[0].label.content }}</text>
|
|
@@ -103,6 +103,7 @@
|
|
|
|
|
|
<script>
|
|
|
let sysHeight = uni.getSystemInfoSync().statusBarHeight + 'px';
|
|
|
+let sysHeightTop = (uni.getSystemInfoSync().statusBarHeight + 43) + 'px';
|
|
|
import headerSerch from './components/headerSerch';
|
|
|
import latestGroupBuying from './components/latestGroupBuying';
|
|
|
import { getAddress } from '../../../api/wxMap'
|
|
@@ -127,6 +128,7 @@ export default {
|
|
|
data () {
|
|
|
return {
|
|
|
sysHeight: sysHeight,
|
|
|
+ sysHeightTop: sysHeightTop,
|
|
|
showTips: true,
|
|
|
showMap: false,
|
|
|
markers: [{
|
|
@@ -983,10 +985,8 @@ page {
|
|
|
margin-top: 30rpx;
|
|
|
}
|
|
|
}
|
|
|
-.index_body{
|
|
|
+
|
|
|
+.index_body {
|
|
|
position: relative;
|
|
|
- top: 63px;
|
|
|
}
|
|
|
-
|
|
|
-
|
|
|
</style>
|