pdfViewer.getAnnotManager().registerMatchRule(function (pdfAnnot, MarkupAnnotComponent) {
//if (pdfAnnot.getType() === 'stamp')//可以添加判定注释类型
if(PDFViewCtrl.DeviceInfo.isMobile)
{
return class CustomStampComponent extends MarkupAnnotComponent {
showReplyDialog(){
//重写一个回复注释弹框的实现逻辑,不写则代表缺省不触发
}
}
}
})