Showing
2 changed files
with
4 additions
and
4 deletions
@@ -388,7 +388,7 @@ $reaMask.find('.box-cmp').on('touchend', function() { | @@ -388,7 +388,7 @@ $reaMask.find('.box-cmp').on('touchend', function() { | ||
388 | reasonId: reasonId | 388 | reasonId: reasonId |
389 | } | 389 | } |
390 | }).then(function(res) { | 390 | }).then(function(res) { |
391 | - $reaMask.fadeOut(); | 391 | + $reaMask.css('visibility', 'visible'); |
392 | if ($.type(res) !== 'object') { | 392 | if ($.type(res) !== 'object') { |
393 | return; | 393 | return; |
394 | } | 394 | } |
@@ -430,7 +430,7 @@ $refundReaMask.find('.box-cmp').on('touchend', function() { | @@ -430,7 +430,7 @@ $refundReaMask.find('.box-cmp').on('touchend', function() { | ||
430 | reasonId: reasonId | 430 | reasonId: reasonId |
431 | } | 431 | } |
432 | }).then(function(res) { | 432 | }).then(function(res) { |
433 | - $refundReaMask.fadeOut(); | 433 | + $refundReaMask.css('visibility', 'hidden'); |
434 | if ($.type(res) !== 'object') { | 434 | if ($.type(res) !== 'object') { |
435 | return; | 435 | return; |
436 | } | 436 | } |
@@ -262,7 +262,7 @@ $reaMask.find('.box-cmp').on('touchend', function() { | @@ -262,7 +262,7 @@ $reaMask.find('.box-cmp').on('touchend', function() { | ||
262 | reasonId: reasonId | 262 | reasonId: reasonId |
263 | } | 263 | } |
264 | }).then(function(res) { | 264 | }).then(function(res) { |
265 | - $reaMask.fadeOut(); | 265 | + $reaMask.css('visibility', 'visible'); |
266 | if ($.type(res) !== 'object') { | 266 | if ($.type(res) !== 'object') { |
267 | return; | 267 | return; |
268 | } | 268 | } |
@@ -303,7 +303,7 @@ $refundReaMask.find('.box-cmp').on('touchend', function() { | @@ -303,7 +303,7 @@ $refundReaMask.find('.box-cmp').on('touchend', function() { | ||
303 | reasonId: reasonId | 303 | reasonId: reasonId |
304 | } | 304 | } |
305 | }).then(function(res) { | 305 | }).then(function(res) { |
306 | - $refundReaMask.fadeOut(); | 306 | + $refundReaMask.css('visibility', 'visible'); |
307 | if ($.type(res) !== 'object') { | 307 | if ($.type(res) !== 'object') { |
308 | return; | 308 | return; |
309 | } | 309 | } |
-
Please register or login to post a comment