89a7e7f5 by wang

Merge remote-tracking branch 'origin/develop' into develop

2 parents 07bd2c5c 2e8fa0c0
...@@ -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',
......
Styling with Markdown is supported
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!