patientIDCards-pay.js 6.2 KB

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