Explorar el Código

封装全局禁止重复提交的方法

Ming hace 3 años
padre
commit
82fa9beaf2
Se han modificado 5 ficheros con 40 adiciones y 11 borrados
  1. 23 0
      common/common.js
  2. 11 2
      main.js
  3. 0 3
      pages/authAdd/authAdd.vue
  4. 4 4
      pages/deviceAdd/deviceAdd.vue
  5. 2 2
      util/api.js

+ 23 - 0
common/common.js

@@ -0,0 +1,23 @@
+// 处理多次点击
+function noMultipleClicks(methods) {
+    let that = this;
+    
+    if (that.noClick) {
+        that.noClick= false;
+        methods();
+        setTimeout(function () {
+            that.noClick= true;
+        }, 2000)
+    } else {
+        uni.showToast({
+            title: '请勿重复点击',
+            duration: 2000,
+            icon: 'none'
+        })
+    }
+}
+
+//导出
+export default {
+    noMultipleClicks,//禁止多次点击
+}

+ 11 - 2
main.js

@@ -1,10 +1,19 @@
 import Vue from 'vue'
 import App from './App'
 import {myRequest} from './util/api.js'
- // import wx from 'node_modules/jweixin-module/lib/index'
+ Vue.prototype.$myRequest = myRequest
+ 
+ // import wx from 'node_modules/jweixin-module/lib/index'
+ 
+ 
+ 
+ //配置公共方法
+ import common from './common/common.js'
+ Vue.prototype.$noMultipleClicks = common.noMultipleClicks; // (禁止重复点击)
+ 
+ 
  
  
- Vue.prototype.$myRequest = myRequest
 
 // 引入colorui组件
 import cuCustom from 'colorui/components/cu-custom.vue'

+ 0 - 3
pages/authAdd/authAdd.vue

@@ -209,9 +209,7 @@
 				this.selectedData.forEach(item => {
 					this.selectedArr.push(item.id)
 				})
-				
 				//修改验证
-				
 				if (!this.selectedData.length) {
 					uni.showToast({
 						title: "请选择站点",
@@ -313,7 +311,6 @@
 				setTimeout(() => {
 					uni.navigateTo({
 						url: '/pages/authManage/authManage',
-
 					});
 				}, 1000);
 

+ 4 - 4
pages/deviceAdd/deviceAdd.vue

@@ -55,10 +55,8 @@
 				</select>
 			</view>
 
-
-
 			<view class="btn-area submitBottomBtn padding-lr-sm">
-				<button class="bg-blue round  margin-top" @click="addSubmit">提 交 </button>
+				<button class="bg-blue round  margin-top" @click="$noMultipleClicks(addSubmit)">提 交 </button>
 			</view>
 		</form>
 		<!-- 站点新增end -->
@@ -114,7 +112,7 @@
 
 
 			<view class="btn-area submitBottomBtn padding-lr-sm">
-				<button class="bg-blue round  margin-top" @click="editSubmit">提 交 </button>
+				<button class="bg-blue round  margin-top" @click="$noMultipleClicks(editSubmit)">提 交 </button>
 			</view>
 		</form>
 		<!-- 站点修改end -->
@@ -125,6 +123,8 @@
 	export default {
 		data() {
 			return {
+				noClick:true,
+				
 				siteList: [],
 				id: 0,
 				deviceCode:'',

+ 2 - 2
util/api.js

@@ -1,5 +1,5 @@
-// const BASE_URL = 'https://iot.usky.cn/USKYOF/USKYOF.php/Home/' //(测试域名)  
-const BASE_URL = 'https://wx.ewoogi.com/wx/USKYOF/USKYOF.php/Home/' //(测试域名新)  
+const BASE_URL = 'https://iot.usky.cn/USKYOF/USKYOF.php/Home/' //(测试域名)  
+// const BASE_URL = 'https://wx.ewoogi.com/wx/USKYOF/USKYOF.php/Home/' //(正式域名新)  
 // const websiteUrl = 'https://wx.ewoogi.com'
 
 // const BASE_URL='http://https://qhome.usky.cn/USKYOF/USKYOF.php/Home/'