鸿蒙智能电子锁前端项目
whychdw
2024-12-18 45b4ff5c0b824d2e5b51a6af3c44076d05f0214d
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
import store from '@/store';
import { defineComponent } from 'vue';
 
const { body } = document;
const WIDTH = 992; // refer to Bootstrap's responsive design
 
export default defineComponent({
  watch: {
    $route() {
      if (this.device === 'mobile' && this.sidebar.opened) {
        store.app().closeSidebar({ withoutAnimation: false });
      }
    }
  },
  beforeMount() {
    window.addEventListener('resize', this.resizeHandler);
  },
  beforeUnmount() {
    window.removeEventListener('resize', this.resizeHandler);
  },
  mounted() {
    const isMobile = this.isMobile();
    if (isMobile) {
      store.app().toggleDevice('mobile');
      store.app().closeSidebar({ withoutAnimation: true });
    }
  },
  methods: {
    // do not use $_ for mixins properties
    // https://vuejs.org/v2/style-guide/index.html#Private-property-names-essential
    isMobile() {
      const rect = body.getBoundingClientRect();
      return rect.width - 1 < WIDTH;
    },
    resizeHandler() {}
  }
});