mirror of
https://gitee.com/java110/PropertyApp.git
synced 2026-02-23 21:36:39 +08:00
15 lines
255 B
JavaScript
15 lines
255 B
JavaScript
export function preventClick(fn) {
|
|
let that = this;
|
|
if (that.onoff) {
|
|
that.onoff = false;
|
|
fn();
|
|
// setTimeout(function () {
|
|
// that.onoff = true;
|
|
// }, 3000)
|
|
} else {
|
|
uni.showToast({
|
|
title:'操作过于频繁',
|
|
icon: 'none'
|
|
})
|
|
}
|
|
} |