patientIDCards.js 2.7 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798
  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=res.data
  34. vm.length=vm.dataList.length
  35. vm.surplus=5-vm.length
  36. if(vm.length>0){
  37. vm.$nextTick(function(){
  38. vm.setBtnClass()
  39. });
  40. }
  41. }else{
  42. dialog({contentType:'tipsbox',bottom:true, skin:'bk-popup' , content:'数据获取失败'}).show();
  43. }
  44. })
  45. },
  46. //设置默认就诊卡
  47. setDefault:function(id,isDefault){
  48. var vm=this
  49. sendPost("/patient/card/defaultOpe", {id:id,isDefault:isDefault}, "json", "post",function(){
  50. }, function(res){
  51. if(res.status == 200){
  52. dialog({contentType:'tipsbox',bottom:true, skin:'bk-popup' , content:res.msg}).show();
  53. vm.getData()
  54. }else{
  55. dialog({contentType:'tipsbox',bottom:true, skin:'bk-popup' , content:'数据获取失败'}).show();
  56. }
  57. })
  58. },
  59. //跳转绑定就诊卡
  60. gotoBindingCard:function(){
  61. var vm=this
  62. if(vm.surplus>0){
  63. window.location.href='../../payment/html/bindingCard.html';
  64. }else{
  65. dialog({contentType:'tipsbox',bottom:true, skin:'bk-popup' , content:"最多只能绑定5张就诊卡"}).show();
  66. }
  67. },
  68. gotoPay:function(id){
  69. window.location.href='../../payment/html/patientIDCards-pay.html?id='+id;
  70. },
  71. //屏幕高度太矮,下方按钮随页面滚动,反之固定底部
  72. setBtnClass:function(){
  73. var vm = this
  74. var screemH=window.screen.availHeight;
  75. var bodyH=document.body.clientHeight;
  76. if(screemH-bodyH<70){
  77. vm.BtnClass="mt20"
  78. }
  79. },
  80. //判断是否验证登录通过
  81. checkType:function(){
  82. var vm=this
  83. var timer = setInterval(function(){
  84. if(checktype){
  85. clearInterval(timer);
  86. vm.getData()
  87. }
  88. },10);
  89. },
  90. },
  91. })
  92. })()
  93. function queryInit(){
  94. checktype=true
  95. }