|
@@ -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("网络异常");
|
|
|
}
|
|
|
});
|