Commit baab6581 by 侯体倬

PC 平台不展示自定义导航栏

parent 36d91f1d
<template> <template>
<div class="CustomNav" :style="zIndexStyle"> <div v-if="!isPcPlatform" class="CustomNav" :style="zIndexStyle">
<div class="navFixedBg" :style="navFixedBgStyle"></div> <div class="navFixedBg" :style="navFixedBgStyle"></div>
<div class="navBg" :style="navBgStyle"> <div class="navBg" :style="navBgStyle">
<div class="content" :style="contentStyle">{{showShopName}}</div> <div class="content" :style="contentStyle">{{showShopName}}</div>
...@@ -29,15 +29,22 @@ export default { ...@@ -29,15 +29,22 @@ export default {
zIndexStyle: '', zIndexStyle: '',
navFixedBgStyle: '', navFixedBgStyle: '',
navBgStyle: '', navBgStyle: '',
contentStyle: '' contentStyle: '',
isPcPlatform: false, // 是否是PC平台
} }
}, },
created() { created() {
const deviceInfo = wx.getDeviceInfo()
this.isPcPlatform = ['mac', 'windows'].includes(deviceInfo.platform);
if (!this.isPcPlatform) {
this.getNavbarInfo(); this.getNavbarInfo();
this.initialize(); this.initialize();
}
}, },
onPageScroll(el) { onPageScroll(el) {
if (!this.isPcPlatform) {
this.getScroll(el); this.getScroll(el);
}
}, },
watch: { watch: {
customBgOpacity() { customBgOpacity() {
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment