...
|
...
|
@@ -123,6 +123,7 @@ function getOrders(option) { |
|
|
data: opt,
|
|
|
success: function(data) {
|
|
|
var num;
|
|
|
|
|
|
if (data != '') {
|
|
|
|
|
|
order.page = opt.page;
|
...
|
...
|
@@ -195,6 +196,13 @@ orderHammer.on('tap', function(e) { |
|
|
|
|
|
$reaMask.data('orderId', id);
|
|
|
|
|
|
if ($cur.closest('.raffle-btn').length > 0) {
|
|
|
$('.dia-c').show();
|
|
|
var dia_h = $('.dia-main').height() / 2;
|
|
|
|
|
|
$('.dia-main').css('margin-top', '-' + dia_h + 'px');
|
|
|
}
|
|
|
|
|
|
if ($cur.closest('.del').length > 0) {
|
|
|
|
|
|
// Order delete
|
...
|
...
|
@@ -342,3 +350,7 @@ $reaMask.on('touchend', function(event) { |
|
|
$reaMask.css('visibility', 'hidden');
|
|
|
event.stopPropagation();
|
|
|
});
|
|
|
|
|
|
$('.dia-c .close').on('click', function() {
|
|
|
$('.dia-c').hide();
|
|
|
}); |
...
|
...
|
|