|
@@ -156,7 +156,9 @@
|
|
|
|
|
|
|
|
|
|
</view>
|
|
</view>
|
|
-
|
|
|
|
|
|
+ <!-- 底部导航距离,做兼容处理的-->
|
|
|
|
+ <view v-if="bottomNavigationIsCustom" class="footerBottom"></view>
|
|
|
|
+ <pageFooter></pageFooter>
|
|
</view>
|
|
</view>
|
|
</template>
|
|
</template>
|
|
|
|
|
|
@@ -177,11 +179,15 @@
|
|
} from '@/config/cache';
|
|
} from '@/config/cache';
|
|
import Cache from '@/utils/cache';
|
|
import Cache from '@/utils/cache';
|
|
import tags from '../../mixins/tags';
|
|
import tags from '../../mixins/tags';
|
|
|
|
+ import pageFooter from "@/components/pageFooter/index.vue";
|
|
var statusBarHeight = uni.getSystemInfoSync().statusBarHeight + 'px';
|
|
var statusBarHeight = uni.getSystemInfoSync().statusBarHeight + 'px';
|
|
let app = getApp();
|
|
let app = getApp();
|
|
export default {
|
|
export default {
|
|
mixins:[tags],
|
|
mixins:[tags],
|
|
- computed: mapGetters(['isLogin']),
|
|
|
|
|
|
+ computed: mapGetters(['isLogin','bottomNavigationIsCustom']),
|
|
|
|
+ components:{
|
|
|
|
+ pageFooter
|
|
|
|
+ },
|
|
data() {
|
|
data() {
|
|
return {
|
|
return {
|
|
statusBarHeight: app.globalData.statusBarHeight,
|
|
statusBarHeight: app.globalData.statusBarHeight,
|