mirror of
https://gitee.com/java110/PropertyApp.git
synced 2026-02-24 05:46:09 +08:00
14 lines
229 B
JavaScript
14 lines
229 B
JavaScript
export function preventClick(fn) {
|
|
let that = this;
|
|
if (that.onoff) {
|
|
that.onoff = false;
|
|
fn();
|
|
setTimeout(function () {
|
|
that.onoff = true;
|
|
}, 1500)
|
|
} else {
|
|
uni.showToast({
|
|
title:'操作过于频繁'
|
|
})
|
|
}
|
|
} |