patientIDCards.js 3.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119
  1. var checktype=false;
  2. (function() {
  3. myvue=new Vue({
  4. el: "#app",
  5. data: {
  6. dataList:[],
  7. BtnClass:"p-fix-bottom-0",
  8. length:0,
  9. code:"",
  10. surplus:5,
  11. hasEleCard:true,
  12. },
  13. mounted:function(){
  14. var vm = this
  15. checkUserAgent();
  16. vm.code=JSON.parse(localStorage.getItem("wlyyAgent")).uid
  17. vm.checkType()
  18. },
  19. methods: {
  20. //获取列表数据
  21. getData:function(){
  22. var vm=this
  23. var loading = dialog({
  24. contentType: 'load',
  25. skin: 'bk-popup'
  26. });
  27. loading.showModal();
  28. sendPost("patient/card/getCardList", {patient:vm.code}, "json", "get",function(){
  29. loading.close();
  30. dialog({contentType:'tipsbox',bottom:true, skin:'bk-popup' , content:'请求失败'}).show();
  31. }, function(res){
  32. loading.close();
  33. if(res.status == 200){
  34. vm.dataList=_.map(res.data,function(item,index){
  35. if(item.type=="2"){
  36. // vm.hasEleCard=true
  37. item.cardNo=item.cardNo.substr(0,1)+"*******"+item.cardNo.substr(item.cardNo.length-4,4)
  38. }
  39. return item
  40. })
  41. vm.length=vm.dataList.length
  42. // vm.surplus=5-vm.length
  43. if(vm.length>0){
  44. vm.$nextTick(function(){
  45. vm.setBtnClass()
  46. });
  47. }
  48. }else{
  49. dialog({contentType:'tipsbox',bottom:true, skin:'bk-popup' , content:'数据获取失败'}).show();
  50. }
  51. })
  52. },
  53. //设置默认就诊卡
  54. setDefault:function(id,isDefault){
  55. var vm=this
  56. var loading = dialog({
  57. contentType: 'load',
  58. skin: 'bk-popup',
  59. content:'设置中...'
  60. });
  61. loading.showModal()
  62. sendPost("/patient/card/defaultOpe", {id:id,isDefault:isDefault}, "json", "post",function(){
  63. }, function(res){
  64. loading.close()
  65. if(res.status == 200){
  66. dialog({contentType:'tipsbox',bottom:true, skin:'bk-popup' , content:res.msg}).show();
  67. vm.getData()
  68. }else{
  69. dialog({contentType:'tipsbox',bottom:true, skin:'bk-popup' , content:'数据获取失败'}).show();
  70. }
  71. })
  72. },
  73. //跳转绑定就诊卡
  74. gotoBindingCard:function(){
  75. var vm=this
  76. // if(vm.surplus>0){
  77. window.location.href='../../payment/html/bindingCard.html';
  78. // }else{
  79. // dialog({contentType:'tipsbox',bottom:true, skin:'bk-popup' , content:"最多只能绑定5张就诊卡"}).show();
  80. // }
  81. },
  82. //前往电子健康卡
  83. gotoEHCard:function(id){
  84. window.location.href='../../payment/html/electronicHealthCard.html?id='+id;
  85. },
  86. gotoPay:function(id,type){
  87. if(type=="1"){
  88. window.location.href='../../payment/html/patientIDCards-pay.html?id='+id;
  89. }else{
  90. this.gotoEHCard(id)
  91. }
  92. },
  93. //屏幕高度太矮,下方按钮随页面滚动,反之固定底部
  94. setBtnClass:function(){
  95. var vm = this
  96. var screemH=window.screen.availHeight;
  97. var bodyH=document.body.clientHeight;
  98. if(screemH-bodyH<130){
  99. vm.BtnClass="mt20"
  100. }
  101. },
  102. //判断是否验证登录通过
  103. checkType:function(){
  104. var vm=this
  105. var timer = setInterval(function(){
  106. if(checktype){
  107. clearInterval(timer);
  108. vm.getData()
  109. }
  110. },10);
  111. },
  112. },
  113. })
  114. })()
  115. function queryInit(){
  116. checktype=true
  117. }