patientIDCards.js 4.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148
  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. vm.initBtnScroll()
  19. },
  20. methods: {
  21. //获取列表数据
  22. getData:function(){
  23. var vm=this
  24. var loading = dialog({
  25. contentType: 'load',
  26. skin: 'bk-popup'
  27. });
  28. loading.showModal();
  29. sendPost("patient/card/getCardList", {patient:vm.code}, "json", "get",function(){
  30. loading.close();
  31. dialog({contentType:'tipsbox',bottom:true, skin:'bk-popup' , content:'请求失败'}).show();
  32. }, function(res){
  33. loading.close();
  34. if(res.status == 200){
  35. vm.dataList=_.map(res.data,function(item,index){
  36. if(item.type=="2"){
  37. // vm.hasEleCard=true
  38. item.cardNo=item.cardNo.substr(0,1)+"*******"+item.cardNo.substr(item.cardNo.length-4,4)
  39. }
  40. return item
  41. })
  42. vm.length=vm.dataList.length
  43. // vm.surplus=5-vm.length
  44. if(vm.length>0){
  45. vm.$nextTick(function(){
  46. vm.setBtnClass()
  47. });
  48. }
  49. }else{
  50. dialog({contentType:'tipsbox',bottom:true, skin:'bk-popup' , content:'数据获取失败'}).show();
  51. }
  52. })
  53. },
  54. //设置默认就诊卡
  55. setDefault:function(id,isDefault){
  56. var vm=this
  57. var loading = dialog({
  58. contentType: 'load',
  59. skin: 'bk-popup',
  60. content:'设置中...'
  61. });
  62. loading.showModal()
  63. sendPost("/patient/card/defaultOpe", {id:id,isDefault:isDefault}, "json", "post",function(){
  64. }, function(res){
  65. loading.close()
  66. if(res.status == 200){
  67. dialog({contentType:'tipsbox',bottom:true, skin:'bk-popup' , content:res.msg}).show();
  68. vm.getData()
  69. }else{
  70. dialog({contentType:'tipsbox',bottom:true, skin:'bk-popup' , content:'数据获取失败'}).show();
  71. }
  72. })
  73. },
  74. initBtnScroll: function () {
  75. var vm=this
  76. var fileName = ['就诊卡','电子健康卡']
  77. var fileCode = ['1', '2']
  78. $('.scrollBtn').mobiscroll({
  79. theme: 'ios',
  80. lang: 'zh',
  81. customWheels: true,
  82. wheels: [
  83. [{
  84. keys: fileCode,
  85. values: fileName
  86. }]
  87. ],
  88. onSelect: function (valueText, inst) {
  89. var dd = eval("[" + valueText + "]");
  90. if (dd[0].keys == 1) {
  91. window.location.href='../../payment/html/bindingCard.html';
  92. } else {
  93. vm.gotoEHCard()
  94. }
  95. },
  96. });
  97. },
  98. //跳转绑定就诊卡
  99. gotoBindingCard:function(){
  100. var vm=this
  101. // if(vm.surplus>0){
  102. window.location.href='../../payment/html/bindingCard.html';
  103. // }else{
  104. // dialog({contentType:'tipsbox',bottom:true, skin:'bk-popup' , content:"最多只能绑定5张就诊卡"}).show();
  105. // }
  106. },
  107. //前往电子健康卡
  108. gotoEHCard:function(id){
  109. var href='../../payment/html/electronicHealthCard.html'
  110. if(id){
  111. href=href+'?id='+id
  112. }
  113. window.location.href=href
  114. },
  115. gotoPay:function(id,type){
  116. if(type=="1"){
  117. window.location.href='../../payment/html/patientIDCards-pay.html?id='+id;
  118. }else{
  119. this.gotoEHCard(id)
  120. }
  121. },
  122. //屏幕高度太矮,下方按钮随页面滚动,反之固定底部
  123. setBtnClass:function(){
  124. var vm = this
  125. var screemH=window.screen.availHeight;
  126. var bodyH=document.body.clientHeight;
  127. if(screemH-bodyH<130){
  128. vm.BtnClass="mt20"
  129. }
  130. },
  131. //判断是否验证登录通过
  132. checkType:function(){
  133. var vm=this
  134. var timer = setInterval(function(){
  135. if(checktype){
  136. clearInterval(timer);
  137. vm.getData()
  138. }
  139. },10);
  140. },
  141. },
  142. })
  143. })()
  144. function queryInit(){
  145. checktype=true
  146. }