|
@@ -1,5 +1,5 @@
|
|
|
<template>
|
|
|
- <header :style="{ backgroundColor: `${bgColor || '#fff'}` }">
|
|
|
+ <header :style="{ backgroundColor: `${bgColor}` }">
|
|
|
<div class="topbar com-margin-auto com-flex com-width-1400">
|
|
|
<nuxt-link
|
|
|
:to="{ name: 'index' }"
|
|
@@ -292,7 +292,7 @@
|
|
|
</div>
|
|
|
</div>
|
|
|
</div>
|
|
|
- <nav :style="{ backgroundColor: `${bgColor || '#00213b'}` }">
|
|
|
+ <nav>
|
|
|
<ul class="com-width-1400 com-minwidth-1024 com-margin-auto">
|
|
|
<li class="nav-list">
|
|
|
<div class="nav-list-title">
|
|
@@ -309,7 +309,6 @@
|
|
|
<Transition name="category">
|
|
|
<div
|
|
|
class="nav-menu border-radius"
|
|
|
- :style="{ backgroundColor: `${bgColor || '#00213b'}` }"
|
|
|
v-show="isShopBlock"
|
|
|
@click="closeAllBlock">
|
|
|
<div class="nav-menu-content">
|
|
@@ -621,7 +620,7 @@ export default {
|
|
|
],
|
|
|
index: null,
|
|
|
websitelogo: '',
|
|
|
- bgColor: '',
|
|
|
+ bgColor: '#fff',
|
|
|
}
|
|
|
},
|
|
|
async fetch() {
|
|
@@ -719,7 +718,7 @@ export default {
|
|
|
? this.$OSS_PREFIX +
|
|
|
(/^\/.+/.test(res.logo) ? res.logo : `/${res.logo}`)
|
|
|
: res.logo
|
|
|
- this.bgColor = res.theme_color || ''
|
|
|
+ this.bgColor = res.theme_color || '#fff'
|
|
|
})
|
|
|
},
|
|
|
created() {
|
|
@@ -1164,7 +1163,7 @@ header {
|
|
|
}
|
|
|
}
|
|
|
nav {
|
|
|
- // background-color: #00213b;
|
|
|
+ background-color: #00213b;
|
|
|
height: 52px;
|
|
|
// font-family: ProximaNova-Regular;
|
|
|
ul {
|
|
@@ -1200,7 +1199,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;
|