weixin_common.js 21 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503
  1. //切换发布版本 true:正式版,连接生产环境;false:测试版,连接测试环境。
  2. var publish_version = false;
  3. //var publish_version = false;
  4. if(publish_version){
  5. //正式环境(厦门i健康)
  6. var server = "http://srijk.yihu.com/wlyy/";
  7. var appId = "wx49aa3a51b0aca27d";
  8. var urlName = "wlyy";
  9. var weixinUrl = "srijk.yihu.com";
  10. var agentName = "wlyyAgent";
  11. var agentName1 = "wlyyAgent1";
  12. var OpenidAgent = "OpenidAgent";
  13. var judgeAgent = "judgeAgent";
  14. var pageName = "pageurl";
  15. var wxurl = "http%3a%2f%2fwww.srijk.com%2fwlyy%2fwx%2fhtml";
  16. var imurl="http://58.22.123.195:3000";
  17. var imgUrlDomain = 'http://srijk.yihu.com/';
  18. }else{
  19. //测试环境
  20. var server = "http://172.19.103.72:9096/wlyy/";
  21. // var server = "http://172.19.103.72:9096/wlyy/";
  22. // var server = "http://192.168.131.24:8082/";//仕杰
  23. // var server = "http://192.168.131.102:8081/";//伟达
  24. // var server = "http://192.168.131.127:8070/";//逸祥
  25. // var server = "http://192.168.131.133:8080/";//文杰
  26. // var server = "http://192.168.131.250:8081/";
  27. // var server = "http://192.168.131.131:8080/"; //文斌
  28. var appId = "wx0a06b75a40b28f2a";
  29. var urlName = "wlyy";
  30. var weixinUrl = "srijk.yihu.com";
  31. var agentName = "wlyyAgent";
  32. var agentName1 = "wlyyAgent1";
  33. var OpenidAgent = "OpenidAgent";
  34. var judgeAgent = "judgeAgent";
  35. var pageName = "pageurl";
  36. var wxurl = "http%3a%2f%2fwww.srijk.com%2fwlyy%2fwx%2fhtml";
  37. var imurl="http://172.19.103.72:3000";
  38. // var imurl="http://192.168.131.24:3000";//仕杰
  39. var imgUrlDomain = 'http://172.19.103.54/';
  40. }
  41. //添加openid白名单,只有这个名单内的openid才可以在线支付
  42. var openidList = [];
  43. //设置变量,控制是否可以在线支付
  44. var canPayOnline = true;
  45. if(GetRequest().openid){
  46. checkCanPayOnline(GetRequest().openid);
  47. }
  48. //添加处方功能的openid白名单
  49. var prescriptionOpenidList = ['123456'];
  50. var canPrescription = true;
  51. if(GetRequest().openid){
  52. checkCanPrescription(GetRequest().openid);
  53. }
  54. //保存userAgent
  55. function wxSaveUserAgent(id, uid, openid, token,lastUid) {
  56. if(window.localStorage.getItem(agentName)){
  57. window.localStorage.removeItem(agentName);
  58. }
  59. var userAgent = {
  60. id: id,
  61. uid: uid,
  62. openid: openid,
  63. token: token,
  64. lastUid: (lastUid ? lastUid:""),
  65. platform: 3
  66. }
  67. userAgent = JSON.stringify(userAgent);
  68. // var userAgent = "{\"id\":" + id + ",\"uid\":\"" + uid + "\",\"openid\":\"" + openid + "\",\"token\":\"" + token + "\",\"lastUid\":\"" + (lastUid ? lastUid:"") + "\",\"platform\":3}";
  69. window.localStorage.setItem(agentName, userAgent);
  70. return userAgent;
  71. }
  72. //保存userAgent1
  73. function wxSaveUserAgent1(uid, name, photo) {
  74. if(window.localStorage.getItem(agentName1)){
  75. window.localStorage.removeItem(agentName1);
  76. }
  77. var userAgent = {
  78. uid: uid,
  79. name: name,
  80. photo: photo
  81. }
  82. userAgent = JSON.stringify(userAgent);
  83. // var userAgent = "{\"uid\":" + uid + ",\"name\":\"" + name + "\",\"photo\":\"" + photo + "\"}";
  84. window.localStorage.setItem(agentName1, userAgent);
  85. return userAgent;
  86. }
  87. //保存openid
  88. function saveAgentOpenid(openid){
  89. if(window.localStorage.getItem(OpenidAgent)){
  90. window.localStorage.removeItem(OpenidAgent);
  91. }
  92. var agentOpenid = "{\"openid\":\"" + openid + "\"}";
  93. window.localStorage.setItem(OpenidAgent, agentOpenid);
  94. }
  95. //保存页面跳转值
  96. function saveAgentJudge(judge){
  97. if(window.localStorage.getItem(judgeAgent)){
  98. window.localStorage.removeItem(judgeAgent);
  99. }
  100. var agentJudge = "{\"judge\":" + judge + "}";
  101. window.localStorage.setItem(judgeAgent, agentJudge);
  102. }
  103. //保存跳转页面到agent
  104. function saveAgentPage(pageurl){
  105. if(window.localStorage.getItem(pageName)){
  106. window.localStorage.removeItem(pageName);
  107. }
  108. var agentPage = "{\"pageurl\":\"" + pageurl + "\"}";
  109. window.localStorage.setItem(pageName, agentPage);
  110. //如果页面中有code这个参数,及微信授权返回的code,将这个code保存在storage中
  111. if(pageurl.indexOf("code=") > -1){
  112. var arr = pageurl.split("code=");
  113. var code = arr[1].split("&")[0];
  114. window.localStorage.setItem("weixinCode", code);
  115. }
  116. }
  117. //清空所有的agent
  118. function clearAgent(){
  119. if(window.localStorage.getItem(agentName)){
  120. window.localStorage.removeItem(agentName);
  121. }
  122. if(window.localStorage.getItem(agentName1)){
  123. window.localStorage.removeItem(agentName1);
  124. }
  125. window.localStorage.removeItem("weixinCode"); //清楚缓存的code
  126. // if(window.localStorage.getItem(OpenidAgent)){
  127. // window.localStorage.removeItem(OpenidAgent);
  128. // }
  129. }
  130. //获取链接上的参数
  131. function GetRequest() {
  132. var url = location.search; //获取url中"?"符后的字串
  133. var theRequest = new Object();
  134. if (url.indexOf("?") != -1) {
  135. var str = url.substr(1);
  136. strs = str.split("&");
  137. for(var i = 0; i < strs.length; i ++) {
  138. theRequest[strs[i].split("=")[0]]=(strs[i].split("=")[1]);
  139. }
  140. }
  141. //添加toName的信息
  142. if(theRequest.toName){
  143. localStorage.setItem("toName", theRequest.toName);
  144. }
  145. return theRequest;
  146. }
  147. //新的判断用户是否登录的方法,先校验openid是否一致
  148. function checkUserAgent(){
  149. var Request = new Object();
  150. Request = GetRequest();
  151. var code = Request["code"];
  152. var userAgent = window.localStorage.getItem(agentName);
  153. var agentCode = localStorage.getItem("weixinCode");
  154. if(code == "" || code == null || code == undefined){
  155. if(agentCode){
  156. //存在agentCode,说明一定获取openid成功过。
  157. if(!userAgent){
  158. var agentOpenids = window.localStorage.getItem(OpenidAgent);
  159. agentOpenids = JSON.parse(agentOpenids);
  160. var url = window.parent.location.href;
  161. saveAgentPage(url);
  162. window.location.href = "../../home/html/login.html?type=0&openid=" + agentOpenids.openid;
  163. }else{
  164. try{
  165. var agentOpenids = window.localStorage.getItem(OpenidAgent);
  166. if(agentOpenids){
  167. agentOpenids = JSON.parse(agentOpenids);
  168. checkCanPayOnline(agentOpenids.openid);
  169. checkCanPrescription(agentOpenids.openid);
  170. }
  171. queryInit();
  172. }catch(e){
  173. }
  174. }
  175. }else{
  176. if(!userAgent){
  177. d.close();
  178. // dialog({contentType:'tipsbox', skin:'bk-popup' , content:'授权失败',bottom:true}).show();
  179. //模板消息的情况,模板消息带上openid的值给页面
  180. var openid = Request['openid'];
  181. saveAgentOpenid(openid);
  182. var url = window.parent.location.href;
  183. saveAgentPage(url);
  184. window.location.href = "../../home/html/login.html?type=0&openid=" + openid;
  185. }else{
  186. try{
  187. checkCanPayOnline(Request['openid']);
  188. checkCanPrescription(Request['openid']);
  189. queryInit();
  190. }catch(e){
  191. }
  192. }
  193. }
  194. }
  195. else{
  196. //校验code与缓存中的code是否一致,一致的话则不再向后端获取openid,因为code只能使用一次
  197. if(agentCode && (code == agentCode)){
  198. try{
  199. var agentOpenids = window.localStorage.getItem(OpenidAgent);
  200. if(agentOpenids){
  201. agentOpenids = JSON.parse(agentOpenids);
  202. checkCanPayOnline(agentOpenids.openid);
  203. checkCanPrescription(agentOpenids.openid)
  204. }
  205. queryInit();
  206. }catch(e){
  207. }
  208. }else{
  209. //校验登录的openid是否与缓存中存在的一致
  210. d.show();
  211. sendPost('weixin/getOpenidByCode', {code: code}, 'json', 'post', openidFailed, function(res){
  212. if (res.status == 200) {
  213. d.close();
  214. localStorage.setItem("weixinCode", code);
  215. var openid = res.openid,
  216. agentOpenids = window.localStorage.getItem(OpenidAgent),
  217. agentOpenid = agentOpenids && JSON.parse(agentOpenids).openid;
  218. saveAgentOpenid(openid);
  219. if( agentOpenid == openid){
  220. if(!userAgent){
  221. var url = window.parent.location.href;
  222. saveAgentPage(url);
  223. window.location.href = "../../home/html/login.html?type=0&openid=" + openid;
  224. }else{
  225. try{
  226. checkCanPayOnline(openid);
  227. checkCanPrescription(openid);
  228. queryInit();
  229. }catch(e){
  230. }
  231. }
  232. }else{
  233. var url = window.parent.location.href;
  234. saveAgentPage(url);
  235. window.location.href = server + "wx/html/home/html/login.html?type=0&openid=" + openid;
  236. }
  237. } else {
  238. openidFailed(res);
  239. }
  240. });
  241. }
  242. }
  243. }
  244. //判断用户是否登录
  245. function checkUserAgent1(){
  246. var userAgent = window.localStorage.getItem(agentName);
  247. if(!userAgent){
  248. var agentOpenid = window.localStorage.getItem(OpenidAgent);
  249. if(!agentOpenid||agentOpenid=="undefined"){
  250. var Request = new Object();
  251. Request = GetRequest();
  252. var code = Request["code"];
  253. if(code == "" || code == null || code == undefined){
  254. d.close();
  255. dialog({contentType:'tipsbox', skin:'bk-popup' , content:'授权失败',bottom:true}).show();
  256. }
  257. else{
  258. d.show();
  259. var data = {};
  260. data.code = code;
  261. sendPost('weixin/getOpenidByCode', data, 'json', 'post', openidFailed, openidSuccess);
  262. }
  263. }
  264. else{
  265. var jsonstr = $.parseJSON(agentOpenid);
  266. var openid = jsonstr.openid;
  267. if((pagetype>=20&&pagetype<=27) || pagetype=='-1' || pagetype==3 || !pagetype){
  268. pagetype = 0;
  269. window.localStorage.setItem(pageName, JSON.stringify({pageurl: location.href}))
  270. }
  271. // window.location.href = server + "wx/html/home/html/zhmm-login.html?type=" + pagetype + "&openid=" + openid;
  272. window.location.href = "../../home/html/login.html?type=" + pagetype //+ "&openid=" + openid;
  273. }
  274. }
  275. else{
  276. try{
  277. queryInit();
  278. }catch(e){
  279. }
  280. }
  281. }
  282. //判断openid是否在可以在线支付的白名单里面
  283. function checkCanPayOnline(id){
  284. if(id && openidList.indexOf(id)>-1){
  285. canPayOnline = true;
  286. }
  287. }
  288. //判断openid是否在可以开启处方功能的白名单中
  289. function checkCanPrescription(id){
  290. if(id && prescriptionOpenidList.indexOf(id)>-1){
  291. canPrescription = true;
  292. }
  293. }
  294. //成功
  295. function openidSuccess(res) {
  296. if (res.status == 200) {
  297. var openid = res.openid;
  298. saveAgentOpenid(openid);
  299. window.location.href = server + "wx/html/home/html/zhmm-login.html?type=" + pagetype + "&openid=" + openid;
  300. } else {
  301. openidFailed(res);
  302. }
  303. }
  304. //失败
  305. function openidFailed(res) {
  306. d.close();
  307. // if(window.localStorage.getItem(OpenidAgent)){
  308. // window.localStorage.removeItem(OpenidAgent);
  309. // }
  310. if (res && res.msg) {
  311. dialog({contentType:'tipsbox', skin:'bk-popup' , content:res.msg,bottom:true}).show();
  312. } else {
  313. dialog({contentType:'tipsbox', skin:'bk-popup' , content:'获取认证信息失败',bottom:true}).show();
  314. }
  315. }
  316. //判断用户是否有签约
  317. function checkSign(type){
  318. d.show();
  319. var userAgent = window.localStorage.getItem(agentName);
  320. if(userAgent){
  321. var data = {};
  322. $.ajax(server + "patient/is_sign", {
  323. data: data,
  324. type: 'POST',
  325. dataType: 'json',
  326. beforeSend: function(request) {
  327. request.setRequestHeader("userAgent", userAgent);
  328. },
  329. error: function(res) {
  330. d.close();
  331. if(res.status == 999 || res.status == 998 || res.status == 997){
  332. loginUrl(res.status);
  333. return;
  334. }
  335. dialog({contentType:'tipsbox', skin:'bk-popup' , content:'校验失败',bottom:true}).show();
  336. },
  337. success: function(res) {
  338. d.close();
  339. if(res.status == 999 || res.status == 998 || res.status == 997){
  340. loginUrl(res.status);
  341. }
  342. else if (res.status == 200) {
  343. var is_sign = res.data;//0未签约,1已签约
  344. if(is_sign == 0){
  345. dialog({
  346. title: '提示',
  347. content: '您还未签约,请先签约,谢谢!',
  348. okValue:'签约',
  349. ok: function (){
  350. window.location.href = server + "wx/html/ssgg/html/choose-region.html";
  351. },
  352. cancelValue: '不了',
  353. cancel: function () {
  354. return;
  355. }
  356. }).showModal();
  357. }else{
  358. if(type == 1){
  359. window.location.href = server + "wx/html/zxwz/html/teachers-consult-commit.html";
  360. }
  361. }
  362. } else {
  363. dialog({contentType:'tipsbox', skin:'bk-popup' , content:res.msg,bottom:true}).show();
  364. }
  365. }
  366. });
  367. }
  368. else{
  369. dialog({contentType:'tipsbox', skin:'bk-popup' , content:'用户信息错误',bottom:true}).show();
  370. }
  371. }
  372. var toUsers = localStorage.getItem("toUser");
  373. var curId = localStorage.getItem("id");
  374. var toName = localStorage.getItem("toName");
  375. var consultCode = localStorage.getItem("consultCode");
  376. var pageUrl = {
  377. /**通用跳转**/
  378. 0:function(){
  379. var pageurl = "";
  380. var agentPage = window.localStorage.getItem(pageName);
  381. if(agentPage){
  382. var jsonstr = $.parseJSON(agentPage);
  383. pageurl = jsonstr.pageurl;
  384. }
  385. if(pageurl){
  386. return pageurl;
  387. }else{
  388. return "../../grzx/html/my-detail.html";
  389. }
  390. }(),
  391. //关注咨询列表
  392. "1": "../../yszx/html/doctor-consultation.html",
  393. //我的关注医生列表
  394. "2": "../../yszx/html/focused-doctor.html",
  395. //查找医生
  396. "3": "../../yszx/html/select-consult-doctor.html",
  397. //个人中心
  398. "4": "../../grzx/html/my-detail.html",
  399. ///**签约管理首页**/ "-1":"../../qygl/html/signing-doctors.html",//签约管理首页
  400. ///**医生咨询首页**/ 1:"../../yszx/html/doctor-consultation.html",
  401. ///**医生指导首页**/ 3:"../../yszd/html/doctor-guidance.html",//医生指导首页
  402. ///**疾病社区首页**/ 4:"../../jbsq/html/disease-community.html",//疾病社区首页
  403. ///**健康记录首页**/ 5:"../../jkjl/html/health-record.html",//健康记录
  404. ///**我的设备首页**/ 6:"../../wdsb/html/my-equipments.html",//我的设备
  405. ///**我的资料首页**/ 11:"../../grzx/html/my-detail.html",
  406. ///**我的设备首页**/ 15:"../../wdsb/html/my-equipments.html",
  407. ///**签约选择医生**/ 16:"../../qygl/html/select-doctor.html",
  408. ///**签约搜索医生**/ 17:"../../qygl/html/search-doctor.html",
  409. ///**签约医生主页**/ 18:function(){
  410. // var doctor = localStorage.getItem("doccode");
  411. // return "../../ssgg/html/doctor-homepage-new.html?openid="+0+"&state="+doctor;
  412. // }(),
  413. ///**我的预约首页**/ 20:"../../wdyy/html/my-appointment.html",
  414. ///**预约挂号提交**/ 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",
  415. // 22:"../../jtgx/html/family.html",
  416. ///**预约详情首页**/ 23:"../../wdyy/html/detail-appointment.html?openid="+0+"&toUser="+toUsers+"&id="+curId+"&toName="+toName,
  417. ///**医生咨询详情**/ 24:"../../yszx/html/consulting-doctor.html?openid="+0+"&toUser="+toUsers+"&consult="+consultCode+"&toName="+toName,
  418. ///**医生指导详情**/ 25:"../../yszd/html/guidance-detail.html?openid="+0+"&toUser="+toUsers+"&id="+curId+"&toName="+toName,
  419. ///**健康教育**/ 26:"../../jkjy/html/article_list.html",
  420. ///**健康详情**/ 27:function(){
  421. // var artoUser = localStorage.getItem("toUser");
  422. // var article = localStorage.getItem("article");
  423. // return "../../jkjy/html/article.html?dataId="+article+"&toUser="+artoUser+"&toName="+toName;
  424. // }(),
  425. // /**新的健康详情**/ 50:function(){
  426. // var artoUser = localStorage.getItem("toUser");
  427. // var article = localStorage.getItem("article");
  428. // return "../../jkjy/html/article2.html?dataId="+article+"&toUser="+artoUser+"&toName="+toName;
  429. // }(),
  430. // 28:"../../jkda/html/jiuzhenjilu.html",
  431. // 29:"../../jkda/html/jianchajianyan.html",
  432. // 30:"../../survey/html/survey_info.html?openid="+0+"&toUser="+toUsers+"&toName="+toName+"&survey_id="+localStorage.getItem("survey_id"),
  433. ///**签约管理首页2**/ 31:"../../qygl/html/signing_management.html",//签约管理首页
  434. ///*社区体检*/ 32: "../../jkda/html/jiankangtijian.html",
  435. ///*续签页面*/ 33: "../../xuqian/html/information.html",
  436. ///**意见反馈**/ 34:"../../yjfk/html/feedback.html",
  437. ///**公共咨询**/ 36:"../../jbsq/html/public-consult-detail.html",
  438. ///*处方记录 */ 38: "../../prescription/html/prescription_records.html",
  439. ///*续方订单跟踪页*/ 41: '../../prescription/html/order_tracking.html?openid='+0+'&toUser='+toUsers+'&toName='+toName+'&code='+window.localStorage.getItem("prescriptionCode"),
  440. /////*续方记录页*/ 42: '../../prescription/html/re-prescription_info.html?openid='+0+'&toUser='+toUsers+'&toName='+toName+'&code='+window.localStorage.getItem("prescriptionCode"),
  441. // /*孕检计划*/ 45: "../../fybj/html/yunjianjihua.html",
  442. // /*免疫计划*/ 46: "../../fybj/html/mianyijihua.html",
  443. // /*慢病管理修改*/ 47: "../../jbsq/html/slow-disease-manage.html",
  444. // /**免疫预约首页**/ 48:"../../wdyy/html/immune-appointment.html",
  445. // /**免疫预约详情页**/ 49:"../../wdyy/html/detail-immune-appointment.html"
  446. }
  447. Date.prototype.Format = function(formatStr)
  448. {
  449. var str = formatStr;
  450. var Week = ['日','一','二','三','四','五','六'];
  451. str=str.replace(/yyyy|YYYY/,this.getFullYear());
  452. str=str.replace(/yy|YY/,(this.getYear() % 100)>9?(this.getYear() % 100).toString():'0' + (this.getYear() % 100));
  453. str=str.replace(/MM/,this.getMonth()>8?(this.getMonth()+1).toString():'0' + (this.getMonth()+1));
  454. str=str.replace(/M/g,this.getMonth()+1);
  455. str=str.replace(/w|W/g,Week[this.getDay()]);
  456. str=str.replace(/dd|DD/,this.getDate()>9?this.getDate().toString():'0' + this.getDate());
  457. str=str.replace(/d|D/g,this.getDate());
  458. str=str.replace(/hh|HH/,this.getHours()>9?this.getHours().toString():'0' + this.getHours());
  459. str=str.replace(/h|H/g,this.getHours());
  460. str=str.replace(/mm/,this.getMinutes()>9?this.getMinutes().toString():'0' + this.getMinutes());
  461. str=str.replace(/m/g,this.getMinutes());
  462. str=str.replace(/ss|SS/,this.getSeconds()>9?this.getSeconds().toString():'0' + this.getSeconds());
  463. str=str.replace(/s|S/g,this.getSeconds());
  464. return str;
  465. }
  466. var cnzz_protocol = (("https:" == document.location.protocol) ? " https://" : " http://");
  467. //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"));