|
@@ -154,23 +154,30 @@
|
|
|
try {
|
|
|
|
|
|
if (data.length == 0) {
|
|
|
- var t1 = window.setTimeout(getRegistrationID, 1000);
|
|
|
+ console.log('******** getRegistrationID');
|
|
|
+ var t1 = window.setTimeout(function(){
|
|
|
+ window.JPush.getRegistrationID(onGetRegistrationID);
|
|
|
+ }, 1000);
|
|
|
}else{
|
|
|
var post_data = {
|
|
|
"regid":data,
|
|
|
"uid":renlian.storage.get('userinfo').baseinfo.userId
|
|
|
};
|
|
|
+ console.log('******** update_jg_registrationid');
|
|
|
renlian.httppost(config.webapi+'?s=api/update_jg_registrationid',post_data,function(res){
|
|
|
-
|
|
|
+ console.log(res);
|
|
|
});
|
|
|
}
|
|
|
} catch (exception) {
|
|
|
}
|
|
|
};
|
|
|
- var getRegistrationID = function() {
|
|
|
- window.JPush.getRegistrationID(onGetRegistrationID);
|
|
|
- };
|
|
|
- window.setTimeout(getRegistrationID, 1000);
|
|
|
+ // var getRegistrationID = function() {
|
|
|
+ // window.JPush.getRegistrationID(onGetRegistrationID);
|
|
|
+ // };
|
|
|
+ //window.setTimeout(getRegistrationID, 1000);
|
|
|
+ window.setTimeout(function(){
|
|
|
+ window.JPush.getRegistrationID(onGetRegistrationID);
|
|
|
+ }, 1000);
|
|
|
}
|
|
|
renlian.layer.loading(true, "加载数据中");
|
|
|
if(window.lrmui.isreal){
|