You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 

15 lines
312 B

  1. export default {
  2. getScreen: function() {
  3. var width = document.body.clientWidth
  4. if (width >= 1200) {
  5. return 3 // 大屏幕
  6. } else if (width >= 992) {
  7. return 2 // 中屏幕
  8. } else if (width >= 768) {
  9. return 1 // 小屏幕
  10. } else {
  11. return 0 // 超小屏幕
  12. }
  13. }
  14. }