repaymentResult.js 1.9 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374
  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. result:{},
  12. successResult:{
  13. status:"success-pay",
  14. msg:"就诊账单已完成缴费,可在就诊卡-缴费-已缴费账单中查看。",
  15. Img:"../images/jiaofeichengong_icon.png",
  16. txt:"缴费成功",
  17. },
  18. synchronizationResult:{
  19. status:"synchronization-pay",
  20. msg:"系统繁忙,请重新充值缴费。",
  21. Img:"../images/jiaofeishibai_icon.png",
  22. txt:"缴费失败",
  23. },
  24. failureResult:{
  25. status:"failure-pay",
  26. msg:"系统繁忙,请重新充值缴费。",
  27. Img:"../images/jiaofeishibai_icon.png",
  28. txt:"缴费失败",
  29. },
  30. healthType:["","账单结算缴费","住院缴费充值"],
  31. initdata:{"patientName":"","healthNo":"","healthType":1,"payAmount":"","createDate":"",},
  32. data:{},
  33. },
  34. mounted: function() {
  35. var vm = this
  36. checkUserAgent();
  37. vm.checkType()
  38. },
  39. methods: {
  40. //获取数据
  41. getData:function(){
  42. var vm=this
  43. vm.result=vm.successResult
  44. vm.data={"patientName":getQueryString('patientName'),"healthNo":Request.healthNo,"payAmount":Request.payAmount,"createDate":getQueryString('createDate'),"healthType":1,}
  45. },
  46. backClick:function(){
  47. window.location.href='../../payment/html/repayment.html?id='+Request.cardId;
  48. },
  49. //判断是否验证登录通过
  50. checkType:function(){
  51. var vm=this
  52. var timer = setInterval(function(){
  53. if(checktype){
  54. clearInterval(timer);
  55. vm.getData()
  56. }
  57. },10);
  58. },
  59. },
  60. })
  61. })()
  62. function queryInit(){
  63. checktype=true
  64. }
  65. function getQueryString(name) {
  66. var reg = new RegExp("(^|&)" + name + "=([^&]*)(&|$)", "i");
  67. var r = window.location.search.substr(1).match(reg);
  68. if (r != null) return decodeURI(r[2]); return null;
  69. }