mirror of
https://gitee.com/vant-contrib/vant-weapp.git
synced 2025-04-06 03:58:05 +08:00
36 lines
842 B
TypeScript
36 lines
842 B
TypeScript
export const basic = Behavior({
|
|
methods: {
|
|
$emit(
|
|
name: string,
|
|
detail?: Record<string, unknown>,
|
|
options?: Record<string, unknown>
|
|
) {
|
|
this.triggerEvent(name, detail, options);
|
|
},
|
|
|
|
set(data: object, callback: () => void) {
|
|
this.setData(data, callback);
|
|
|
|
return new Promise((resolve) => wx.nextTick(resolve));
|
|
},
|
|
|
|
getRect(selector: string, all: boolean) {
|
|
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();
|
|
});
|
|
},
|
|
},
|
|
});
|