123456789101112131415161718192021222324252627282930 |
- // 处理多次点击
- function noMultipleClicks(methods,params) {
- let that = this;
-
- if (that.noClick) {
- console.log(1)
- that.noClick= false;
- methods(params);
- setTimeout(function () {
- that.noClick= true;
- }, 2000)
- } else {
- console.log(2)
- uni.showToast({
- title: '请勿重复点击',
- duration: 2000,
- icon: 'none'
- })
- }
- }
- // const websiteUrl = 'https://qhome.usky.cn';
- // const BASE_URL = 'https://qhome.usky.cn/USKYZHAF/USKYZHAF.php/Home/'
- //导出
- export default {
- noMultipleClicks,//禁止多次点击
- // websiteUrl,
- // BASE_URL
- }
|