...
|
...
|
@@ -46,6 +46,7 @@ $('input').on('input', function() { |
|
|
|
|
|
applyButton.on('click', function() {
|
|
|
var self = this;
|
|
|
var ret = false;
|
|
|
|
|
|
if (!flag || $(this).hasClass('disabled') || !validateForm()) {
|
|
|
return false;
|
...
|
...
|
@@ -74,17 +75,24 @@ applyButton.on('click', function() { |
|
|
|
|
|
if (data.code === 200) {
|
|
|
params.params.status = 1;
|
|
|
ret = true;
|
|
|
} else if (data.code === 500) {
|
|
|
tip.show('连接超时');
|
|
|
flag = true;
|
|
|
} else {
|
|
|
params.params.message = data.message;
|
|
|
ret = true;
|
|
|
}
|
|
|
|
|
|
url += encodeURIComponent(JSON.stringify(params));
|
|
|
|
|
|
$(self).attr('href', url);
|
|
|
return true;
|
|
|
},
|
|
|
error: function() {
|
|
|
tip.show('网络断开连接了~');
|
|
|
flag = true;
|
|
|
return false;
|
|
|
}
|
|
|
});
|
|
|
|
|
|
return ret;
|
|
|
}); |
...
|
...
|
|