| 
					
				 | 
			
			
				@@ -1,7 +1,7 @@ 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				 <template> 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				-  <div class="login-page scrollbar-box"> 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+  <div class="login-page scrollbar-box" v-show="showType"> 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				     <!--<img class="logo-img" src="@/assets/ZDimages/logo@1x.png">--> 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				-    <img class="logo-img" :src="rectangleLogo"> 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+    <img class="logo-img" :src="rectangleLogo" > 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				     <div class="title-img-box"> 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				       <div> 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				         <img class="title-img" src="@/assets/image/login/title_icon.png"> 
			 | 
		
	
	
		
			
				| 
					
				 | 
			
			
				@@ -94,6 +94,7 @@ 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				         textTwo:"", 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				         codeNum:"", 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				         codeButtonType:true, 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+        showType:false, 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				       }; 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				     }, 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				     watch: { 
			 | 
		
	
	
		
			
				| 
					
				 | 
			
			
				@@ -107,6 +108,7 @@ 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				     created() { 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				       let self = this; 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				       if(getToken()){ 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+        this.$set(this,'showType',false); 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				         Promise.all([ 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				           this.getExploitConfig(), 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				           this.fullScreen(), 
			 | 
		
	
	
		
			
				| 
					
				 | 
			
			
				@@ -116,6 +118,7 @@ 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				           },300); 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				         }).catch((error) => {}) 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				       }else{ 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+        this.$set(this,'showType',true); 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				         this.getCode(); 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				       } 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				     }, 
			 |