Merge remote-tracking branch 'origin/develop' into develop
Showing
1 changed file
with
9 additions
and
1 deletions
| ... | @@ -94,9 +94,17 @@ | ... | @@ -94,9 +94,17 @@ |
| 94 | }else{ | 94 | }else{ |
| 95 | data.status = 1; | 95 | data.status = 1; |
| 96 | var orderStatus = "<?=$applyOrderVO->status?>"; | 96 | var orderStatus = "<?=$applyOrderVO->status?>"; |
| 97 | var url = 'flow/saveFirstCheck'; | ||
| 98 | if(orderStatus == 4) { | ||
| 99 | url = url; | ||
| 100 | } else if(orderStatus == 5) { | ||
| 101 | url = 'flow/saveSecoundCheck'; | ||
| 102 | } else if(orderStatus == 6) { | ||
| 103 | url = 'flow/saveLastCheck'; | ||
| 104 | } | ||
| 97 | $.ajax({ | 105 | $.ajax({ |
| 98 | type: 'post', | 106 | type: 'post', |
| 99 | url: apiBaseUrl + 'flow/saveFirstCheck', | 107 | url: apiBaseUrl + url, |
| 100 | cache: false, | 108 | cache: false, |
| 101 | data: JSON.stringify(data), | 109 | data: JSON.stringify(data), |
| 102 | dataType: 'json', | 110 | dataType: 'json', | ... | ... |
-
Please register or sign in to post a comment