paymentList.js 6.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223
  1. var Request = GetRequest();
  2. var checktype=false;
  3. var loading = dialog({
  4. contentType: 'load',
  5. skin: 'bk-popup',
  6. });
  7. var iscrollState='';//判断滑动方向
  8. (function() {
  9. mui.init({
  10. pullRefresh : {
  11. container:'#wrapper',
  12. down : {
  13. height:50,
  14. auto: false,
  15. contentdown : "下拉可以刷新",
  16. contentover : "释放立即刷新",
  17. contentrefresh : "正在刷新...",
  18. callback: function(){
  19. iscrollState='down'
  20. myVue.isdown()
  21. }
  22. },
  23. up : {
  24. height:50,
  25. contentinit: '',
  26. contentdown: '',
  27. contentrefresh : "正在加载...",
  28. contentnomore:'没有更多数据了',
  29. callback: function() {
  30. iscrollState='up'
  31. myVue.isup()
  32. }
  33. }
  34. }
  35. })
  36. var myVue=new Vue({
  37. el: "#app",
  38. data: {
  39. data:{},
  40. dataList:[],
  41. length:1,
  42. cardlenght:0,
  43. cardId:"",
  44. queryList:{
  45. // month:"",
  46. healthNo:"",
  47. chargeType:"1", //1:门诊,2:住院,
  48. pageNo:1,
  49. pageSize:10,
  50. year:"",
  51. },
  52. code:"",
  53. 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:"支付宝支付"}],
  54. healthType:["","门诊充值","住院充值"],
  55. isUPsuccess:true, //上拉锁,搜索成功则释放
  56. },
  57. mounted: function() {
  58. var vm = this
  59. checkUserAgent();
  60. vm.checkType()
  61. vm.code=JSON.parse(localStorage.getItem("wlyyAgent")).uid
  62. // var month=new Date().getMonth()+1
  63. // if(month<=9){
  64. // month="0"+month
  65. // }
  66. vm.queryList.year=new Date().getFullYear() //+"-"+month
  67. vm.eventClick()
  68. },
  69. methods: {
  70. //获取就诊卡
  71. getData:function(){
  72. var vm=this
  73. loading.showModal();
  74. sendPost("patient/card/getCardList", {patient:vm.code}, "json", "get",function(){
  75. loading.close();
  76. dialog({contentType:'tipsbox',bottom:true, skin:'bk-popup' , content:'请求失败'}).show();
  77. }, function(res){
  78. if(res.status == 200){
  79. if(res.data.length>0){
  80. vm.cardlenght=res.data.length
  81. if(Request.id){
  82. vm.data=res.data.filter(function(item){
  83. return item.id==Request.id
  84. })[0]
  85. if(!vm.data){
  86. vm.data=res.data.filter(function(item){
  87. return item.isDefault==1
  88. })[0]
  89. }
  90. }else{
  91. vm.data=res.data.filter(function(item){
  92. return item.isDefault==1
  93. })[0]
  94. }
  95. if(!vm.data){
  96. vm.data=res.data[0]
  97. }
  98. vm.cardId=vm.data.id
  99. vm.queryList.healthNo=vm.data.cardNo
  100. vm.getList(1)
  101. }else{
  102. dialog({
  103. content: "请先绑定就诊卡,再查看就诊充值信息!",
  104. okValue: '确定',
  105. ok: function(){
  106. window.location.href='../../payment/html/patientIDCards.html';
  107. },
  108. // cancelValue: '我再看看',
  109. // cancel: function(){}
  110. }).showModal()
  111. }
  112. }else{
  113. loading.close();
  114. dialog({contentType:'tipsbox',bottom:true, skin:'bk-popup' , content:'数据获取失败'}).show();
  115. }
  116. })
  117. },
  118. //获取列表数据
  119. getList:function(pageNo){
  120. var vm=this
  121. if(pageNo){
  122. vm.queryList.pageNo=pageNo
  123. vm.dataList=[]
  124. vm.isUPsuccess=true
  125. }
  126. // sendPost("third/hy/pay/gerPayOrderList", vm.queryList, "json", "get",function(){
  127. sendPost("third/hy/pay/gerPayOrderListByYear", vm.queryList, "json", "get",function(){
  128. loading.close();
  129. mui('#wrapper').pullRefresh().endPulldownToRefresh(false);
  130. mui('#wrapper').pullRefresh().enablePullupToRefresh();//重置
  131. mui('#wrapper').pullRefresh().endPullupToRefresh(false);
  132. dialog({contentType:'tipsbox',bottom:true, skin:'bk-popup' , content:'请求失败'}).show();
  133. }, function(res){
  134. loading.close();
  135. if(vm.queryList.pageNo==1){
  136. vm.length=0
  137. }
  138. if(res.status == 200){
  139. vm.isUPsuccess=true
  140. vm.dataList.push.apply(vm.dataList,res.data)
  141. vm.length+=vm.dataList.length
  142. if(iscrollState=="down"){
  143. mui('#wrapper').pullRefresh().endPulldownToRefresh(false);
  144. mui('#wrapper').pullRefresh().enablePullupToRefresh();//重置
  145. }else{
  146. if(res.data.length<vm.queryList.pageSize){
  147. mui('#wrapper').pullRefresh().endPullupToRefresh(true);
  148. }else{
  149. mui('#wrapper').pullRefresh().endPullupToRefresh(false);
  150. }
  151. }
  152. }else{
  153. dialog({contentType:'tipsbox',bottom:true, skin:'bk-popup' , content:'数据获取失败'}).show();
  154. mui('#wrapper').pullRefresh().endPulldownToRefresh(false);
  155. mui('#wrapper').pullRefresh().enablePullupToRefresh();//重置
  156. mui('#wrapper').pullRefresh().endPullupToRefresh(false);
  157. }
  158. })
  159. },
  160. //跳转到订单结果页
  161. gotoResult:function(item){
  162. var vm=this
  163. window.location.href='../../payment/html/paymentResult.html?healthType='+item.healthType+"&patientName="+item.patientName+"&healthNo="+item.healthNo+"&payAmount="+item.payAmount+"&seqNo="+item.seqNo+"&createDate="+item.createDate+"&payStatus="+item.payStatus+"&payType="+item.payType+"&cardId="+this.cardId;
  164. },
  165. //跳转切换就诊卡
  166. changeCards:function(){
  167. window.location.href='../../payment/html/changeCards.html?pre=paymentList';
  168. },
  169. //绑定事件-时间
  170. eventClick:function(){
  171. var vm=this
  172. $('.date-icon').mobiscroll({
  173. preset: 'date',
  174. dateOrder: 'yy',
  175. dateFormat: 'yy',
  176. theme: 'ios',
  177. lang:'zh',
  178. minDate: new Date(2015),
  179. maxDate: new Date(),
  180. onSelect: function(valueText, inst){
  181. if(vm.queryList.year!=valueText){
  182. vm.queryList.year=valueText
  183. vm.getList(1)
  184. }
  185. },
  186. });
  187. },
  188. //跳转我的就诊卡页面
  189. gotoCards:function(){
  190. window.location.href='../../payment/html/patientIDCards.html';
  191. },
  192. //判断是否验证登录通过
  193. checkType:function(){
  194. var vm=this
  195. var timer = setInterval(function(){
  196. if(checktype){
  197. clearInterval(timer);
  198. vm.getData()
  199. }
  200. },10);
  201. },
  202. isdown:function(){
  203. // alert(12)
  204. this.getList(1)
  205. },
  206. isup:function(){
  207. // alert(13)
  208. if(this.isUPsuccess){
  209. this.queryList.pageNo++
  210. this.isUPsuccess=false
  211. }
  212. this.getList()
  213. },
  214. },
  215. })
  216. })()
  217. function queryInit(){
  218. checktype=true
  219. }