Ver código fonte

首页修改

wangfei 6 anos atrás
pai
commit
0d37407fa7
1 arquivos alterados com 6 adições e 1 exclusões
  1. 6
    1
      src/components/pages/index.vue

+ 6
- 1
src/components/pages/index.vue Ver arquivo

@@ -4,7 +4,7 @@
4 4
 		   <headerTab></headerTab>
5 5
 		<div class="container" :style="{'transform': 'translate3d(0px,-'+ fullPage*offsetheight +'px, 0px)'}">
6 6
 			  <div class="page-1 page">
7
-      <div class="part-1 animated bounceInLeft" >
7
+      <div class="part-1" :class="page1 == true ? 'animated bounceInLeft' :''" >
8 8
         <p class="part1-tit">荟房智慧管家</p>
9 9
         <span>智慧案场</span>
10 10
         <span>迎宾系统</span>
@@ -183,6 +183,11 @@ export default {
183 183
       }else{
184 184
 		   this.page2 = false;
185 185
 	  }
186
+      if (this.fullPage == "0") {
187
+        this.page1 = true;
188
+      }else{
189
+		   this.page1 = false;
190
+	  }
186 191
     }
187 192
   }
188 193
 };