electronicHealthCard.js 2.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990
  1. var checktype=false;
  2. (function() {
  3. myvue=new Vue({
  4. el: "#app",
  5. data: {
  6. isloading:true,
  7. },
  8. mounted:function(){
  9. var vm = this
  10. checkUserAgent();
  11. vm.code=JSON.parse(localStorage.getItem("wlyyAgent")).uid
  12. vm.checkType()
  13. },
  14. methods: {
  15. //获取列表数据
  16. getData:function(){
  17. var vm=this
  18. var loading = dialog({
  19. contentType: 'load',
  20. skin: 'bk-popup'
  21. });
  22. loading.showModal();
  23. sendPost("patient/card/getCardList", {patient:vm.code}, "json", "get",function(){
  24. loading.close();
  25. dialog({contentType:'tipsbox',bottom:true, skin:'bk-popup' , content:'请求失败'}).show();
  26. }, function(res){
  27. loading.close();
  28. if(res.status == 200){
  29. vm.dataList=res.data
  30. vm.length=vm.dataList.length
  31. vm.surplus=5-vm.length
  32. }else{
  33. dialog({contentType:'tipsbox',bottom:true, skin:'bk-popup' , content:'数据获取失败'}).show();
  34. }
  35. })
  36. },
  37. //设置默认就诊卡
  38. setDefault:function(id,isDefault){
  39. var vm=this
  40. var loading = dialog({
  41. contentType: 'load',
  42. skin: 'bk-popup',
  43. content:'设置中...'
  44. });
  45. loading.showModal()
  46. sendPost("/patient/card/defaultOpe", {id:id,isDefault:isDefault}, "json", "post",function(){
  47. }, function(res){
  48. loading.close()
  49. if(res.status == 200){
  50. dialog({contentType:'tipsbox',bottom:true, skin:'bk-popup' , content:res.msg}).show();
  51. vm.getData()
  52. }else{
  53. dialog({contentType:'tipsbox',bottom:true, skin:'bk-popup' , content:'数据获取失败'}).show();
  54. }
  55. })
  56. },
  57. //跳转绑定就诊卡
  58. gotoBindingCard:function(){
  59. var vm=this
  60. if(vm.surplus>0){
  61. window.location.href='../../payment/html/bindingCard.html';
  62. }else{
  63. dialog({contentType:'tipsbox',bottom:true, skin:'bk-popup' , content:"最多只能绑定5张就诊卡"}).show();
  64. }
  65. },
  66. //前往电子健康卡
  67. gotoEHCard:function(){
  68. window.location.href='../../payment/html/electronicHealthCard.html';
  69. },
  70. gotoPay:function(id){
  71. window.location.href='../../payment/html/patientIDCards-pay.html?id='+id;
  72. },
  73. //判断是否验证登录通过
  74. checkType:function(){
  75. var vm=this
  76. var timer = setInterval(function(){
  77. if(checktype){
  78. clearInterval(timer);
  79. vm.getData()
  80. }
  81. },10);
  82. },
  83. },
  84. })
  85. })()
  86. function queryInit(){
  87. checktype=true
  88. }