patientIDCards.js 3.3 KB

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