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.
14 lines
365 B
14 lines
365 B
3 years ago
|
export default {
|
||
|
getScreen: function () {
|
||
|
var width = document.body.clientWidth;
|
||
|
if (width >= 1200) {
|
||
|
return 3; //大屏幕
|
||
|
} else if (width >= 992) {
|
||
|
return 2; //中屏幕
|
||
|
} else if (width >= 768) {
|
||
|
return 1; //小屏幕
|
||
|
} else {
|
||
|
return 0; //超小屏幕
|
||
|
}
|
||
|
}
|
||
|
}
|