Longlin пре 5 година
родитељ
комит
2d6b7f6e12
1 измењених фајлова са 11 додато и 0 уклоњено
  1. 11 0
      whepi-ui/templates/yeweihui/tgPublish.ftl

+ 11 - 0
whepi-ui/templates/yeweihui/tgPublish.ftl

@@ -40,6 +40,8 @@
 <script>
     var userId = ${userId};
 
+    var isLoading = false;
+
     $("#tg_input_end_time").datetimePicker();
     $("#tg_input_deliver_time").datetimePicker();
 
@@ -190,11 +192,19 @@
 
         };
 
+        if (isLoading == true) {
+            return;
+        }
+        else {
+            isLoading = true;
+        }
+
         $.ajax({
             url: '/yeweihui/tgPublish.json',
             type: 'post',
             data: sendData,
             success: function (data) {
+                isLoading = false;
                 // console.log(data);
                 if (data.success) {
                     window.location.href = "/yeweihui/home.html?show=tuangou&userId=" + userId;
@@ -204,6 +214,7 @@
                 }
             },
             error: function () {
+                isLoading = false;
                 $.alert("网络异常");
             }
         });