repaymentResult.js 7.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213
  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. queryList:{
  37. month:"",
  38. healthNo:Request.healthNo,
  39. chargeType:"1", //1:门诊,2:住院,
  40. pageNo:1,
  41. pageSize:10,
  42. },
  43. },
  44. mounted: function() {
  45. var vm = this
  46. checkUserAgent();
  47. vm.checkType()
  48. vm.cardId=Request.cardId
  49. var month=new Date().getMonth()+1
  50. if(month<=9){
  51. month="0"+month
  52. }
  53. vm.queryList.month=new Date().getFullYear()+"-"+month
  54. },
  55. methods: {
  56. getCardInfo:function(){
  57. var vm=this
  58. sendPost("patient/card/getCardInfo", {id:vm.cardId}, "json", "get",function(){
  59. loading.close();
  60. dialog({contentType:'tipsbox',bottom:true, skin:'bk-popup' , content:'请求失败'}).show();
  61. }, function(res){
  62. loading.close();
  63. if(res.status == 200){
  64. vm.carddata=res.data
  65. // if(parseFloat(Request.payAmount)<=vm.carddata.cardMoney){
  66. // }else{
  67. // }
  68. }else{
  69. dialog({contentType:'tipsbox',bottom:true, skin:'bk-popup' , content:'数据获取失败'}).show();
  70. }
  71. })
  72. },
  73. //获取列表数据(用于判断是否同步,是否可进行缴费结算)
  74. getList:function(){
  75. var vm=this
  76. sendPost("third/hy/pay/gerPayOrderList", vm.queryList, "json", "get",function(){
  77. loading.close();
  78. dialog({contentType:'tipsbox',bottom:true, skin:'bk-popup' , content:'请求失败'}).show();
  79. }, function(res){
  80. if(res.status == 200){
  81. var thisOrder=_.where(res.data, {seqNo: Request.seqNo})
  82. if(thisOrder[0]&&thisOrder[0].hyStatus==1){ //该缴费记录且同步成功
  83. if(vm.carddata.hisId){
  84. vm.isloading=false
  85. vm.data=vm.initdata
  86. vm.torePay()
  87. }else{
  88. setTimeout(function(){
  89. vm.showTime2()
  90. },1000);
  91. }
  92. }else{
  93. setTimeout(function(){
  94. vm.showTime()
  95. },1000);
  96. }
  97. }else{
  98. dialog({contentType:'tipsbox',bottom:true, skin:'bk-popup' , content:'数据获取失败'}).show();
  99. }
  100. })
  101. },
  102. showTime:function(){
  103. var vm=this
  104. vm.countTime -= 1;
  105. if(vm.countTime<=0){
  106. vm.isloading=false
  107. vm.getData()
  108. vm.result=vm.synchronizationResult
  109. }else{
  110. vm.getList()
  111. }
  112. },
  113. showTime2:function(){
  114. var vm=this
  115. vm.countTime -= 1;
  116. if(vm.countTime<=0){
  117. vm.isloading=false
  118. vm.getData()
  119. vm.result=vm.synchronizationResult
  120. }else{
  121. if(vm.carddata.hisId){
  122. vm.isloading=false
  123. vm.data=vm.initdata
  124. vm.torePay()
  125. }else{
  126. setTimeout(function(){
  127. vm.showTime2()
  128. },1000);
  129. }
  130. }
  131. },
  132. //缴费结算
  133. torePay: function() {
  134. var vm = this
  135. var reloading = dialog({
  136. contentType: 'load',
  137. skin: 'bk-popup',
  138. content:'缴费结算中...'
  139. });
  140. reloading.showModal();
  141. sendPost("/third/hy/paySettle/outpSettle", {
  142. hisId: vm.carddata.hisId
  143. }, "json", "get", function() {
  144. reloading.close();
  145. dialog({
  146. contentType: 'tipsbox',
  147. bottom: true,
  148. skin: 'bk-popup',
  149. content: '请求失败'
  150. }).show();
  151. }, function(res) {
  152. reloading.close();
  153. if(res.status == 200) {
  154. if(res.data.code == 0) {
  155. vm.getData()
  156. }else{
  157. vm.getData()
  158. vm.result=vm.failureResult
  159. vm.result.msg=res.data.message
  160. }
  161. } else {
  162. dialog({
  163. contentType: 'tipsbox',
  164. bottom: true,
  165. skin: 'bk-popup',
  166. content: res.msg || '数据查询失败'
  167. }).show();
  168. }
  169. })
  170. },
  171. //获取数据
  172. getData:function(){
  173. var vm=this
  174. vm.result=vm.successResult
  175. vm.data={"patientName":getQueryString('patientName'),"healthNo":Request.healthNo,"payAmount":Request.payAmount,"createDate":getQueryString('createDate'),"healthType":1,}
  176. },
  177. backClick:function(){
  178. window.location.href='../../payment/html/paymentList.html?id='+Request.cardId; //充值查询页面
  179. },
  180. backClick2:function(){
  181. window.location.href='../../payment/html/repayment.html?id='+Request.cardId; //缴费结算页面
  182. },
  183. //就诊卡页面
  184. gotoPatientIDCard:function(){
  185. window.location.href='../../payment/html/patientIDCards-pay.html?id='+Request.cardId;
  186. },
  187. //判断是否验证登录通过
  188. checkType:function(){
  189. var vm=this
  190. var timer = setInterval(function(){
  191. if(checktype){
  192. clearInterval(timer);
  193. vm.getCardInfo()
  194. vm.getList()
  195. }
  196. },10);
  197. },
  198. },
  199. })
  200. })()
  201. function queryInit(){
  202. checktype=true
  203. }
  204. function getQueryString(name) {
  205. var reg = new RegExp("(^|&)" + name + "=([^&]*)(&|$)", "i");
  206. var r = window.location.search.substr(1).match(reg);
  207. if (r != null) return decodeURI(r[2]); return null;
  208. }