|
|
@@ -84,6 +84,26 @@
|
|
|
title: '迈迪杰科技'
|
|
|
}]
|
|
|
}
|
|
|
+ },
|
|
|
+ watch: {
|
|
|
+ $route: function (val, oldVal) {
|
|
|
+ let footer = document.getElementsByClassName('footer')[0]
|
|
|
+ if (this.$route.path === '/applyPurchase') {
|
|
|
+ footer.style.position = 'absolute'
|
|
|
+ footer.style.top = '2556px'
|
|
|
+ } else {
|
|
|
+ footer.style.position = 'initial'
|
|
|
+ }
|
|
|
+ }
|
|
|
+ },
|
|
|
+ mounted () {
|
|
|
+ let footer = document.getElementsByClassName('footer')[0]
|
|
|
+ if (this.$route.path === '/applyPurchase') {
|
|
|
+ footer.style.position = 'absolute'
|
|
|
+ footer.style.top = '2556px'
|
|
|
+ } else {
|
|
|
+ footer.style.position = 'initial'
|
|
|
+ }
|
|
|
}
|
|
|
}
|
|
|
</script>
|