...
|
...
|
@@ -8908,6 +8908,16 @@ function showPage() { |
|
|
$('.payapp-list').css('visibility', 'visible');
|
|
|
}
|
|
|
|
|
|
function bindTouchedEvent() {
|
|
|
var $boxs = $('.box');
|
|
|
|
|
|
$boxs.on('touchstart', function(e) {
|
|
|
$(this).addClass('bytouch');
|
|
|
}).on('touchend touchcancel', function() {
|
|
|
$boxs.removeClass('bytouch');
|
|
|
});
|
|
|
}
|
|
|
|
|
|
if (wxHammer) {
|
|
|
wxHammer.on('tap', function() {
|
|
|
callpay(theOrderCode);
|
...
|
...
|
@@ -8919,6 +8929,7 @@ function main() { |
|
|
loading.hideLoadingMask();
|
|
|
showPage();
|
|
|
loadIcon();
|
|
|
bindTouchedEvent();
|
|
|
}
|
|
|
|
|
|
loading.showLoadingMask();
|
...
|
...
|
|