changeCards.js 3.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110
  1. var Request = GetRequest();
  2. var checktype=false;
  3. (function() {
  4. myvue=new Vue({
  5. el: "#app",
  6. data: {
  7. dataList:[],
  8. code:"",
  9. divClass:"jiuzhen",
  10. divName:"就诊"
  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. sendPost("patient/card/getCardList", {patient:vm.code}, "json", "get",function(){
  27. loading.close();
  28. dialog({contentType:'tipsbox',bottom:true, skin:'bk-popup' , content:'请求失败'}).show();
  29. }, function(res){
  30. loading.close();
  31. if(res.status == 200){
  32. vm.dataList=res.data
  33. if(Request.paytype==2){
  34. vm.dataList=res.data.filter(function(item){
  35. item.cardNo=item.inpCardNo
  36. item.divClass="zhuyuan"
  37. item.divName="住院"
  38. if(item.type=="2"){
  39. item.cardNo=item.inpCardNo.substr(0,1)+"*************"+item.inpCardNo.substr(item.inpCardNo.length-4,4)
  40. }
  41. var isInpStatus=item.inpStatus==0||item.inpStatus==1 //
  42. return item.inpCardNo && isInpStatus
  43. })
  44. _.each(vm.dataList,function(item){
  45. item.divClass="zhuyuan"
  46. item.divName="住院"
  47. })
  48. $(document).attr('title','选择住院号');
  49. }else{
  50. vm.dataList=res.data.map(function(item){
  51. if(item.type=="1"){
  52. item.divClass="jiuzhen"
  53. item.divName="门诊"
  54. }else{
  55. item.cardNo=item.cardNo.substr(0,1)+"*************"+item.cardNo.substr(item.cardNo.length-4,4)
  56. item.divClass="electronic"
  57. item.divName="健康卡"
  58. }
  59. return item
  60. })
  61. }
  62. }else{
  63. dialog({contentType:'tipsbox',bottom:true, skin:'bk-popup' , content:'数据获取失败'}).show();
  64. }
  65. })
  66. },
  67. //设置默认就诊卡
  68. setDefault:function(id,isDefault){
  69. var vm=this
  70. sendPost("/patient/card/defaultOpe", {id:id,isDefault:isDefault}, "json", "post",function(){
  71. }, function(res){
  72. if(res.status == 200){
  73. dialog({contentType:'tipsbox',bottom:true, skin:'bk-popup' , content:res.msg}).show();
  74. vm.getData()
  75. }else{
  76. dialog({contentType:'tipsbox',bottom:true, skin:'bk-popup' , content:'数据获取失败'}).show();
  77. }
  78. })
  79. },
  80. gotoPage:function(id){
  81. if(Request.pre=="paymentList"){ //跳到充值查询页面
  82. window.location.href='../../payment/html/paymentList.html?id='+id;
  83. }else if(Request.pre=="waitingDoctorList"){ //跳到候诊查询页面
  84. window.location.href='../../informationSearch/html/waitingDoctorList.html?id='+id;
  85. }else if(Request.pre=="payment"){ //跳到支付页面
  86. window.location.href='../../payment/html/payment.html?id='+id+"&paytype="+Request.paytype;
  87. }else if(Request.pre=="repayment"){ //跳到缴费结算页面
  88. window.location.href='../../payment/html/repayment.html?id='+id;
  89. }else{ //默认跳转充值查询页面
  90. window.location.href='../../payment/html/paymentList.html?id='+id;
  91. }
  92. },
  93. //判断是否验证登录通过
  94. checkType:function(){
  95. var vm=this
  96. var timer = setInterval(function(){
  97. if(checktype){
  98. clearInterval(timer);
  99. vm.getData()
  100. }
  101. },10);
  102. },
  103. },
  104. })
  105. })()
  106. function queryInit(){
  107. checktype=true
  108. }