mirror of
https://gitee.com/vant-contrib/vant-weapp.git
synced 2025-04-06 03:58:05 +08:00
24 lines
656 B
JavaScript
24 lines
656 B
JavaScript
import { classNames } from '../common/class-names';
|
|
export var basic = Behavior({
|
|
methods: {
|
|
classNames: classNames,
|
|
$emit: function $emit() {
|
|
this.triggerEvent.apply(this, arguments);
|
|
},
|
|
getRect: function getRect(selector, all) {
|
|
var _this = this;
|
|
|
|
return new Promise(function (resolve) {
|
|
wx.createSelectorQuery().in(_this)[all ? 'selectAll' : 'select'](selector).boundingClientRect(function (rect) {
|
|
if (all && Array.isArray(rect) && rect.length) {
|
|
resolve(rect);
|
|
}
|
|
|
|
if (!all && rect) {
|
|
resolve(rect);
|
|
}
|
|
}).exec();
|
|
});
|
|
}
|
|
}
|
|
}); |