天天看点

php小程序关注公众号,小程序关注公众号的方法

代码如下

~~~

var is_inwxapp=false;//判断是否在小程序中访问

$(function(){

wx.miniProgram.getEnv(function(res) {

if(res.miniprogram==true){

is_inwxapp=true;

}

});

if($.cookie('mp_gz_remind')!='NO'&&"{$userdb['uid']}"!=''){

$.get("{:purl('weixin/check/ifgz',[],'index')}",function(res){//判断是否关注过公众号

if(res.code==1){

setTimeout(function(){

if(is_inwxapp){

layer.confirm("关注公众号,可享受更多权限!",{offset: 'rb',title:false,close:false,shade: 0 ,btn:['关注','别烦我']},function(){

wx.miniProgram.navigateTo( { url: "/pages/gzmp/index?url={:urlencode(get_url('location'))}&mpurl={:urlencode($webdb.weixin_mpurl)}" } );

},function(){

$.cookie('mp_gz_remind', 'NO', { expires: 24*60*7, path: '/' }); //提醒频率,单位分钟

});

}else{

layer.open({

type: 1

,offset: 'rb'

,anim:2

,title:'欢迎关注公众号'

,area:['190px','190px']

,content: '

关注后,可以享受更多权益!

php小程序关注公众号,小程序关注公众号的方法

'

,shade: 0 //不显示遮罩

,cancel: function(index, layero){

$.cookie('mp_gz_remind', 'NO', { expires: 24*60*7, path: '/' }); //提醒频率,单位分钟

}

});

}

},5000);//延时执行,以保证小程序可以判断出来

}

});

}

});

~~~