changeCards.js 3.6 KB

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