作者 刘朕
1 个管道 的构建 通过 耗费 0 秒

订单添加、编辑优化

... ... @@ -265,20 +265,19 @@
var btn = $(this);
var text = btn.text();
if(submit_common('.form_data',form_data)) {
if(allow_submit) {
allow_submit = false;
var data = {
id: "{$orderInfo.id}",
param: form_data.join(',')
};
console.log(data);
// _common("{:url('submit_form')}",data,[$('.num').html(res.data),$('.mask').show()])
$.ajax({
url: "{:url('submit_form_edit')}",
type: "POST",
data: data,
dataType: "JSON",
beforeSend: function(){
btn.text(text+'中...').prop('disabled', true);
btn.text(text+'中...');
},
success: function (res) {
console.log(res);
... ... @@ -302,9 +301,6 @@
$('.change_text_t').hide();
}
$('.mask').show()
// setTimeout(function() {
// window.location.href = res.url;
// },1000);
} else {
_error(res.msg);
}
... ... @@ -314,11 +310,11 @@
},
complete: function(XHR,TS) {
allow_submit = true;
btn.text(text).prop('disabled', false);
btn.text(text);
}
});
}
// $('.mask').show()
}
});
$('.order_long').click(function() {
... ...
... ... @@ -232,6 +232,7 @@
var btn = $(this);
var text = btn.text();
if(submit_common('.form_data',form_data)) {
if(allow_submit) {
allow_submit = false;
var data = {
id: "{$typeInfo.id}",
... ... @@ -243,7 +244,7 @@
data: data,
dataType: "JSON",
beforeSend: function(){
btn.text(text+'中...').prop('disabled', true);
btn.text(text+'中...');
},
success: function (res) {
// console.log(res);
... ... @@ -259,10 +260,11 @@
},
complete: function(XHR,TS) {
allow_submit = true;
btn.text(text).prop('disabled', false);
btn.text(text);
}
});
}
}
});
$('.order_long').click(function() {
... ...