Browse Source

style: 主题色涵盖主导航区域.

peter 7 months ago
parent
commit
369bbd034a
1 changed files with 7 additions and 6 deletions
  1. 7 6
      components/PcHeader.vue

+ 7 - 6
components/PcHeader.vue

@@ -1,5 +1,5 @@
 <template>
-  <header :style="{ backgroundColor: `${bgColor}` }">
+  <header :style="{ backgroundColor: `${bgColor || '#fff'}` }">
     <div class="topbar com-margin-auto com-flex com-width-1400">
       <nuxt-link :to="{ name: 'index' }">
         <img
@@ -290,7 +290,7 @@
         </div>
       </div>
     </div>
-    <nav>
+    <nav :style="{ backgroundColor: `${bgColor || '#00213b'}` }">
       <ul class="com-width-1400 com-minwidth-1024 com-margin-auto">
         <li class="nav-list">
           <div class="nav-list-title">
@@ -307,6 +307,7 @@
           <Transition name="category">
             <div
               class="nav-menu border-radius"
+              :style="{ backgroundColor: `${bgColor || '#00213b'}` }"
               v-show="isShopBlock"
               @click="closeAllBlock">
               <div class="nav-menu-content">
@@ -618,7 +619,7 @@ export default {
       ],
       index: null,
       websitelogo: '',
-      bgColor: '#fff',
+      bgColor: '',
     }
   },
   async fetch() {
@@ -716,7 +717,7 @@ export default {
         ? this.$OSS_PREFIX +
           (/^\/.+/.test(res.logo) ? res.logo : `/${res.logo}`)
         : res.logo
-      this.bgColor = res.theme_color || '#fff'
+      this.bgColor = res.theme_color || ''
     })
   },
   created() {
@@ -1161,7 +1162,7 @@ header {
     }
   }
   nav {
-    background-color: #00213b;
+    // background-color: #00213b;
     height: 52px;
     // font-family: ProximaNova-Regular;
     ul {
@@ -1197,7 +1198,7 @@ header {
           width: 1400px;
           height: 395px;
           color: #fff;
-          background-color: RGB(56 54 55);
+          // background-color: RGB(56 54 55);
           overflow: hidden;
           .nav-menu-content {
             box-sizing: border-box;