mirror of
https://gitee.com/vant-contrib/vant-weapp.git
synced 2025-04-06 03:58:05 +08:00
28 lines
717 B
JavaScript
28 lines
717 B
JavaScript
export const basic = Behavior({
|
|
methods: {
|
|
$emit(name, detail, options) {
|
|
this.triggerEvent(name, detail, options);
|
|
},
|
|
set(data, callback) {
|
|
this.setData(data, callback);
|
|
return new Promise((resolve) => wx.nextTick(resolve));
|
|
},
|
|
getRect(selector, all) {
|
|
return new Promise((resolve) => {
|
|
wx.createSelectorQuery()
|
|
.in(this)
|
|
[all ? 'selectAll' : 'select'](selector)
|
|
.boundingClientRect((rect) => {
|
|
if (all && Array.isArray(rect) && rect.length) {
|
|
resolve(rect);
|
|
}
|
|
if (!all && rect) {
|
|
resolve(rect);
|
|
}
|
|
})
|
|
.exec();
|
|
});
|
|
},
|
|
},
|
|
});
|