electronicHealthCard.js 6.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158
  1. var Request = GetRequest();
  2. var checktype=false;
  3. (function() {
  4. myvue=new Vue({
  5. el: "#app",
  6. data: {
  7. isloading:true,
  8. loaddingTxt:"受理中...",
  9. patient:"", //当前用户code
  10. data:{}, //电子健康卡数据
  11. cardNo:"", //加密后卡号
  12. isSuccess:true,
  13. },
  14. mounted:function(){
  15. var vm = this
  16. checkUserAgent();
  17. vm.patient=JSON.parse(localStorage.getItem("wlyyAgent")).uid
  18. vm.checkType()
  19. // vm.patient="31ced409777a4d89968ff7a9444d41ef"
  20. // vm.getData()
  21. },
  22. methods: {
  23. getData:function(){
  24. var vm=this
  25. if(Request.id){ //有id直接获取电子健康卡
  26. vm.getCardDataById()
  27. }else if(Request.Code){ //上饶页面返回后进入//0:授权失败 1:新用户注册成功 2:新用户注册失败 3:老用户升级成功 4:老用户升级失败
  28. if(Request.Code==1||Request.Code==3){
  29. vm.registerEleDecoder()
  30. }else{
  31. var msg=""
  32. if(Request.Code==2){
  33. msg="新用户注册失败"
  34. }else if(Request.Code==4){
  35. msg="老用户升级失败"
  36. }else{
  37. msg="授权失败"
  38. }
  39. dialog({contentType:'tipsbox',bottom:true, skin:'bk-popup' , content:msg}).show();
  40. vm.loaddingTxt=msg
  41. vm.isSuccess=false
  42. }
  43. }else { //判断本人是否有卡 有:获取,无:跳转上饶页面注册
  44. vm.validateEle()
  45. }
  46. },
  47. getCardDataById:function(){ //有id直接获取电子健康卡
  48. var vm=this
  49. vm.loaddingTxt="加载中..."
  50. sendPost("patient/card/getCardInfo", {id:Request.id}, "json", "get",function(){
  51. dialog({contentType:'tipsbox',bottom:true, skin:'bk-popup' , content:'请求失败'}).show();
  52. }, function(res){
  53. if(res.status == 200){
  54. if(res.data.patient==vm.patient){ //判断是否当前用户
  55. vm.data=res.data
  56. vm.setCardInfo()
  57. vm.isloading=false
  58. }else{
  59. vm.validateEle()
  60. }
  61. }else{
  62. dialog({contentType:'tipsbox',bottom:true, skin:'bk-popup' , content:'数据获取失败'}).show();
  63. }
  64. })
  65. },
  66. validateEle:function(){ //判断本人是否有卡 有:获取,无:跳转上饶页面注册
  67. var vm=this
  68. var backUrl=window.location.href
  69. if(backUrl.indexOf("?")>-1){backUrl=backUrl.split("?")[0]}
  70. sendPost("/third/hr/validateEle", {patient:vm.patient,backUrl:backUrl}, "json", "get",function(){
  71. dialog({contentType:'tipsbox',bottom:true, skin:'bk-popup' , content:'请求失败'}).show();
  72. }, function(res){
  73. if(res.status == 200){
  74. if(res.data.code == 200){
  75. vm.data=res.data.data
  76. vm.setCardInfo()
  77. vm.isloading=false
  78. }else{
  79. window.location.href=res.data.url
  80. }
  81. }else{
  82. dialog({contentType:'tipsbox',bottom:true, skin:'bk-popup' , content:res.msg}).show();
  83. }
  84. })
  85. },
  86. registerEleDecoder:function(){ //上饶页面返回后进入
  87. var vm=this
  88. sendPost("/third/hr/registerEle/callback/decoder", {patient:vm.patient,jsonStr:Request.Data}, "json", "post",function(){
  89. dialog({contentType:'tipsbox',bottom:true, skin:'bk-popup' , content:'请求失败'}).show();
  90. }, function(res){
  91. if(res.status == 200){
  92. dialog({contentType:'tipsbox',bottom:true, skin:'bk-popup' , content:res.msg}).show();
  93. vm.data=res.data
  94. vm.setCardInfo()
  95. vm.isloading=false
  96. vm.setMorenDialog(vm.data.id)
  97. }else{
  98. dialog({contentType:'tipsbox',bottom:true, skin:'bk-popup' , content:res.msg}).show();
  99. }
  100. })
  101. },
  102. //设置默认弹框
  103. setMorenDialog:function(id){
  104. var vm = this
  105. dialog({title:'绑定成功', content:'您已添加电子健康卡,是否设为默认充值查询用卡?',okValue: '是', ok: function (){vm.setMoren(id);}, cancelValue: '否',cancel: function () {} }).showModal();
  106. },
  107. //设置默认
  108. setMoren:function(id){
  109. sendPost("/patient/card/defaultOpe", {id:id,isDefault:1}, "json", "post",function(){
  110. }, function(res){
  111. if(res.status == 200){
  112. dialog({contentType:'tipsbox',bottom:true, skin:'bk-popup' , content:res.msg}).show();
  113. }else{
  114. dialog({contentType:'tipsbox',bottom:true, skin:'bk-popup' , content:'数据获取失败'}).show();
  115. }
  116. })
  117. },
  118. setCardInfo(){
  119. var vm = this
  120. var data=vm.data
  121. vm.cardNo=data.cardNo.substr(0,1)+"*************"+data.cardNo.substr(data.cardNo.length-5,4)
  122. if(data.idCard){
  123. var sexType=data.idCard.length==18?data.idCard.substr(data.idCard.length-2,1):data.idCard.substr(data.idCard.length-1,1)
  124. if(parseInt(sexType)%2==1){
  125. vm.data.sex="男"
  126. }else{
  127. vm.data.sex="女"
  128. }
  129. }
  130. },
  131. restart:function(){ //注册失败后重试
  132. var vm=this
  133. vm.validateEle()
  134. },
  135. gotoRepay:function(id){
  136. window.location.href='../../payment/html/repayment.html?id='+id;
  137. },
  138. gotoPay:function(id){
  139. window.location.href='../../payment/html/patientIDCards-pay.html?id='+id;
  140. },
  141. //判断是否验证登录通过
  142. checkType:function(){
  143. var vm=this
  144. var timer = setInterval(function(){
  145. if(checktype){
  146. clearInterval(timer);
  147. vm.getData()
  148. }
  149. },10);
  150. },
  151. },
  152. })
  153. })()
  154. function queryInit(){
  155. checktype=true
  156. }