Merge branch 'feature/refundApply' into release/5.5
Showing
1 changed file
with
3 additions
and
1 deletions
@@ -40,7 +40,9 @@ $area.on('click', function() { | @@ -40,7 +40,9 @@ $area.on('click', function() { | ||
40 | $btnSure.on('click', function() { | 40 | $btnSure.on('click', function() { |
41 | $.post('/home/orders/changeAddress', $areaForm.serialize(), function(result) { | 41 | $.post('/home/orders/changeAddress', $areaForm.serialize(), function(result) { |
42 | if (result && result.code === 200) { | 42 | if (result && result.code === 200) { |
43 | - tip.show(result.msg); | 43 | + if (result.data && result.data.is_modified === 'Y') { |
44 | + tip.show(result.data.tips); | ||
45 | + } | ||
44 | location.href = document.referrer; | 46 | location.href = document.referrer; |
45 | } else { | 47 | } else { |
46 | tip.show('系统错误,请重试!'); | 48 | tip.show('系统错误,请重试!'); |
-
Please register or login to post a comment