|
|
|
@ -5,17 +5,17 @@
|
|
|
|
|
<Menu />
|
|
|
|
|
<div class="main-content">
|
|
|
|
|
<div class="block-top-bottom-content">
|
|
|
|
|
<Cq />
|
|
|
|
|
<MainVideo />
|
|
|
|
|
<Cq ref="cq" />
|
|
|
|
|
<MainVideo ref="manVideo" />
|
|
|
|
|
</div>
|
|
|
|
|
<div class="block-left-right-content">
|
|
|
|
|
<MainChanLian />
|
|
|
|
|
<MainChanLian ref="mainChanLian" />
|
|
|
|
|
<div class="block-top-bottom-content1">
|
|
|
|
|
<div class="block-top-content">
|
|
|
|
|
<MainYueChanLiang />
|
|
|
|
|
<MainGeYueChanLiang />
|
|
|
|
|
<MainYueChanLiang ref="mainYueChanLiang"/>
|
|
|
|
|
<MainGeYueChanLiang ref="mainGeYueChanLiang"/>
|
|
|
|
|
</div>
|
|
|
|
|
<MainGxChanLiang />
|
|
|
|
|
<MainGxChanLiang ref="mainGxChanLiang"/>
|
|
|
|
|
</div>
|
|
|
|
|
</div>
|
|
|
|
|
</div>
|
|
|
|
@ -55,7 +55,24 @@ export default {
|
|
|
|
|
init(){
|
|
|
|
|
this.$store.dispatch('page/handler', true)
|
|
|
|
|
}
|
|
|
|
|
},
|
|
|
|
|
beforeDestroy() {
|
|
|
|
|
console.log('beforeDestroy: 组件实例销毁之前');
|
|
|
|
|
this.$refs.cq.clear()
|
|
|
|
|
this.$refs.mainChanLian.clear()
|
|
|
|
|
this.$refs.mainYueChanLiang.clear()
|
|
|
|
|
this.$refs.mainGeYueChanLiang.clear()
|
|
|
|
|
this.$refs.mainGxChanLiang.clear()
|
|
|
|
|
},
|
|
|
|
|
destroyed() {
|
|
|
|
|
console.log('destroyed: 组件实例销毁之后');
|
|
|
|
|
}
|
|
|
|
|
/*beforeDestroy(){
|
|
|
|
|
console.log(this.components)
|
|
|
|
|
for (const item in this.components) {
|
|
|
|
|
console.log(item)
|
|
|
|
|
}
|
|
|
|
|
}*/
|
|
|
|
|
}
|
|
|
|
|
</script>
|
|
|
|
|
|
|
|
|
|