...
|
...
|
@@ -296,11 +296,29 @@ function bindCancelEvent() { |
|
|
|
|
|
|
|
|
function bindExpressEvent() {
|
|
|
$('body').on('click', function(e) {
|
|
|
if ($(e.target).hasClass('express')) {
|
|
|
return false;
|
|
|
}
|
|
|
|
|
|
$('.express-info').each(function(idx, el) {
|
|
|
if(!$(el).hasClass('hide')) {
|
|
|
$(el).addClass('hide');
|
|
|
}
|
|
|
});
|
|
|
});
|
|
|
|
|
|
$('.express').on('click', function() {
|
|
|
var $this = $(this);
|
|
|
var code = $this.closest('.order').data('code');
|
|
|
var $info = $this.find('.express-info');
|
|
|
|
|
|
$('.express-info').each(function(idx, el) {
|
|
|
if(!$(el).hasClass('hide')) {
|
|
|
$(el).addClass('hide');
|
|
|
}
|
|
|
});
|
|
|
|
|
|
if ($info.length) {
|
|
|
$info.toggleClass('hide');
|
|
|
} else {
|
...
|
...
|
@@ -318,7 +336,6 @@ function bindConfirmReceiveEvent() { |
|
|
});
|
|
|
}
|
|
|
|
|
|
|
|
|
function bindEvent() {
|
|
|
bindPaginationClick();
|
|
|
bindDeleteEvent();
|
...
|
...
|
|