paymentList.js 3.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129
  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. data:{},
  12. dataList:[],
  13. length:1,
  14. id:"",
  15. queryList:{
  16. month:"",
  17. healthNo:""
  18. },
  19. code:"",
  20. payTypeList:[{},{type:"weixin",Img:"../images/weixinzhifu_icon.png",text:"微信支付"},{type:"xianjin",Img:"../images/xianjichongzhi_icon.png",text:"现金支付"},{type:"yinlian",Img:"../images/yinlianzhifu_icon.png",text:"银联支付"},{type:"zhifubao",Img:"../images/zhifubaozhifu_icon.png",text:"支付宝支付"}],
  21. healthType:["","就诊卡缴费","住院缴费"],
  22. },
  23. mounted: function() {
  24. var vm = this
  25. checkUserAgent();
  26. vm.checkType()
  27. vm.code=JSON.parse(localStorage.getItem("wlyyAgent")).uid
  28. vm.queryList.month=new Date().getFullYear()+"-"+new Date().getMonth()
  29. vm.eventClick()
  30. },
  31. methods: {
  32. //获取就诊卡
  33. getData:function(){
  34. var vm=this
  35. loading.showModal();
  36. sendPost("patient/card/getCardList", {patient:vm.code}, "json", "get",function(){
  37. loading.close();
  38. dialog({contentType:'tipsbox',bottom:true, skin:'bk-popup' , content:'请求失败'}).show();
  39. }, function(res){
  40. if(res.status == 200){
  41. if(res.data.length>0){
  42. if(Request.id){
  43. vm.data=res.data.filter(function(item){
  44. return item.id==Request.id
  45. })[0]
  46. }else{
  47. vm.data=res.data.filter(function(item){
  48. return item.isDefault==1
  49. })[0]
  50. if(!vm.data){
  51. vm.data=res.data[0]
  52. }
  53. }
  54. vm.queryList.healthNo=vm.data.cardNo
  55. vm.getList()
  56. }else{
  57. vm.gotoCards()
  58. }
  59. }else{
  60. loading.close();
  61. dialog({contentType:'tipsbox',bottom:true, skin:'bk-popup' , content:'数据获取失败'}).show();
  62. }
  63. })
  64. },
  65. //获取列表数据
  66. getList:function(){
  67. var vm=this
  68. sendPost("third/hy/pay/gerPayOrderList", vm.queryList, "json", "get",function(){
  69. loading.close();
  70. dialog({contentType:'tipsbox',bottom:true, skin:'bk-popup' , content:'请求失败'}).show();
  71. }, function(res){
  72. loading.close();
  73. if(res.status == 200){
  74. vm.dataList=JSON.parse(res.data)
  75. vm.length=vm.dataList.length
  76. }else{
  77. dialog({contentType:'tipsbox',bottom:true, skin:'bk-popup' , content:'数据获取失败'}).show();
  78. }
  79. })
  80. },
  81. //跳转到订单结果页
  82. gotoResult:function(seqNo){
  83. window.location.href='../../payment/html/paymentResult.html?seqNo='+seqNo;
  84. },
  85. //跳转切换就诊卡
  86. changeCards:function(){
  87. window.location.href='../../payment/html/changeCards.html?pre=paymentList';
  88. },
  89. //绑定事件-时间
  90. eventClick:function(){
  91. var vm=this
  92. $('.date-icon').mobiscroll({
  93. preset: 'date',
  94. dateOrder: 'yymm',
  95. dateFormat: 'yy-mm',
  96. theme: 'ios',
  97. lang:'zh',
  98. minDate: new Date(2017,1),
  99. maxDate: new Date(),
  100. onSelect: function(valueText, inst){
  101. console.info(valueText)
  102. vm.queryList.month=valueText
  103. vm.getList()
  104. },
  105. });
  106. },
  107. //跳转我的就诊卡页面
  108. gotoCards:function(){
  109. window.location.href='../../payment/html/patientIDCards.html';
  110. },
  111. //判断是否验证登录通过
  112. checkType:function(){
  113. var vm=this
  114. var timer = setInterval(function(){
  115. if(checktype){
  116. clearInterval(timer);
  117. vm.getData()
  118. }
  119. },10);
  120. },
  121. },
  122. })
  123. })()
  124. function queryInit(){
  125. checktype=true
  126. }