my-detail.js 14 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454
  1. var d = dialog({contentType:'load', skin:'bk-popup'});
  2. var d1 = dialog({contentType:'load', skin:'bk-popup',content:'退出中..'});
  3. var pagetype = 4;
  4. var openid =null;
  5. var userAgent = window.localStorage.getItem(agentName);
  6. var firstUid = window.localStorage.getItem("firstUid");
  7. var bindCardUrl = "",
  8. bindCardStatus;
  9. $(function() {
  10. checkUserAgent();
  11. });
  12. //appendFamilyMember($('#memberContainer'),function(){
  13. // queryInit();
  14. // clearCommittee()
  15. // var jsonstr = $.parseJSON(window.localStorage.getItem(agentName));
  16. // if(jsonstr.uid == jsonstr.represented){
  17. // $('#divChangeLogin').show()
  18. // //判断是否可以在线支付
  19. // if(canPayOnline){
  20. // $("#elecard").show();
  21. // }else{
  22. // $("#elecard").hide();
  23. // }
  24. // }else{
  25. // $('#divChangeLogin').hide()
  26. // $("#elecard").hide();
  27. // }
  28. //},function(){
  29. // //判断有授权家人,修改样式
  30. // if($('#memberContainer').is(':hidden')){
  31. // $('#content').css('padding-top','0px');
  32. // }else{
  33. // $('#content').css('padding-top','90px');
  34. // }
  35. //});
  36. function queryInit(){
  37. d.show();
  38. var jsonstr = $.parseJSON(userAgent);
  39. openid = jsonstr.openid;
  40. if(firstUid == null || firstUid == undefined){
  41. document.getElementById("divChangeLogin").style.display='none';
  42. }
  43. // isRepresent(function() {
  44. //查询用户信息
  45. query();
  46. getWeixinSign();
  47. bindEvents();
  48. //选择居委会
  49. selectCommittee()
  50. // })
  51. }
  52. //获得微信sdk信息
  53. function getWeixinSign(){
  54. var params1 = {};
  55. params1.pageUrl = server + "wx/html/grzx/html/my-detail.html&state=STATE";
  56. $.ajax(server + "weixin/getSign", {
  57. data: params1,
  58. dataType: "json",
  59. type: "post",
  60. success: function(res){
  61. if (res.status == 200) {
  62. var t = res.data.timestamp;
  63. var noncestr = res.data.noncestr;
  64. var signature = res.data.signature;
  65. wx.config({
  66. //debug: true, // 开启调试模式,调用的所有api的返回值会在客户端alert出来,若要查看传入的参数,可以在pc端打开,参数信息会通过log打出,仅在pc端时才会打印。
  67. appId: appId, // 必填,公众号的唯一标识
  68. timestamp: t, // 必填,生成签名的时间戳
  69. nonceStr: noncestr, // 必填,生成签名的随机串
  70. signature: signature,// 必填,签名,见附录1
  71. jsApiList: [
  72. 'chooseImage',
  73. 'uploadImage'
  74. ] // 必填,需要使用的JS接口列表,所有JS接口列表见附录2
  75. });
  76. }
  77. }
  78. });
  79. }
  80. //跳转到三师信息
  81. function changeSanshi(){
  82. window.location.href = "../../qygl/html/signing-doctors.html";
  83. }
  84. //跳转到家庭签约信息
  85. function changeJtqy(signedStatus){
  86. if(signedStatus) {
  87. window.location.href = "../../ssgg/html/doctor-homepage-new.html"
  88. } else {
  89. window.location.href = "../../qygl/html/signing-doctors.html"
  90. }
  91. }
  92. //查询列表
  93. function query() {
  94. // var data={};
  95. // sendPost('patient/baseinfo', data, 'json', 'post', queryFailed, querySuccess);
  96. //初始查询患者基本信息,然后调用接口判断该患者是否已绑定电子社保卡
  97. var reqParams = [{
  98. url: "patient/baseinfo",
  99. data: {},
  100. reqType: 'post'
  101. }]
  102. getReqPromises(reqParams).then(function(ress){
  103. querySuccess(ress[0]);
  104. //处理绑卡
  105. // var res2 = ress[1];
  106. // if(res2.data.bindStatus == '030007'){
  107. // bindCardStatus = false;
  108. // bindCardUrl = res2.data.sicardUrl;
  109. // }else if(res2.data.bindStatus == '000000'){
  110. // bindCardStatus = true;
  111. // bindCardUrl = res2.data.sicardUrl;
  112. // }else{
  113. // dialog({contentType:'tipsbox', skin:'bk-popup' , content:res2.msg}).show();
  114. // }
  115. // //判断是否可以在线支付
  116. // if(canPayOnline){
  117. // $("#elecard").show();
  118. // $("#elecardStatus").text(bindCardStatus? "已绑定" : "未绑定");
  119. // }else{
  120. // $("#elecard").hide();
  121. // }
  122. });
  123. }
  124. function queryFailed(res) {
  125. d.close();
  126. if (res && res.msg) {
  127. dialog({contentType:'tipsbox',bottom:true, skin:'bk-popup' , content:res.msg}).show();
  128. } else {
  129. dialog({contentType:'tipsbox',bottom:true, skin:'bk-popup' , content:'初始化失败'}).show();
  130. }
  131. }
  132. function querySuccess(res) {
  133. d.close();
  134. if (res.status == 200) {
  135. setValue(res.data);
  136. // if($("#ssc").val() != ""){
  137. // $("#ssc").attr("readonly","readonly");
  138. // }
  139. //取药码
  140. if(res.data.prescription == 1){
  141. $('#myMedicine').show()
  142. }else{
  143. $('#myMedicine').hide()
  144. }
  145. }
  146. }
  147. function bindEvents(){
  148. $("#backLogin").click(function (){
  149. dialog({
  150. content:'您确定继续退出登录吗?',
  151. ok: function (){
  152. d1.show()
  153. sendPost("patient/wxloginout",{},"JSON","POST",function(res){
  154. d1.close()
  155. if (res && res.msg) {
  156. dialog({contentType:'tipsbox',bottom:true, skin:'bk-popup' , content:res.msg}).show();
  157. } else {
  158. dialog({contentType:'tipsbox',bottom:true, skin:'bk-popup' , content:'退出登录失败!'}).show();
  159. }
  160. },function(res){
  161. d1.close()
  162. if(res.status==200){
  163. clearAgent();
  164. window.localStorage.removeItem("isTiXingVideoFaSong");//清除咨询详情移动网络下,用户点击不再提醒后的处理,换账号登陆后,还可以重新提醒
  165. var url = window.location.href;
  166. saveAgentPage(url);
  167. location.replace("../../home/html/login.html?openid="+openid+"&loginType=password");
  168. }else{
  169. if (res && res.msg) {
  170. dialog({contentType:'tipsbox',bottom:true, skin:'bk-popup' , content:res.msg}).show();
  171. } else {
  172. dialog({contentType:'tipsbox',bottom:true, skin:'bk-popup' , content:'退出登录失败!'}).show();
  173. }
  174. }
  175. })
  176. },
  177. cancel: function () {
  178. return;
  179. }
  180. }).showModal();
  181. });
  182. //绑定电子社保卡
  183. $('#elecard').on('tap',function(){
  184. if(!bindCardStatus){
  185. dialog({
  186. content: '当前未绑定电子社保卡,无法进行线上缴费,是否立即绑定',
  187. cancelValue: '不了,谢谢',
  188. cancel: function () {},
  189. okValue:'是',
  190. ok: function (){
  191. window.location.href = bindCardUrl;
  192. }
  193. }).showModal();
  194. }else {
  195. window.location.href = bindCardUrl;
  196. }
  197. });
  198. //电子健康卡点击事件
  199. $("#healthcard").on('tap', function(){
  200. window.location.href = "my-health-card.html"
  201. // d.show();
  202. // var url = "/patient/ehc/redirecturl";
  203. // sendPost(url, {}, 'json', 'post', queryFailed, function(res){
  204. // if(res.status == 200){
  205. // d.close();
  206. // window.location.href = res.data;
  207. // }else{
  208. // queryFailed(res);
  209. // }
  210. // })
  211. })
  212. }
  213. //初始化页面数据
  214. function setValue(data){
  215. var photo = data.photo;
  216. var name = data.name;
  217. var sex = data.sex;
  218. var mobile = data.mobile;
  219. var idcard = data.idcard;
  220. var ssc = data.ssc;
  221. var address = data.address;
  222. var sign = Number(data.sign);
  223. var sexName = "女";
  224. if(sex == 1) {
  225. sexName = "男";
  226. }
  227. if(!photo){
  228. photo = "../../../images/p-default.png";
  229. }
  230. if(!name) name = "";
  231. if(!mobile) mobile = "";
  232. if(!idcard) idcard = "";
  233. if(!ssc) ssc = "";
  234. if(!address) address = "";
  235. document.getElementById("photo").src = getImgUrl(photo);
  236. document.getElementById("name").value = name;
  237. document.getElementById("sex").innerHTML = sexName;
  238. document.getElementById("mobile").innerHTML = mobile;
  239. document.getElementById("idcard").innerHTML = idcard;
  240. document.getElementById("ssc").innerHTML = ssc;
  241. document.getElementById("address").innerHTML = address;
  242. $('#committee').text(data.countryName);
  243. }
  244. // 添加文件
  245. function appendFile(p) {
  246. document.getElementById("photo").src = p;
  247. $("#photo").attr("data-src",p);
  248. }
  249. //获取需要上传的图片
  250. function getImages() {
  251. var images = [];
  252. var imgSrc = $("#photo").attr("data-src");
  253. images.push(imgSrc);
  254. return images;
  255. }
  256. //剪切图片
  257. function clip_photo(){
  258. $("#content").addClass("c-hide");
  259. $("#clipPanel").removeClass("c-hide");
  260. var photo = document.getElementById('file_head');
  261. lrz(photo.files[0]).then(function (rst) {
  262. var url = rst.base64;
  263. new AlloyCrop({
  264. image_src: url,
  265. width: document.documentElement.clientWidth,
  266. height: document.documentElement.clientWidth,
  267. ok_text: "保存",
  268. cancel_text: "取消",
  269. ok: function (base64, canvas) {
  270. $("#content").removeClass("c-hide");
  271. var data=base64.split(',')[1];
  272. data=window.atob(data);
  273. var ia = new Uint8Array(data.length);
  274. for (var i = 0; i < data.length; i++) {
  275. ia[i] = data.charCodeAt(i);
  276. }
  277. var blob=new Blob([ia],{type:"image/png",endings:'transparent'});
  278. var fd=new FormData();
  279. fd.append('file',blob,'image.png');
  280. var new_url = URL.createObjectURL(blob);
  281. appendFile(new_url);
  282. $.ajax(server + 'upload/image', {
  283. data: fd,
  284. dataType: 'json',
  285. contentType: false,
  286. cache: false,
  287. processData: false,
  288. beforeSend: function(request) {
  289. request.setRequestHeader("userAgent", userAgent);
  290. },
  291. type: 'post',
  292. error: function(res) {
  293. if(res.status == 999 || res.status == 998 || res.status == 997){
  294. loginUrl(res.status);
  295. return;
  296. }
  297. clickCount = 0;
  298. },
  299. success: function(res) {
  300. if(res.status == 999 || res.status == 998 || res.status == 997){
  301. loginUrl(res.status);
  302. return;
  303. }
  304. var params = {};
  305. params.photo = res.urls;
  306. var patientUrl = res.urls;
  307. sendPost('patient/save', params, 'json', 'post', submitFailed, submitSuccess);
  308. clickCount = 0;
  309. }
  310. });
  311. },
  312. cancel: function () {
  313. $("#content").removeClass("c-hide");
  314. window.location.reload();
  315. }
  316. });
  317. })
  318. .catch(function (err){
  319. // 处理失败会执行
  320. console.log(err);
  321. });
  322. }
  323. // 上传头像
  324. var serverId = "";
  325. function chooseImage(){
  326. wx.chooseImage({
  327. count: 1,
  328. success: function (res) {
  329. appendFile(res.localIds[0]);
  330. uploadImage();
  331. }
  332. });
  333. }
  334. //获取微信上传图片的媒体ID
  335. function uploadImage(){
  336. var images = getImages();
  337. if (images.length == 0) {
  338. return;
  339. }
  340. var i = 0, length = images.length;
  341. serverId = "";
  342. function upload() {
  343. wx.uploadImage({
  344. localId: images[i],
  345. success: function (res) {
  346. i++;
  347. if(serverId.length == 0){
  348. serverId = res.serverId;
  349. }
  350. else{
  351. serverId =serverId + "," + res.serverId;
  352. }
  353. if (i < length) {
  354. upload();
  355. }
  356. if(i == images.length){
  357. update_photo();
  358. }
  359. },
  360. fail: function (res) {
  361. alert(JSON.stringify(res));
  362. }
  363. });
  364. }
  365. upload();
  366. }
  367. //上传图片到服务器上
  368. function update_photo(){
  369. var params = {};
  370. params.mediaIds = serverId;
  371. sendPost('patient/save', params, 'json', 'post', submitFailed, submitSuccess);
  372. }
  373. //上传失败
  374. function submitFailed(res) {
  375. if (res && res.msg) {
  376. dialog({contentType:'tipsbox',bottom:true, skin:'bk-popup' , content:res.msg}).show();
  377. } else {
  378. dialog({contentType:'tipsbox',bottom:true, skin:'bk-popup' , content:'上传失败'}).show();
  379. }
  380. }
  381. //上传成功
  382. function submitSuccess(res) {
  383. if (res.status == 200) {
  384. $("#content").removeClass("c-hide");
  385. $("#clipPanel").addClass("c-hide");
  386. } else {
  387. submitFailed(res);
  388. }
  389. }
  390. //查看图片
  391. function viewImg(dom) {
  392. var $img = $(dom);
  393. var thissrc = $img.attr("data-src");
  394. var mWid = $(window).width();
  395. var mHei = $(window).height();
  396. var nHtml = '<div class="delimgpop"><div class="del-img-box"><div class="del-img-con"><img class="del-pop-img" src="' + thissrc + '" style="max-width:' + mWid + 'px; max-height:' + mHei + 'px;"></div></div></div>';
  397. $("body").append(nHtml);
  398. $(".delimgpop").click(function() {
  399. $(this).remove()
  400. });
  401. };
  402. function myMedicine(){
  403. window.location.href = "../../prescription/html/my-medicine-code.html";
  404. }
  405. function myFeedback(){
  406. window.location.href = "../../yjfk/html/feedback.html";
  407. }
  408. function updatePwd(){
  409. var mobile = $('#mobile').html();
  410. window.location.href = "shezhimima.html?type=" + pagetype + "&openid=" + openid + "&mobile="+ mobile + "&1=1";
  411. }
  412. function updateAddress(){
  413. var address = $('#address').html();
  414. var paramAgent = "{\"type\":" + pagetype + ",\"openid\":\"" + openid + "\",\"address\":\"" + encodeURI(address) + "\"}";
  415. window.localStorage.setItem("paramAgent", paramAgent);
  416. window.location.href = "xiugaidizhi.html?type=" + pagetype + "&openid=" + openid + "&mobile="+ mobile + "&1=1";
  417. }
  418. function updateMobile(){
  419. var mobile = $.trim($('#mobile').html());
  420. if(mobile.length==0)
  421. window.location.href = "bangdingsj.html?type=" + pagetype + "&openid=" + openid + "&1=1";
  422. else
  423. window.location.href = "shenfenyz.html?type=" + pagetype + "&openid=" + openid + "&mobile="+ mobile + "&1=1";
  424. }
  425. function updateSSC(){
  426. var ssc = $.trim($('#ssc').html());
  427. window.location.href = "update-ssc.html?type=" + pagetype + "&openid=" + openid + "&ssc="+ ssc + "&1=1";
  428. }