waitingDoctorList.js 2.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899
  1. var Request = GetRequest();
  2. var checktype=false;
  3. var loading = dialog({
  4. contentType: 'load',
  5. skin: 'bk-popup',
  6. });
  7. (function() {
  8. new Vue({
  9. el: "#app",
  10. data: {
  11. data:{},
  12. dataList:[],
  13. length:0,
  14. code:"",
  15. TypeList:[{},{type:"jiuzhen",text:"门诊",pretext:"候诊"},{type:"jiancha",text:"检查检验",pretext:"候检"}],
  16. },
  17. mounted: function() {
  18. var vm = this
  19. checkUserAgent();
  20. vm.checkType()
  21. vm.code=JSON.parse(localStorage.getItem("wlyyAgent")).uid
  22. },
  23. methods: {
  24. //获取就诊卡
  25. getData:function(){
  26. var vm=this
  27. loading.showModal();
  28. sendPost("patient/card/getCardList", {patient:vm.code}, "json", "get",function(){
  29. loading.close();
  30. dialog({contentType:'tipsbox',bottom:true, skin:'bk-popup' , content:'请求失败'}).show();
  31. }, function(res){
  32. loading.close();
  33. if(res.status == 200){
  34. if(res.data.length>0){
  35. if(Request.id){
  36. vm.data=res.data.filter(function(item){
  37. return item.id==Request.id
  38. })[0]
  39. }else{
  40. vm.data=res.data.filter(function(item){
  41. return item.isDefault==1
  42. })[0]
  43. if(!vm.data){
  44. vm.data=res.data[0]
  45. }
  46. }
  47. vm.getList()
  48. }else{
  49. vm.gotoCards()
  50. }
  51. }else{
  52. loading.close();
  53. dialog({contentType:'tipsbox',bottom:true, skin:'bk-popup' , content:'数据获取失败'}).show();
  54. }
  55. })
  56. },
  57. //获取列表数据
  58. getList:function(){
  59. var vm=this
  60. sendPost("patient/diag/waitVisit", {cardNo:vm.data.cardNo}, "json", "get",function(){
  61. loading.close();
  62. dialog({contentType:'tipsbox',bottom:true, skin:'bk-popup' , content:'请求失败'}).show();
  63. }, function(res){
  64. loading.close();
  65. if(res.status == 200){
  66. if(res.data.code=="0"){
  67. vm.dataList=res.data
  68. vm.length=vm.dataList.length
  69. }else{
  70. dialog({contentType:'tipsbox',bottom:true, skin:'bk-popup' , content:res.data.message}).show();
  71. }
  72. }else{
  73. dialog({contentType:'tipsbox',bottom:true, skin:'bk-popup' , content:'数据获取失败'}).show();
  74. }
  75. })
  76. },
  77. //跳转切换就诊卡
  78. changeCards:function(){
  79. window.location.href='../../payment/html/changeCards.html?pre=waitingDoctorList';
  80. },
  81. //判断是否验证登录通过
  82. checkType:function(){
  83. var vm=this
  84. var timer = setInterval(function(){
  85. if(checktype){
  86. clearInterval(timer);
  87. vm.getData()
  88. }
  89. },10);
  90. },
  91. },
  92. })
  93. })()
  94. function queryInit(){
  95. checktype=true
  96. }