Browse Source

众创logo

huangb 7 years ago
parent
commit
e519febd49
1 changed files with 2 additions and 2 deletions
  1. 2 2
      components/mobile/headerMobile.vue

+ 2 - 2
components/mobile/headerMobile.vue

@@ -1,7 +1,6 @@
 <template>
 <div class="header">
-  <!--<h3><img :src="loginStyle.logoUrl ? loginStyle.logoUrl : '/img/logo/uas.png'" alt="">账户中心</h3>-->
-  <h3><img src="/img/zc.png" alt=""></h3>
+  <h3><img :src="loginStyle.logoUrlMobile ? loginStyle.logoUrlMobile : '/img/logo/uas.png'" alt="">{{loginStyle.titleMobile || '账户中心'}}</h3>
 </div>
 </template>
 
@@ -10,6 +9,7 @@
     name: 'headerMobile',
     computed: {
       loginStyle () {
+        console.log(this.$store.state.login.loginStyle.data.content)
         return this.$store.state.login.loginStyle.data.content ? this.$store.state.login.loginStyle.data.content : ''
       }
     }