mirror of
https://gitee.com/vant-contrib/vant-weapp.git
synced 2025-04-06 03:58:05 +08:00
42 lines
1.1 KiB
JavaScript
42 lines
1.1 KiB
JavaScript
import { classNames } from '../common/class-names';
|
|
export var basic = Behavior({
|
|
created: function created() {
|
|
var _this = this;
|
|
|
|
wx.getSystemInfo({
|
|
success: function success(_ref) {
|
|
var model = _ref.model,
|
|
screenHeight = _ref.screenHeight;
|
|
var isIphoneX = /iphone x/i.test(model);
|
|
var isIphoneNew = /iPhone11/i.test(model) && screenHeight === 812;
|
|
|
|
if (isIphoneX || isIphoneNew) {
|
|
_this.set({
|
|
isIPhoneX: true
|
|
});
|
|
}
|
|
}
|
|
});
|
|
},
|
|
methods: {
|
|
classNames: classNames,
|
|
$emit: function $emit() {
|
|
this.triggerEvent.apply(this, arguments);
|
|
},
|
|
getRect: function getRect(selector, all) {
|
|
var _this2 = this;
|
|
|
|
return new Promise(function (resolve) {
|
|
wx.createSelectorQuery().in(_this2)[all ? 'selectAll' : 'select'](selector).boundingClientRect(function (rect) {
|
|
if (all && Array.isArray(rect) && rect.length) {
|
|
resolve(rect);
|
|
}
|
|
|
|
if (!all && rect) {
|
|
resolve(rect);
|
|
}
|
|
}).exec();
|
|
});
|
|
}
|
|
}
|
|
}); |