weixin_common.js 21 KB

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