shenjunjie 7 vuotta sitten
vanhempi
commit
e4f798d935

+ 1 - 1
components/register/CityRegisterOver.vue

@@ -13,7 +13,7 @@
       </div>
     </div>
     <template>
-      <div v-html="loginStyle.footUrl" class="footer"></div>
+      <div v-html="loginStyle && loginStyle.footUrl || ''" class="footer"></div>
     </template>
   </div>
 </template>

+ 1 - 1
components/register/EnterpriseRegistration.vue

@@ -124,7 +124,7 @@
       <loading v-show="isShowLoading"/>
     </div>
     <!--尾部-->
-    <div v-html="loginStyle.footUrl" class="footer"></div>
+    <div v-html="loginStyle && loginStyle.footUrl || ''" class="footer"></div>
   </div>
 </template>
 

+ 1 - 1
components/register/PersonalRegistration.vue

@@ -71,7 +71,7 @@
       <loading v-show="isShowLoading"/>
     </div>
     <!--尾部-->
-    <div v-html="loginStyle && loginStyle.footUrl" class="footer"></div>
+    <div v-html="loginStyle && loginStyle.footUrl || ''" class="footer"></div>
   </div>
 </template>
 

+ 1 - 1
pages/common/cityAgreement.vue

@@ -13,7 +13,7 @@
         </div>
       </div>
     </template>
-    <div v-html="loginStyle.footUrl" style="margin: 50px 0;"></div>
+    <div v-html="loginStyle && loginStyle.footUrl || ''" style="margin: 50px 0;"></div>
   </div>
 </template>
 <script>