uniapp 监听推送点击事件

uniapp yekong
onLaunch: function() {
            console.log('App Launch')
            // this.plusready();
            console.log(plus.push.getClientInfo().clientid)
            console.log('cid')
            //监听系统通知栏消息点击事件  
            plus.push.addEventListener('click', function(msg) {
                //处理点击消息的业务逻辑代码  
            }, false);
            //监听接收透传消息事件  
            plus.push.addEventListener('receive', function(msg) {
                //处理透传消息的业务逻辑代码  

            }, false);
        },
喜欢