保誠-保戶業務員媒合平台
wayne
2022-02-17 a3716f72066d25d745f4d5103ff23a553c3e102b
PAMapp/components/Ui/UiGoToTop.vue
@@ -16,11 +16,19 @@
export default class UiGoToTop extends Vue {
    buttonDisplay = 'none';
    //////////////////////////////////////////////////////////////////
    created() {
        if (process.browser) {
            document.body.addEventListener('scroll', this.scrollFunction);
        }
    }
    destroyed() {
        document.body.removeEventListener('scroll', this.scrollFunction);
    }
    //////////////////////////////////////////////////////////////////
    scrollFunction() {
        if (document.body.scrollTop > 300 || document.documentElement.scrollTop > 300) {
@@ -33,10 +41,6 @@
    topFunction() {
        document.body.scrollTop = 0;
        document.documentElement.scrollTop = 0;
    }
    destroyed() {
        document.body.removeEventListener('scroll', this.scrollFunction);
    }
}
</script>
@@ -66,4 +70,4 @@
      background-color: $MID_GREY;
  }
}
</style>
</style>