|  | @@ -2,14 +2,19 @@
 | 
	
		
			
				|  |  |    <div class="overview">
 | 
	
		
			
				|  |  |      <!-- <div class="innerContainer leftPane">驾驶舱</div> -->
 | 
	
		
			
				|  |  |      <div class="innerContainer leftPane">
 | 
	
		
			
				|  |  | -      <QYGH/>
 | 
	
		
			
				|  |  | -      <ZRZY/>
 | 
	
		
			
				|  |  | -      <KCZY/>
 | 
	
		
			
				|  |  | +      <QYGH />
 | 
	
		
			
				|  |  | +      <ZRZY />
 | 
	
		
			
				|  |  | +      <KCZY />
 | 
	
		
			
				|  |  |      </div>
 | 
	
		
			
				|  |  | -    <div class="innerContainer rightPane">
 | 
	
		
			
				|  |  | -      <DXGL/>
 | 
	
		
			
				|  |  | -      <GDBH/>
 | 
	
		
			
				|  |  | -      <JCJG/>
 | 
	
		
			
				|  |  | +    <div class="leftPanePackUp" @click="switchPack">
 | 
	
		
			
				|  |  | +
 | 
	
		
			
				|  |  | +    </div>
 | 
	
		
			
				|  |  | +    <div class="innerContainer rightPane" :class="{ 'rightPaneAnimation': iSRightPaneAnimation }">
 | 
	
		
			
				|  |  | +      <DXGL />
 | 
	
		
			
				|  |  | +      <GDBH />
 | 
	
		
			
				|  |  | +      <JCJG />
 | 
	
		
			
				|  |  | +    </div>
 | 
	
		
			
				|  |  | +    <div class="rightPanePackUp"  @click="switchPack">
 | 
	
		
			
				|  |  |      </div>
 | 
	
		
			
				|  |  |    </div>
 | 
	
		
			
				|  |  |  </template>
 | 
	
	
		
			
				|  | @@ -33,10 +38,17 @@ export default {
 | 
	
		
			
				|  |  |      JCJG
 | 
	
		
			
				|  |  |    },
 | 
	
		
			
				|  |  |    data() {
 | 
	
		
			
				|  |  | -    return {};
 | 
	
		
			
				|  |  | +    return {
 | 
	
		
			
				|  |  | +      iSRightPaneAnimation: false
 | 
	
		
			
				|  |  | +    };
 | 
	
		
			
				|  |  | +  },
 | 
	
		
			
				|  |  | +  created() { },
 | 
	
		
			
				|  |  | +  methods: {
 | 
	
		
			
				|  |  | +
 | 
	
		
			
				|  |  | +    switchPack() {
 | 
	
		
			
				|  |  | +      this.iSRightPaneAnimation = true;
 | 
	
		
			
				|  |  | +    }
 | 
	
		
			
				|  |  |    },
 | 
	
		
			
				|  |  | -  created() {},
 | 
	
		
			
				|  |  | -  methods: {},
 | 
	
		
			
				|  |  |  };
 | 
	
		
			
				|  |  |  </script>
 | 
	
		
			
				|  |  |  
 | 
	
	
		
			
				|  | @@ -64,9 +76,53 @@ export default {
 | 
	
		
			
				|  |  |  
 | 
	
		
			
				|  |  |  .leftPane {
 | 
	
		
			
				|  |  |    left: 10px;
 | 
	
		
			
				|  |  | +
 | 
	
		
			
				|  |  | +
 | 
	
		
			
				|  |  | +}
 | 
	
		
			
				|  |  | +
 | 
	
		
			
				|  |  | +@keyframes rightPaneAnimation-packUp {
 | 
	
		
			
				|  |  | +
 | 
	
		
			
				|  |  | +  from {
 | 
	
		
			
				|  |  | +    right: 10px;
 | 
	
		
			
				|  |  | +
 | 
	
		
			
				|  |  | +  }
 | 
	
		
			
				|  |  | +
 | 
	
		
			
				|  |  | +  to {
 | 
	
		
			
				|  |  | +    right: -360px;
 | 
	
		
			
				|  |  | +  }
 | 
	
		
			
				|  |  |  }
 | 
	
		
			
				|  |  |  
 | 
	
		
			
				|  |  | +
 | 
	
		
			
				|  |  |  .rightPane {
 | 
	
		
			
				|  |  |    right: 10px;
 | 
	
		
			
				|  |  |  }
 | 
	
		
			
				|  |  | +
 | 
	
		
			
				|  |  | +.rightPaneAnimation {
 | 
	
		
			
				|  |  | +  animation: rightPaneAnimation-packUp 1s linear 0.5s forwards;
 | 
	
		
			
				|  |  | +  animation-iteration-count: 1;
 | 
	
		
			
				|  |  | +}
 | 
	
		
			
				|  |  | +
 | 
	
		
			
				|  |  | +.leftPanePackUp {
 | 
	
		
			
				|  |  | +  width: 25px;
 | 
	
		
			
				|  |  | +  height: 25PX;
 | 
	
		
			
				|  |  | +  min-height: 50px;
 | 
	
		
			
				|  |  | +  background-image: url("/static/images/homepage/packDown.png");
 | 
	
		
			
				|  |  | +  background-size: 100% 100%;
 | 
	
		
			
				|  |  | +  position: absolute;
 | 
	
		
			
				|  |  | +  left: 19%;
 | 
	
		
			
				|  |  | +  z-index: 11111;
 | 
	
		
			
				|  |  | +  top: 50%;
 | 
	
		
			
				|  |  | +}
 | 
	
		
			
				|  |  | +
 | 
	
		
			
				|  |  | +.rightPanePackUp {
 | 
	
		
			
				|  |  | +  width: 25px;
 | 
	
		
			
				|  |  | +  height: 25PX;
 | 
	
		
			
				|  |  | +  min-height: 50px;
 | 
	
		
			
				|  |  | +  background-image: url("/static/images/homepage/packUp.png");
 | 
	
		
			
				|  |  | +  background-size: 100% 100%;
 | 
	
		
			
				|  |  | +  position: absolute;
 | 
	
		
			
				|  |  | +  right: 19%;
 | 
	
		
			
				|  |  | +  z-index: 11111;
 | 
	
		
			
				|  |  | +  top: 50%;
 | 
	
		
			
				|  |  | +}
 | 
	
		
			
				|  |  |  </style>
 |