mirror of
https://gitee.com/vant-contrib/vant-weapp.git
synced 2025-04-05 19:41:45 +08:00
28 lines
689 B
JavaScript
28 lines
689 B
JavaScript
export const basic = Behavior({
|
|
methods: {
|
|
$emit(...args) {
|
|
this.triggerEvent(...args);
|
|
},
|
|
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();
|
|
});
|
|
},
|
|
},
|
|
});
|