|
@@ -1,6 +1,13 @@
|
|
|
<template>
|
|
|
<view class="unleased-pages-main">
|
|
|
- <navBar type="index"/>
|
|
|
+ <!-- <navBar type="index"/> -->
|
|
|
+ <!-- #ifdef MP-WEIXIN -->
|
|
|
+ <view :style="{height: `${statusBarHeight + 30}px`}"></view>
|
|
|
+ <!-- #endif -->
|
|
|
+ <!-- #ifdef APP -->
|
|
|
+ <view :style="{height: `${statusBarHeight}px`}"></view>
|
|
|
+ <!-- #endif -->
|
|
|
+
|
|
|
<view class="recommend-car-name w_100 text-center">{{moder_info.model_name}}</view>
|
|
|
<view class="recommend-car-tip w_100 text-center">{{moder_info.title||'续航开新路 路遥见实力'}}</view>
|
|
|
<view >
|
|
@@ -72,6 +79,9 @@
|
|
|
moder_info:{},
|
|
|
statusBarHeight:0
|
|
|
};
|
|
|
+ },
|
|
|
+ mounted() {
|
|
|
+ this.statusBarHeight = uni.getSystemInfoSync().statusBarHeight || 0
|
|
|
}
|
|
|
/**
|
|
|
* 生命周期函数--监听页面加载
|