1.ios click事件出现延迟现象
解决办法:ionic2 中可添加 tappable 属性到元素上避免click事件延迟触发。
如:
<ion-col style="margin-right:3px;" tappable (click)="pushView('SelfPayPage', {'needLogin': true})" class="three-1">
<span>诊间结算</span>
<span class="right-arrow"></span>
</ion-col>