repaymentResult.js 5.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157
  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. cardId:"", //当前cardid
  12. isloading:true,
  13. countTime:6,
  14. result:{},
  15. successResult:{
  16. status:"success-pay",
  17. msg:"就诊账单已完成缴费,可在就诊卡-缴费-已缴费账单中查看。",
  18. Img:"../images/jiaofeichengong_icon.png",
  19. txt:"缴费成功",
  20. },
  21. synchronizationResult:{
  22. status:"synchronization-pay",
  23. msg:"很抱歉,结算系统繁忙,充值款仍在同步至就诊卡,无法自动完成结算。稍后您可以返回就诊卡查看到款进度,到款后再次发起结算缴费。",
  24. Img:"../images/jiaofeishibai_icon.png",
  25. txt:"缴费失败",
  26. },
  27. failureResult:{
  28. status:"failure-pay",
  29. msg:"系统繁忙,请重新充值缴费。",
  30. Img:"../images/jiaofeishibai_icon.png",
  31. txt:"缴费失败",
  32. },
  33. healthType:["","账单结算缴费","住院缴费充值"],
  34. initdata:{"patientName":"","healthNo":"","healthType":1,"payAmount":"","createDate":"",},
  35. carddata:{},
  36. },
  37. mounted: function() {
  38. var vm = this
  39. checkUserAgent();
  40. vm.checkType()
  41. vm.cardId=Request.cardId
  42. },
  43. methods: {
  44. getCardInfo:function(){
  45. var vm=this
  46. sendPost("patient/card/getCardInfo", {id:vm.cardId}, "json", "get",function(){
  47. loading.close();
  48. dialog({contentType:'tipsbox',bottom:true, skin:'bk-popup' , content:'请求失败'}).show();
  49. }, function(res){
  50. loading.close();
  51. if(res.status == 200){
  52. vm.carddata=res.data
  53. if(parseFloat(Request.payAmount)<=vm.carddata.cardMoney){
  54. // vm.countTime=0
  55. vm.isloading=false
  56. vm.data=vm.initdata
  57. vm.torePay()
  58. }else{
  59. // vm.showTime()
  60. //每秒执行一次,showTime()
  61. setTimeout(function(){
  62. vm.showTime()
  63. },1000);
  64. }
  65. }else{
  66. dialog({contentType:'tipsbox',bottom:true, skin:'bk-popup' , content:'数据获取失败'}).show();
  67. }
  68. })
  69. },
  70. showTime:function(){
  71. var vm=this
  72. vm.countTime -= 1;
  73. if(vm.countTime<=0){
  74. vm.isloading=false
  75. vm.getData()
  76. vm.result=vm.synchronizationResult
  77. }else{
  78. vm.getCardInfo()
  79. }
  80. },
  81. //缴费结算
  82. torePay: function() {
  83. var vm = this
  84. var reloading = dialog({
  85. contentType: 'load',
  86. skin: 'bk-popup',
  87. content:'缴费结算中...'
  88. });
  89. reloading.showModal();
  90. sendPost("/third/hy/paySettle/outpSettle", {
  91. hisId: vm.carddata.hisId
  92. }, "json", "get", function() {
  93. reloading.close();
  94. dialog({
  95. contentType: 'tipsbox',
  96. bottom: true,
  97. skin: 'bk-popup',
  98. content: '请求失败'
  99. }).show();
  100. }, function(res) {
  101. reloading.close();
  102. if(res.status == 200) {
  103. if(res.data.code == 0) {
  104. vm.getData()
  105. }else{
  106. vm.getData()
  107. vm.result=vm.synchronizationResult
  108. vm.result.msg=res.data.message
  109. }
  110. } else {
  111. dialog({
  112. contentType: 'tipsbox',
  113. bottom: true,
  114. skin: 'bk-popup',
  115. content: res.msg || '数据查询失败'
  116. }).show();
  117. }
  118. })
  119. },
  120. //获取数据
  121. getData:function(){
  122. var vm=this
  123. vm.result=vm.successResult
  124. vm.data={"patientName":getQueryString('patientName'),"healthNo":Request.healthNo,"payAmount":Request.payAmount,"createDate":getQueryString('createDate'),"healthType":1,}
  125. },
  126. backClick:function(){
  127. window.location.href='../../payment/html/paymentList.html?id='+Request.cardId; //缴费查询页面
  128. },//就诊卡页面
  129. gotoPatientIDCard:function(){
  130. window.location.href='../../payment/html/patientIDCards-pay.html?id='+Request.cardId;
  131. },
  132. //判断是否验证登录通过
  133. checkType:function(){
  134. var vm=this
  135. var timer = setInterval(function(){
  136. if(checktype){
  137. clearInterval(timer);
  138. vm.getCardInfo()
  139. }
  140. },10);
  141. },
  142. },
  143. })
  144. })()
  145. function queryInit(){
  146. checktype=true
  147. }
  148. function getQueryString(name) {
  149. var reg = new RegExp("(^|&)" + name + "=([^&]*)(&|$)", "i");
  150. var r = window.location.search.substr(1).match(reg);
  151. if (r != null) return decodeURI(r[2]); return null;
  152. }