Browse Source

change: logo 宽高、header背景色调整.

peter 7 months ago
parent
commit
39573e22ce
2 changed files with 9 additions and 5 deletions
  1. 5 3
      components/PcHeader.vue
  2. 4 2
      store/index.js

+ 5 - 3
components/PcHeader.vue

@@ -1,5 +1,5 @@
 <template>
 <template>
-  <header>
+  <header :style="{ backgroundColor: `${bgColor}` }">
     <div class="topbar com-margin-auto com-flex com-width-1400">
     <div class="topbar com-margin-auto com-flex com-width-1400">
       <nuxt-link :to="{ name: 'index' }">
       <nuxt-link :to="{ name: 'index' }">
         <img
         <img
@@ -618,6 +618,7 @@ export default {
       ],
       ],
       index: null,
       index: null,
       websitelogo: '',
       websitelogo: '',
+      bgColor: '#fff',
     }
     }
   },
   },
   async fetch() {
   async fetch() {
@@ -715,6 +716,7 @@ export default {
         ? this.$OSS_PREFIX +
         ? this.$OSS_PREFIX +
           (/^\/.+/.test(res.logo) ? res.logo : `/${res.logo}`)
           (/^\/.+/.test(res.logo) ? res.logo : `/${res.logo}`)
         : res.logo
         : res.logo
+      this.bgColor = res.theme_color || '#fff'
     })
     })
   },
   },
   created() {
   created() {
@@ -1010,14 +1012,14 @@ header {
   background-color: #fff;
   background-color: #fff;
   .topbar {
   .topbar {
     min-width: 800px;
     min-width: 800px;
-    height: 92px;
+    min-height: 92px;
     display: flex;
     display: flex;
     align-items: center;
     align-items: center;
 
 
     #logo {
     #logo {
       cursor: pointer;
       cursor: pointer;
       // max-width: 120px;
       // max-width: 120px;
-      height: 60px;
+      min-height: 60px;
     }
     }
     .search-input {
     .search-input {
       flex: 1;
       flex: 1;

+ 4 - 2
store/index.js

@@ -49,8 +49,10 @@ export const actions = {
       if (ctx.state.shopInfo && !ctx.state.shopInfo.id) {
       if (ctx.state.shopInfo && !ctx.state.shopInfo.id) {
         this.$axios
         this.$axios
           .post(
           .post(
-            `/c-api/logo/info/${encodeURIComponent(location.hostname)}`
-            // 'kkburwoodvicl.promocatalogue.com.au'
+            `/c-api/logo/info/${encodeURIComponent(
+              location.hostname
+              // 'kkburwoodvicg.promocatalogue.com.au'
+            )}`
           )
           )
           .then(res => {
           .then(res => {
             ctx.commit('setShopInfo', res.result)
             ctx.commit('setShopInfo', res.result)