您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符

3 年前
1234567891011121314
  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. }