|
@@ -182,17 +182,24 @@ export default {
|
|
|
},
|
|
},
|
|
|
false
|
|
false
|
|
|
);
|
|
);
|
|
|
|
|
+
|
|
|
|
|
+ // 隐藏机关图标
|
|
|
|
|
+ document.querySelector("#_ideConac").style.display = "none";
|
|
|
},
|
|
},
|
|
|
beforeCreate() {}, //生命周期 - 创建之前
|
|
beforeCreate() {}, //生命周期 - 创建之前
|
|
|
beforeMount() {}, //生命周期 - 挂载之前
|
|
beforeMount() {}, //生命周期 - 挂载之前
|
|
|
beforeUpdate() {}, //生命周期 - 更新之前
|
|
beforeUpdate() {}, //生命周期 - 更新之前
|
|
|
updated() {}, //生命周期 - 更新之后
|
|
updated() {}, //生命周期 - 更新之后
|
|
|
- beforeDestroy() {}, //生命周期 - 销毁之前
|
|
|
|
|
|
|
+ beforeDestroy() {
|
|
|
|
|
+ // 隐藏机关图标
|
|
|
|
|
+ document.querySelector("#_ideConac").style.display = "block";
|
|
|
|
|
+ }, //生命周期 - 销毁之前
|
|
|
destroyed() {}, //生命周期 - 销毁完成
|
|
destroyed() {}, //生命周期 - 销毁完成
|
|
|
activated() {}, //如果页面有keep-alive缓存功能,这个函数会触发
|
|
activated() {}, //如果页面有keep-alive缓存功能,这个函数会触发
|
|
|
};
|
|
};
|
|
|
</script>
|
|
</script>
|
|
|
-<style lang='less' scoped>
|
|
|
|
|
|
|
+
|
|
|
|
|
+<style lang="less" scoped>
|
|
|
.stair {
|
|
.stair {
|
|
|
overflow: hidden;
|
|
overflow: hidden;
|
|
|
position: relative;
|
|
position: relative;
|
|
@@ -202,6 +209,7 @@ export default {
|
|
|
height: 100%;
|
|
height: 100%;
|
|
|
// background: url("../../assets/img/bgs.jpg");
|
|
// background: url("../../assets/img/bgs.jpg");
|
|
|
// background-size: 100% 100%;
|
|
// background-size: 100% 100%;
|
|
|
|
|
+
|
|
|
.ifrBox {
|
|
.ifrBox {
|
|
|
position: absolute;
|
|
position: absolute;
|
|
|
top: 0;
|
|
top: 0;
|
|
@@ -339,4 +347,4 @@ export default {
|
|
|
}
|
|
}
|
|
|
}
|
|
}
|
|
|
}
|
|
}
|
|
|
-</style>
|
|
|
|
|
|
|
+</style>
|