patientIDCards-pay.js 5.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189
  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. dataList:[],
  12. cardId:Request.id,
  13. code:"",
  14. data:{
  15. "id": "",
  16. "patient": "",
  17. "hisId": "",
  18. "cardNo": "",
  19. "name": "",
  20. "idCard": "",
  21. "mobile": "",
  22. "inpCardNo": "",
  23. "isDefault": 0,
  24. "createDate": "",
  25. "cardMoney": "",
  26. "cardInpMoney": null
  27. },
  28. BtnClass:"p-fix-bottom-0",
  29. length:1,
  30. hyStatusLength:0,
  31. },
  32. mounted:function(){
  33. var vm = this
  34. loading.showModal();
  35. checkUserAgent();
  36. vm.code=JSON.parse(localStorage.getItem("wlyyAgent")).uid
  37. vm.checkType()
  38. },
  39. methods: {
  40. //获取列表数据
  41. getData:function(){
  42. var vm=this
  43. sendPost("patient/card/getCardList", {patient:vm.code}, "json", "get",function(){
  44. loading.close();
  45. dialog({contentType:'tipsbox',bottom:true, skin:'bk-popup' , content:'请求失败'}).show();
  46. }, function(res){
  47. if(res.status == 200){
  48. if(res.data.length>0){
  49. var data={}
  50. if(Request.id){
  51. data=res.data.filter(function(item){
  52. return item.id==Request.id
  53. })[0]
  54. if(!data){
  55. data=res.data.filter(function(item){
  56. return item.isDefault==1
  57. })[0]
  58. }
  59. }else{
  60. data=res.data.filter(function(item){
  61. return item.isDefault==1
  62. })[0]
  63. }
  64. if(!data){
  65. data=res.data[0]
  66. }
  67. vm.cardId=data.id
  68. vm.getCardInfo()
  69. }else{
  70. loading.close();
  71. dialog({
  72. content: "请先绑定就诊卡,再进行在线就诊缴费业务!",
  73. okValue: '确定',
  74. ok: function(){
  75. window.location.href='../../payment/html/patientIDCards.html';
  76. },
  77. // cancelValue: '我再看看',
  78. // cancel: function(){}
  79. }).showModal()
  80. }
  81. }else{
  82. loading.close();
  83. dialog({contentType:'tipsbox',bottom:true, skin:'bk-popup' , content:'数据获取失败'}).show();
  84. }
  85. })
  86. },
  87. getCardInfo:function(){
  88. var vm=this
  89. sendPost("patient/card/getCardInfo", {id:vm.cardId}, "json", "get",function(){
  90. loading.close();
  91. dialog({contentType:'tipsbox',bottom:true, skin:'bk-popup' , content:'请求失败'}).show();
  92. }, function(res){
  93. loading.close();
  94. if(res.status == 200){
  95. vm.data=res.data
  96. // if(vm.length>0){
  97. // vm.$nextTick(function(){
  98. // vm.setBtnClass()
  99. // });
  100. // }
  101. }else{
  102. dialog({contentType:'tipsbox',bottom:true, skin:'bk-popup' , content:'数据获取失败'}).show();
  103. }
  104. })
  105. vm.getHyStatusNum() //获取未同步缴费数
  106. },
  107. //解绑就诊卡
  108. untieCard:function(){
  109. var vm=this
  110. dialog({title:'解绑提示', content:'是否确定解绑就诊卡?',okValue: '确定', ok: function (){vm.setuntieCard();}, cancelValue: '取消',cancel: function () {} }).showModal();
  111. },
  112. setuntieCard:function(){
  113. var vm=this
  114. sendPost("patient/card/unBindCard", {_method:"DELETE",id:vm.cardId}, "json", "post",function(){
  115. dialog({contentType:'tipsbox',bottom:true, skin:'bk-popup' , content:'请求失败'}).show();
  116. }, function(res){
  117. if(res.status == 200){
  118. dialog({contentType:'tipsbox',bottom:true, skin:'bk-popup' , content:res.msg}).show();
  119. vm.backtoCards()
  120. }else{
  121. dialog({contentType:'tipsbox',bottom:true, skin:'bk-popup' , content:res.msg}).show();
  122. }
  123. })
  124. },
  125. getHyStatusNum(){
  126. var vm=this
  127. var hyParams={
  128. healthNo:vm.cardId,
  129. chargeType:"", //1:门诊,2:住院,
  130. patient:vm.code,
  131. }
  132. sendPost("third/hy/pay/gerUnpayOrderList", hyParams, "json", "get",function(){
  133. dialog({contentType:'tipsbox',bottom:true, skin:'bk-popup' , content:'请求失败'}).show();
  134. }, function(res){
  135. if(res.status == 200){
  136. vm.hyStatusLength =res.data
  137. }else{
  138. dialog({contentType:'tipsbox',bottom:true, skin:'bk-popup' , content:res.msg}).show();
  139. }
  140. })
  141. },
  142. gotoRepay:function(paytype){ //paytype 1为门诊缴费 2为住院缴费
  143. var vm=this
  144. window.location.href='../../payment/html/repayment.html?id='+vm.cardId;
  145. },
  146. //跳转去支付
  147. gotoPay:function(paytype){ //paytype 1为门诊缴费 2为住院缴费
  148. var vm=this
  149. window.location.href='../../payment/html/payment.html?id='+vm.cardId+'&paytype='+paytype;
  150. },
  151. //跳转去缴费查询列表
  152. gotoList:function(){
  153. var vm=this
  154. window.location.href='../../payment/html/paymentList.html?id='+vm.cardId;
  155. },
  156. //返回我的卡包页面
  157. backtoCards:function(){
  158. setTimeout(function(){
  159. window.location.href='../../payment/html/patientIDCards.html';
  160. },500)
  161. },
  162. //屏幕高度太矮,下方按钮随页面滚动,反之固定底部
  163. setBtnClass:function(){
  164. var vm = this
  165. var screemH=window.screen.availHeight;
  166. var bodyH=document.body.clientHeight;
  167. if(screemH-bodyH<180){
  168. vm.BtnClass="mt20"
  169. }
  170. },
  171. //判断是否验证登录通过
  172. checkType:function(){
  173. var vm=this
  174. var timer = setInterval(function(){
  175. if(checktype){
  176. clearInterval(timer);
  177. vm.getData()
  178. }
  179. },10);
  180. },
  181. },
  182. })
  183. })()
  184. function queryInit(){
  185. checktype=true
  186. }