Commit baab6581 by 侯体倬

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

parent 36d91f1d
<template>
<div class="CustomNav" :style="zIndexStyle">
<div v-if="!isPcPlatform" class="CustomNav" :style="zIndexStyle">
<div class="navFixedBg" :style="navFixedBgStyle"></div>
<div class="navBg" :style="navBgStyle">
<div class="content" :style="contentStyle">{{showShopName}}</div>
......@@ -29,15 +29,22 @@ export default {
zIndexStyle: '',
navFixedBgStyle: '',
navBgStyle: '',
contentStyle: ''
contentStyle: '',
isPcPlatform: false, // 是否是PC平台
}
},
created() {
this.getNavbarInfo();
this.initialize();
const deviceInfo = wx.getDeviceInfo()
this.isPcPlatform = ['mac', 'windows'].includes(deviceInfo.platform);
if (!this.isPcPlatform) {
this.getNavbarInfo();
this.initialize();
}
},
onPageScroll(el) {
this.getScroll(el);
if (!this.isPcPlatform) {
this.getScroll(el);
}
},
watch: {
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