waitingDoctorList.js 2.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596
  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:1,
  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.queryList.healthNo=vm.data.cardNo
  48. // vm.getList()
  49. }else{
  50. vm.gotoCards()
  51. }
  52. }else{
  53. loading.close();
  54. dialog({contentType:'tipsbox',bottom:true, skin:'bk-popup' , content:'数据获取失败'}).show();
  55. }
  56. })
  57. },
  58. //获取列表数据
  59. getList:function(){
  60. var vm=this
  61. sendPost("third/hy/pay/gerPayOrderList", vm.queryList, "json", "get",function(){
  62. loading.close();
  63. dialog({contentType:'tipsbox',bottom:true, skin:'bk-popup' , content:'请求失败'}).show();
  64. }, function(res){
  65. loading.close();
  66. if(res.status == 200){
  67. vm.dataList=JSON.parse(res.data)
  68. vm.length=vm.dataList.length
  69. }else{
  70. dialog({contentType:'tipsbox',bottom:true, skin:'bk-popup' , content:'数据获取失败'}).show();
  71. }
  72. })
  73. },
  74. //跳转切换就诊卡
  75. changeCards:function(){
  76. window.location.href='../../payment/html/changeCards.html?pre=waitingDoctorList';
  77. },
  78. //判断是否验证登录通过
  79. checkType:function(){
  80. var vm=this
  81. var timer = setInterval(function(){
  82. if(checktype){
  83. clearInterval(timer);
  84. vm.getData()
  85. }
  86. },10);
  87. },
  88. },
  89. })
  90. })()
  91. function queryInit(){
  92. checktype=true
  93. }