paymentList.js 3.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128
  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. dialog({contentType:'tipsbox',bottom:true, skin:'bk-popup' , content:'数据获取失败'}).show();
  61. }
  62. })
  63. },
  64. //获取列表数据
  65. getList:function(){
  66. var vm=this
  67. sendPost("third/hy/pay/gerPayOrderList", vm.queryList, "json", "get",function(){
  68. loading.close();
  69. dialog({contentType:'tipsbox',bottom:true, skin:'bk-popup' , content:'请求失败'}).show();
  70. }, function(res){
  71. loading.close();
  72. if(res.status == 200){
  73. vm.dataList=JSON.parse(res.data)
  74. vm.length=vm.dataList.length
  75. }else{
  76. dialog({contentType:'tipsbox',bottom:true, skin:'bk-popup' , content:'数据获取失败'}).show();
  77. }
  78. })
  79. },
  80. //跳转到订单结果页
  81. gotoResult:function(seqNo){
  82. window.location.href='../../payment/html/paymentResult.html?seqNo='+seqNo;
  83. },
  84. //跳转切换就诊卡
  85. changeCards:function(){
  86. window.location.href='../../payment/html/changeCards.html?pre=paymentList';
  87. },
  88. //绑定事件-时间
  89. eventClick:function(){
  90. var vm=this
  91. $('.date-icon').mobiscroll({
  92. preset: 'date',
  93. dateOrder: 'yymm',
  94. dateFormat: 'yy-mm',
  95. theme: 'ios',
  96. lang:'zh',
  97. minDate: new Date(2017,1),
  98. maxDate: new Date(),
  99. onSelect: function(valueText, inst){
  100. console.info(valueText)
  101. vm.queryList.month=valueText
  102. vm.getList()
  103. },
  104. });
  105. },
  106. //跳转我的就诊卡页面
  107. gotoCards:function(){
  108. window.location.href='../../payment/html/patientIDCards.html';
  109. },
  110. //判断是否验证登录通过
  111. checkType:function(){
  112. var vm=this
  113. var timer = setInterval(function(){
  114. if(checktype){
  115. clearInterval(timer);
  116. vm.getData()
  117. }
  118. },10);
  119. },
  120. },
  121. })
  122. })()
  123. function queryInit(){
  124. checktype=true
  125. }