//切换发布版本 true:正式版,连接生产环境;false:测试版,连接测试环境。 var publish_version = true; var publish_version = false; if(publish_version){ //正式环境(城市爱健康) var server = "http://srijk.yihu.com/wlyy/"; var appId = "wx49aa3a51b0aca27d"; var urlName = "wlyy"; var weixinUrl = "srijk.yihu.com"; var agentName = "wlyyAgent"; var agentName1 = "wlyyAgent1"; var OpenidAgent = "OpenidAgent"; var judgeAgent = "judgeAgent"; var pageName = "pageurl"; var wxurl = "http%3a%2f%2fwww.srijk.com%2fwlyy%2fwx%2fhtml"; var imurl="http://27.154.233.186:3030"; var imgUrlDomain = 'http://srijk.yihu.com/'; var profileServer = "http://srijk.yihu.com"; // 健康档案(上饶)服务地址 var registrationServer = "https://wxauth.yihu.com";// 预约挂号服务地址 var yuYueAppId = "9000424";//预约挂号-应用ID var hospitalId = "1025056";//预约挂号-上饶县人民医院的id }else{ //测试环境 // var server = "http://ehr.yihu.com/csijk/"; //旧 // var server = "http://172.19.103.72:9096/wlyy/"; //旧 var server = "http://172.26.0.122:8081/wlyy/"; // var server = "http://192.168.131.24:8082/";//仕杰 // var server = "http://192.168.131.102:8081/";//伟达 // var server = "http://192.168.131.127:8081/";//逸祥 // var server = "http://192.168.131.133:8080/";//文杰 //var server = "http://192.168.131.250:8081/"; //var server = "http://192.168.131.131:8080/"; //文斌 // var server = "http://192.168.131.128:8081/"; //维山 // var server = "http://192.168.131.144:8081/"; //冬梅 var appId = "wx0a06b75a40b28f2a"; var urlName = "wlyy"; var weixinUrl = "srijk.yihu.com"; var agentName = "wlyyAgent"; var agentName1 = "wlyyAgent1"; var OpenidAgent = "OpenidAgent"; var judgeAgent = "judgeAgent"; var pageName = "pageurl"; var wxurl = "http%3a%2f%2fwww.srijk.com%2fwlyy%2fwx%2fhtml"; var imgUrlDomain = "http://172.26.0.110:8888/";//添加图片服务器路径; var imurl="http://172.26.0.118:3000"; // var imurl="http://172.19.103.72:3000"; //旧 // var imgUrlDomain = 'http://172.19.103.54/'; //旧 var profileServer = "http://ehr.yihu.com"; // 健康档案(上饶)服务地址 var registrationServer = "https://mguidewebtest.yihu.com";// 预约挂号服务地址 var yuYueAppId = "9000424";//预约挂号-应用ID var hospitalId = "1024727";//预约挂号-健康之路(演示医院) } //添加openid白名单,只有这个名单内的openid才可以在线支付 var openidList = []; //设置变量,控制是否可以在线支付 var canPayOnline = true; if(GetRequest().openid){ checkCanPayOnline(GetRequest().openid); } //添加处方功能的openid白名单 var prescriptionOpenidList = ['123456']; var canPrescription = true; if(GetRequest().openid){ checkCanPrescription(GetRequest().openid); } //保存userAgent function wxSaveUserAgent(id, uid, openid, token,lastUid) { if(window.localStorage.getItem(agentName)){ window.localStorage.removeItem(agentName); } var userAgent = { id: id, uid: uid, openid: openid, token: token, lastUid: (lastUid ? lastUid:""), platform: 3 } userAgent = JSON.stringify(userAgent); // var userAgent = "{\"id\":" + id + ",\"uid\":\"" + uid + "\",\"openid\":\"" + openid + "\",\"token\":\"" + token + "\",\"lastUid\":\"" + (lastUid ? lastUid:"") + "\",\"platform\":3}"; window.localStorage.setItem(agentName, userAgent); return userAgent; } //保存userAgent1 function wxSaveUserAgent1(uid, name, photo) { if(window.localStorage.getItem(agentName1)){ window.localStorage.removeItem(agentName1); } var userAgent = { uid: uid, name: name, photo: photo } userAgent = JSON.stringify(userAgent); // var userAgent = "{\"uid\":" + uid + ",\"name\":\"" + name + "\",\"photo\":\"" + photo + "\"}"; window.localStorage.setItem(agentName1, userAgent); return userAgent; } //保存openid function saveAgentOpenid(openid){ if(window.localStorage.getItem(OpenidAgent)){ window.localStorage.removeItem(OpenidAgent); } var agentOpenid = "{\"openid\":\"" + openid + "\"}"; window.localStorage.setItem(OpenidAgent, agentOpenid); } //保存页面跳转值 function saveAgentJudge(judge){ if(window.localStorage.getItem(judgeAgent)){ window.localStorage.removeItem(judgeAgent); } var agentJudge = "{\"judge\":" + judge + "}"; window.localStorage.setItem(judgeAgent, agentJudge); } //保存跳转页面到agent function saveAgentPage(pageurl){ if(window.localStorage.getItem(pageName)){ window.localStorage.removeItem(pageName); } var agentPage = "{\"pageurl\":\"" + pageurl + "\"}"; window.localStorage.setItem(pageName, agentPage); //如果页面中有code这个参数,及微信授权返回的code,将这个code保存在storage中 if(pageurl.indexOf("code=") > -1){ var arr = pageurl.split("code="); var code = arr[1].split("&")[0]; window.localStorage.setItem("weixinCode", code); } } //清空所有的agent function clearAgent(){ if(window.localStorage.getItem(agentName)){ window.localStorage.removeItem(agentName); } if(window.localStorage.getItem(agentName1)){ window.localStorage.removeItem(agentName1); } window.localStorage.removeItem("weixinCode"); //清楚缓存的code // if(window.localStorage.getItem(OpenidAgent)){ // window.localStorage.removeItem(OpenidAgent); // } } //获取链接上的参数 function GetRequest() { var url = location.search; //获取url中"?"符后的字串 var theRequest = new Object(); if (url.indexOf("?") != -1) { var str = url.substr(1); strs = str.split("&"); for(var i = 0; i < strs.length; i ++) { theRequest[strs[i].split("=")[0]]=(strs[i].split("=")[1]); } } //添加toName的信息 if(theRequest.toName){ localStorage.setItem("toName", theRequest.toName); } return theRequest; } //新的判断用户是否登录的方法,先校验openid是否一致 function checkUserAgent(){ var Request = new Object(); Request = GetRequest(); var code = Request["code"]; var userAgent = window.localStorage.getItem(agentName); var agentCode = localStorage.getItem("weixinCode"); if(code == "" || code == null || code == undefined){ if(agentCode){ //存在agentCode,说明一定获取openid成功过。 if(!userAgent){ var agentOpenids = window.localStorage.getItem(OpenidAgent); agentOpenids = JSON.parse(agentOpenids); var url = window.parent.location.href; saveAgentPage(url); window.location.href = "../../home/html/login.html?type=0&openid=" + agentOpenids.openid; }else{ try{ var agentOpenids = window.localStorage.getItem(OpenidAgent); if(agentOpenids){ agentOpenids = JSON.parse(agentOpenids); checkCanPayOnline(agentOpenids.openid); checkCanPrescription(agentOpenids.openid); } queryInit(); }catch(e){ } } }else{ if(!userAgent){ // d.close(); // dialog({contentType:'tipsbox', skin:'bk-popup' , content:'授权失败',bottom:true}).show(); //模板消息的情况,模板消息带上openid的值给页面 var agentOpenids = JSON.parse(window.localStorage.getItem(OpenidAgent)); var openid = Request['openid']||agentOpenids.openid?agentOpenids.openid:""; saveAgentOpenid(openid); var url = window.parent.location.href; saveAgentPage(url); if(openid){ window.location.href = "../../home/html/login.html?type=0&openid=" + openid; }else{ window.location.href = "../../home/html/login.html?type=0"; } }else{ try{ checkCanPayOnline(Request['openid']); checkCanPrescription(Request['openid']); queryInit(); }catch(e){ } } } } else{ //校验code与缓存中的code是否一致,一致的话则不再向后端获取openid,因为code只能使用一次 if(agentCode && (code == agentCode)){ try{ var agentOpenids = window.localStorage.getItem(OpenidAgent); if(agentOpenids){ agentOpenids = JSON.parse(agentOpenids); checkCanPayOnline(agentOpenids.openid); checkCanPrescription(agentOpenids.openid) } queryInit(); }catch(e){ } }else{ //校验登录的openid是否与缓存中存在的一致 // d.show(); sendPost('weixin/getOpenidByCode', {code: code}, 'json', 'post', openidFailed, function(res){ if (res.status == 200) { //d.close(); localStorage.setItem("weixinCode", code); var openid = res.openid, agentOpenids = window.localStorage.getItem(OpenidAgent), agentOpenid = agentOpenids && JSON.parse(agentOpenids).openid; saveAgentOpenid(openid); if( agentOpenid == openid){ if(!userAgent){ var url = window.parent.location.href; saveAgentPage(url); window.location.href = "../../home/html/login.html?type=0&openid=" + openid; }else{ try{ checkCanPayOnline(openid); checkCanPrescription(openid); queryInit(); }catch(e){ } } }else{ var url = window.parent.location.href; saveAgentPage(url); window.location.href = server + "wx/html/home/html/login.html?type=0&openid=" + openid; } } else { openidFailed(res); } }); } } } //判断用户是否登录 function checkUserAgent1(){ var userAgent = window.localStorage.getItem(agentName); if(!userAgent){ var agentOpenid = window.localStorage.getItem(OpenidAgent); if(!agentOpenid||agentOpenid=="undefined"){ var Request = new Object(); Request = GetRequest(); var code = Request["code"]; if(code == "" || code == null || code == undefined){ d.close(); dialog({contentType:'tipsbox', skin:'bk-popup' , content:'授权失败',bottom:true}).show(); } else{ d.show(); var data = {}; data.code = code; sendPost('weixin/getOpenidByCode', data, 'json', 'post', openidFailed, openidSuccess); } } else{ var jsonstr = $.parseJSON(agentOpenid); var openid = jsonstr.openid; if((pagetype>=20&&pagetype<=27) || pagetype=='-1' || pagetype==3 || !pagetype){ pagetype = 0; window.localStorage.setItem(pageName, JSON.stringify({pageurl: location.href})) } // window.location.href = server + "wx/html/home/html/zhmm-login.html?type=" + pagetype + "&openid=" + openid; window.location.href = "../../home/html/login.html?type=" + pagetype //+ "&openid=" + openid; } } else{ try{ queryInit(); }catch(e){ } } } //判断openid是否在可以在线支付的白名单里面 function checkCanPayOnline(id){ if(id && openidList.indexOf(id)>-1){ canPayOnline = true; } } //判断openid是否在可以开启处方功能的白名单中 function checkCanPrescription(id){ if(id && prescriptionOpenidList.indexOf(id)>-1){ canPrescription = true; } } //成功 function openidSuccess(res) { if (res.status == 200) { var openid = res.openid; saveAgentOpenid(openid); window.location.href = server + "wx/html/home/html/zhmm-login.html?type=" + pagetype + "&openid=" + openid; } else { openidFailed(res); } } //失败 function openidFailed(res) { d.close(); // if(window.localStorage.getItem(OpenidAgent)){ // window.localStorage.removeItem(OpenidAgent); // } if (res && res.msg) { dialog({contentType:'tipsbox', skin:'bk-popup' , content:res.msg,bottom:true}).show(); } else { dialog({contentType:'tipsbox', skin:'bk-popup' , content:'获取认证信息失败',bottom:true}).show(); } } //判断用户是否有签约 function checkSign(type){ d.show(); var userAgent = window.localStorage.getItem(agentName); if(userAgent){ var data = {}; $.ajax(server + "patient/is_sign", { data: data, type: 'POST', dataType: 'json', beforeSend: function(request) { request.setRequestHeader("userAgent", userAgent); }, error: function(res) { d.close(); if(res.status == 999 || res.status == 998 || res.status == 997){ loginUrl(res.status); return; } dialog({contentType:'tipsbox', skin:'bk-popup' , content:'校验失败',bottom:true}).show(); }, success: function(res) { d.close(); if(res.status == 999 || res.status == 998 || res.status == 997){ loginUrl(res.status); } else if (res.status == 200) { var is_sign = res.data;//0未签约,1已签约 if(is_sign == 0){ dialog({ title: '提示', content: '您还未签约,请先签约,谢谢!', okValue:'签约', ok: function (){ window.location.href = server + "wx/html/ssgg/html/choose-region.html"; }, cancelValue: '不了', cancel: function () { return; } }).showModal(); }else{ if(type == 1){ window.location.href = server + "wx/html/zxwz/html/teachers-consult-commit.html"; } } } else { dialog({contentType:'tipsbox', skin:'bk-popup' , content:res.msg,bottom:true}).show(); } } }); } else{ dialog({contentType:'tipsbox', skin:'bk-popup' , content:'用户信息错误',bottom:true}).show(); } } var toUsers = localStorage.getItem("toUser"); var curId = localStorage.getItem("id"); var toName = localStorage.getItem("toName"); var consultCode = localStorage.getItem("consultCode"); var article = localStorage.getItem("article"); var pageUrl = { /**通用跳转**/ 0:function(){ var pageurl = ""; var agentPage = window.localStorage.getItem(pageName); if(agentPage){ var jsonstr = $.parseJSON(agentPage); pageurl = jsonstr.pageurl; } if(pageurl){ return pageurl; }else{ return "../../grzx/html/my-detail.html"; } }(), //关注咨询列表 "1": "../../yszx/html/doctor-consultation.html", //我的关注医生列表 "2": "../../yszx/html/focused-doctor.html", //查找医生 "3": "../../yszx/html/select-consult-doctor.html", //个人中心 "4": "../../grzx/html/my-detail.html", // 健康档案 "5": "../../profile/html/index.html", //我的家庭 "6":"../../jtgx/html/family.html", /**医生指导详情**/ "25":"../../yszd/html/guidance-detail.html?openid="+0+"&toUser="+toUsers+"&id="+curId+"&toName="+toName, // /**新的健康教育详情**/ "50":"../../jkjy/html/article2.html?dataId="+article+"&toUser="+toUsers+"&toName="+toName, //预约挂号 "51": "../../wdyy/html/yuyueguahao.html", //预约记录 "52": "../../wdyy/html/yuyuejilu.html", ///**签约管理首页**/ "-1":"../../qygl/html/signing-doctors.html",//签约管理首页 ///**医生咨询首页**/ 1:"../../yszx/html/doctor-consultation.html", ///**医生指导首页**/ 3:"../../yszd/html/doctor-guidance.html",//医生指导首页 ///**疾病社区首页**/ 4:"../../jbsq/html/disease-community.html",//疾病社区首页 ///**健康记录首页**/ 5:"../../jkjl/html/health-record.html",//健康记录 ///**我的设备首页**/ 6:"../../wdsb/html/my-equipments.html",//我的设备 ///**我的资料首页**/ 11:"../../grzx/html/my-detail.html", ///**我的设备首页**/ 15:"../../wdsb/html/my-equipments.html", ///**签约选择医生**/ 16:"../../qygl/html/select-doctor.html", ///**签约搜索医生**/ 17:"../../qygl/html/search-doctor.html", ///**签约医生主页**/ 18:function(){ // var doctor = localStorage.getItem("doccode"); // return "../../ssgg/html/doctor-homepage-new.html?openid="+0+"&state="+doctor; // }(), ///**我的预约首页**/ 20:"../../wdyy/html/my-appointment.html", ///**预约挂号提交**/ 21:"https://open.weixin.qq.com/connect/oauth2/authorize?appid="+appId+"&redirect_uri="+wxurl+"%2fwdyy%2fhtml%2finfo-confirm.html&response_type=code&scope=snsapi_base&state=STATE#wechat_redirect", // 22:"../../jtgx/html/family.html", ///**预约详情首页**/ 23:"../../wdyy/html/detail-appointment.html?openid="+0+"&toUser="+toUsers+"&id="+curId+"&toName="+toName, ///**医生咨询详情**/ 24:"../../yszx/html/consulting-doctor.html?openid="+0+"&toUser="+toUsers+"&consult="+consultCode+"&toName="+toName, ///**医生指导详情**/ 25:"../../yszd/html/guidance-detail.html?openid="+0+"&toUser="+toUsers+"&id="+curId+"&toName="+toName, ///**健康教育**/ 26:"../../jkjy/html/article_list.html", ///**健康详情**/ 27:function(){ // var artoUser = localStorage.getItem("toUser"); // var article = localStorage.getItem("article"); // return "../../jkjy/html/article.html?dataId="+article+"&toUser="+artoUser+"&toName="+toName; // }(), // /**新的健康详情**/ 50:function(){ // var artoUser = localStorage.getItem("toUser"); // var article = localStorage.getItem("article"); // return "../../jkjy/html/article2.html?dataId="+article+"&toUser="+artoUser+"&toName="+toName; // }(), // 28:"../../jkda/html/jiuzhenjilu.html", // 29:"../../jkda/html/jianchajianyan.html", // 30:"../../survey/html/survey_info.html?openid="+0+"&toUser="+toUsers+"&toName="+toName+"&survey_id="+localStorage.getItem("survey_id"), ///**签约管理首页2**/ 31:"../../qygl/html/signing_management.html",//签约管理首页 ///*社区体检*/ 32: "../../jkda/html/jiankangtijian.html", ///*续签页面*/ 33: "../../xuqian/html/information.html", ///**意见反馈**/ 34:"../../yjfk/html/feedback.html", ///**公共咨询**/ 36:"../../jbsq/html/public-consult-detail.html", ///*处方记录 */ 38: "../../prescription/html/prescription_records.html", ///*续方订单跟踪页*/ 41: '../../prescription/html/order_tracking.html?openid='+0+'&toUser='+toUsers+'&toName='+toName+'&code='+window.localStorage.getItem("prescriptionCode"), /////*续方记录页*/ 42: '../../prescription/html/re-prescription_info.html?openid='+0+'&toUser='+toUsers+'&toName='+toName+'&code='+window.localStorage.getItem("prescriptionCode"), // /*孕检计划*/ 45: "../../fybj/html/yunjianjihua.html", // /*免疫计划*/ 46: "../../fybj/html/mianyijihua.html", // /*慢病管理修改*/ 47: "../../jbsq/html/slow-disease-manage.html", // /**免疫预约首页**/ 48:"../../wdyy/html/immune-appointment.html", // /**免疫预约详情页**/ 49:"../../wdyy/html/detail-immune-appointment.html" } Date.prototype.Format = function(formatStr) { var str = formatStr; var Week = ['日','一','二','三','四','五','六']; str=str.replace(/yyyy|YYYY/,this.getFullYear()); str=str.replace(/yy|YY/,(this.getYear() % 100)>9?(this.getYear() % 100).toString():'0' + (this.getYear() % 100)); str=str.replace(/MM/,this.getMonth()>8?(this.getMonth()+1).toString():'0' + (this.getMonth()+1)); str=str.replace(/M/g,this.getMonth()+1); str=str.replace(/w|W/g,Week[this.getDay()]); str=str.replace(/dd|DD/,this.getDate()>9?this.getDate().toString():'0' + this.getDate()); str=str.replace(/d|D/g,this.getDate()); str=str.replace(/hh|HH/,this.getHours()>9?this.getHours().toString():'0' + this.getHours()); str=str.replace(/h|H/g,this.getHours()); str=str.replace(/mm/,this.getMinutes()>9?this.getMinutes().toString():'0' + this.getMinutes()); str=str.replace(/m/g,this.getMinutes()); str=str.replace(/ss|SS/,this.getSeconds()>9?this.getSeconds().toString():'0' + this.getSeconds()); str=str.replace(/s|S/g,this.getSeconds()); return str; } var cnzz_protocol = (("https:" == document.location.protocol) ? " https://" : " http://"); //document.write(unescape("%3Cspan style='display:none' id='cnzz_stat_icon_1265315380'%3E%3C/span%3E%3Cscript src='" + cnzz_protocol + "s22.cnzz.com/z_stat.php%3Fid%3D1265315380' type='text/javascript'%3E%3C/script%3E"));