common.js 459 B

1234567891011121314151617181920212223
  1. // 处理多次点击
  2. function noMultipleClicks(methods) {
  3. let that = this;
  4. if (that.noClick) {
  5. that.noClick= false;
  6. methods();
  7. setTimeout(function () {
  8. that.noClick= true;
  9. }, 2000)
  10. } else {
  11. uni.showToast({
  12. title: '请勿重复点击',
  13. duration: 2000,
  14. icon: 'none'
  15. })
  16. }
  17. }
  18. //导出
  19. export default {
  20. noMultipleClicks,//禁止多次点击
  21. }