Authored by 毕凯

Merge branch 'feature/activity' into 'release/6.2'

touchend-to-click



See merge request !1006
... ... @@ -36,7 +36,7 @@ let appIconPosition = {
bank: '-4rem'
};
$('.nav-back').on('touchend', function() {
$('.nav-back').on('click', function() {
richTip.show(
['超过支付时效后订单会被取消,', '请尽快到我的订单完成支付哦!'],
[
... ...
... ... @@ -19,7 +19,7 @@ function setCallback(t, p) {
* 跳转还是消失控制
*/
(function() {
$tip.on('touchend', function(event) {
$tip.on('click', function(event) {
if (event.target.tagName === 'SPAN') {
if (touchCallback) {
touchCallback(params);
... ...