github地址:https://github.com/sajiang/popup-for-weixin
可以查看完整的组件代码和使用方法。
效果:
1.引入component/popUp
2.is-show-pop-up="{{isShowModal}}"来控制popUp的弹出和关闭
3.bind:closepopup="modalClosed"方法
modalClosed(e){
if (e.detail.confirm){
//用户点击确定
}else{
//用户点击取消
}
}