patientIDCards-pay.js 6.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192
  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.data.type=="2"){
  97. vm.data.cardNo=vm.data.cardNo.substr(0,1)+"*************"+vm.data.cardNo.substr(vm.data.cardNo.length-4,4)
  98. }
  99. // if(vm.length>0){
  100. // vm.$nextTick(function(){
  101. // vm.setBtnClass()
  102. // });
  103. // }
  104. }else{
  105. dialog({contentType:'tipsbox',bottom:true, skin:'bk-popup' , content:'数据获取失败'}).show();
  106. }
  107. })
  108. vm.getHyStatusNum() //获取未同步缴费数
  109. },
  110. //解绑就诊卡
  111. untieCard:function(){
  112. var vm=this
  113. dialog({title:'解绑提示', content:'是否确定解绑就诊卡?',okValue: '确定', ok: function (){vm.setuntieCard();}, cancelValue: '取消',cancel: function () {} }).showModal();
  114. },
  115. setuntieCard:function(){
  116. var vm=this
  117. sendPost("patient/card/unBindCard", {_method:"DELETE",id:vm.cardId}, "json", "post",function(){
  118. dialog({contentType:'tipsbox',bottom:true, skin:'bk-popup' , content:'请求失败'}).show();
  119. }, function(res){
  120. if(res.status == 200){
  121. dialog({contentType:'tipsbox',bottom:true, skin:'bk-popup' , content:res.msg}).show();
  122. vm.backtoCards()
  123. }else{
  124. dialog({contentType:'tipsbox',bottom:true, skin:'bk-popup' , content:res.msg}).show();
  125. }
  126. })
  127. },
  128. getHyStatusNum(){
  129. var vm=this
  130. var hyParams={
  131. healthNo:vm.cardId,
  132. chargeType:"", //1:门诊,2:住院,
  133. patient:vm.code,
  134. }
  135. sendPost("third/hy/pay/gerUnpayOrderList", hyParams, "json", "get",function(){
  136. dialog({contentType:'tipsbox',bottom:true, skin:'bk-popup' , content:'请求失败'}).show();
  137. }, function(res){
  138. if(res.status == 200){
  139. vm.hyStatusLength =res.data
  140. }else{
  141. dialog({contentType:'tipsbox',bottom:true, skin:'bk-popup' , content:res.msg}).show();
  142. }
  143. })
  144. },
  145. gotoRepay:function(paytype){ //paytype 1为门诊缴费 2为住院缴费
  146. var vm=this
  147. window.location.href='../../payment/html/repayment.html?id='+vm.cardId;
  148. },
  149. //跳转去支付
  150. gotoPay:function(paytype){ //paytype 1为门诊缴费 2为住院缴费
  151. var vm=this
  152. window.location.href='../../payment/html/payment.html?id='+vm.cardId+'&paytype='+paytype;
  153. },
  154. //跳转去充值查询列表
  155. gotoList:function(){
  156. var vm=this
  157. window.location.href='../../payment/html/paymentList.html?id='+vm.cardId;
  158. },
  159. //返回我的卡包页面
  160. backtoCards:function(){
  161. setTimeout(function(){
  162. window.location.href='../../payment/html/patientIDCards.html';
  163. },500)
  164. },
  165. //屏幕高度太矮,下方按钮随页面滚动,反之固定底部
  166. setBtnClass:function(){
  167. var vm = this
  168. var screemH=window.screen.availHeight;
  169. var bodyH=document.body.clientHeight;
  170. if(screemH-bodyH<180){
  171. vm.BtnClass="mt20"
  172. }
  173. },
  174. //判断是否验证登录通过
  175. checkType:function(){
  176. var vm=this
  177. var timer = setInterval(function(){
  178. if(checktype){
  179. clearInterval(timer);
  180. vm.getData()
  181. }
  182. },10);
  183. },
  184. },
  185. })
  186. })()
  187. function queryInit(){
  188. checktype=true
  189. }