vant-weapp/lib/mixins/basic.js
2019-07-30 20:29:34 +08:00

30 lines
962 B
JavaScript

"use strict";
Object.defineProperty(exports, "__esModule", { value: true });
exports.basic = Behavior({
methods: {
$emit: function () {
var args = [];
for (var _i = 0; _i < arguments.length; _i++) {
args[_i] = arguments[_i];
}
this.triggerEvent.apply(this, args);
},
getRect: function (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();
});
}
}
});