|
@@ -591,6 +591,14 @@ function checkTaskStatus(tid) {
|
591
|
591
|
getting.done(function(task) {
|
592
|
592
|
if (task.status === 'done') {
|
593
|
593
|
console.log("成功")
|
|
594
|
+ $.ajax({
|
|
595
|
+ type:"get",
|
|
596
|
+ url: returnUrl + token +"&tid=" + tid + "&city=" + qs.name,
|
|
597
|
+ dataType:'json',
|
|
598
|
+ success: function (res) {
|
|
599
|
+ console.log(res)
|
|
600
|
+ }
|
|
601
|
+ })
|
594
|
602
|
process.stop(100);
|
595
|
603
|
$("#tid").val('');
|
596
|
604
|
showLoading(false);
|
|
@@ -626,6 +634,14 @@ function checkTaskStatus(tid) {
|
626
|
634
|
|
627
|
635
|
if (task.status == "suspended") {
|
628
|
636
|
console.log("填写有误")
|
|
637
|
+ $.ajax({
|
|
638
|
+ type:"get",
|
|
639
|
+ url: returnUrl + token +"&tid=" + tid + "&city=" + qs.name,
|
|
640
|
+ dataType:'json',
|
|
641
|
+ success: function (res) {
|
|
642
|
+ console.log(res)
|
|
643
|
+ }
|
|
644
|
+ })
|
629
|
645
|
process.stop(0);
|
630
|
646
|
showLoading(false);
|
631
|
647
|
enableCommitButton(false);
|