payment.js 11 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334
  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. payMoney:"",
  14. repayAmout:Request.repayAmout,
  15. cardNo:"",
  16. paytype:Request.paytype, //paytype 1为门诊缴费 2为住院缴费
  17. surplusMoney:"",
  18. data:{},
  19. code:"",
  20. cardlenght:0,
  21. ischangeCard:false,
  22. },
  23. mounted: function() {
  24. var vm = this
  25. loading.showModal();
  26. checkUserAgent();
  27. vm.code=JSON.parse(localStorage.getItem("wlyyAgent")).uid
  28. vm.checkType()
  29. $(".c-ser-input").focus()
  30. },
  31. methods: {
  32. //获取列表数据
  33. getData:function(){
  34. var vm=this
  35. sendPost("patient/card/getCardList", {patient:vm.code}, "json", "get",function(){
  36. loading.close();
  37. dialog({contentType:'tipsbox',bottom:true, skin:'bk-popup' , content:'请求失败'}).show();
  38. }, function(res){
  39. if(res.status == 200){
  40. if(res.data.length>0){
  41. vm.cardlenght=res.data.length
  42. if(Request.id){
  43. vm.data=res.data.filter(function(item){
  44. return item.id==Request.id && vm.hasInpCardNo(item)
  45. })[0]
  46. if(!vm.data){
  47. vm.data=res.data.filter(function(item){
  48. return item.isDefault==1 && vm.hasInpCardNo(item)
  49. })[0]
  50. }
  51. }else{
  52. vm.data=res.data.filter(function(item){
  53. return item.isDefault==1 && vm.hasInpCardNo(item)
  54. })[0]
  55. }
  56. if(!vm.data){
  57. vm.data=res.data[0]
  58. if(!vm.hasInpCardNo(vm.data)){
  59. dialog({
  60. content: "请先绑定住院就诊卡!",
  61. okValue: '确定',
  62. ok: function(){
  63. window.location.href='../../payment/html/patientIDCards.html';
  64. },
  65. }).showModal()
  66. }
  67. }
  68. vm.cardId=vm.data.id
  69. vm.getCardInfo()
  70. }else{
  71. dialog({
  72. content: "请先绑定就诊卡!",
  73. okValue: '确定',
  74. ok: function(){
  75. window.location.href='../../payment/html/patientIDCards.html';
  76. },
  77. }).showModal()
  78. }
  79. }else{
  80. loading.close();
  81. dialog({contentType:'tipsbox',bottom:true, skin:'bk-popup' , content:'数据获取失败'}).show();
  82. }
  83. })
  84. },
  85. //获取列表数据
  86. getCardInfo:function(){
  87. var vm=this
  88. sendPost("patient/card/getCardInfo", {id:vm.cardId}, "json", "get",function(){
  89. loading.close();
  90. dialog({contentType:'tipsbox',bottom:true, skin:'bk-popup' , content:'请求失败'}).show();
  91. }, function(res){
  92. if(res.status == 200){
  93. loading.close();
  94. vm.data=res.data
  95. if(vm.paytype=="2"){
  96. vm.surplusMoney=vm.data.cardInpMoney?vm.data.cardInpMoney:0
  97. vm.cardNo=vm.data.inpCardNo
  98. }else{
  99. vm.surplusMoney=vm.data.cardMoney?vm.data.cardMoney:0
  100. vm.cardNo=vm.data.cardNo
  101. }
  102. if(Request.repayAmout){ //从缴费结算进入
  103. vm.payMoney=Request.repayAmout-vm.surplusMoney
  104. }
  105. }else{
  106. loading.close();
  107. dialog({contentType:'tipsbox',bottom:true, skin:'bk-popup' , content:'数据获取失败'}).show();
  108. }
  109. })
  110. },
  111. //去支付
  112. toPayment:function(){
  113. var vm=this
  114. loading.showModal();
  115. if(vm.payMoney&&vm.payMoney>0){
  116. if(judgeWxVersion()){
  117. vm.getWeixinSign()
  118. }
  119. }else{
  120. loading.close();
  121. dialog({contentType:'tipsbox',bottom:true, skin:'bk-popup' , content:'请输入正确的充值金额'}).show();
  122. }
  123. },
  124. //获得微信sdk信息
  125. getWeixinSign:function() {
  126. var vm=this
  127. var params = {};
  128. params.pageUrl = window.location.href;
  129. sendPost("weixin/getSign", params, "json", "post",function(){
  130. loading.close();
  131. dialog({contentType:'tipsbox',bottom:true, skin:'bk-popup' , content:'请求失败'}).show();
  132. }, function(res){
  133. if(res.status == 200) {
  134. var timestamp = res.data.timestamp;
  135. var noncestr = res.data.noncestr;
  136. var signature = res.data.signature;
  137. wx.config({
  138. //debug: true, // 开启调试模式,调用的所有api的返回值会在客户端alert出来,若要查看传入的参数,可以在pc端打开,参数信息会通过log打出,仅在pc端时才会打印。
  139. appId: appId, // 必填,公众号的唯一标识
  140. timestamp: timestamp, // 必填,生成签名的时间戳
  141. nonceStr: noncestr, // 必填,生成签名的随机串
  142. signature: signature, // 必填,签名,见附录1
  143. jsApiList: [
  144. 'chooseWXPay',
  145. 'checkJsApi'
  146. ] // 必填,需要使用的JS接口列表,所有JS接口列表见附录2
  147. });
  148. wx.ready(function(){
  149. vm.wxReady()
  150. })
  151. }else{
  152. loading.close();
  153. dialog({contentType:'tipsbox',bottom:true, skin:'bk-popup' , content:res.msg}).show();
  154. }
  155. })
  156. },
  157. wxReady:function(){
  158. var vm=this
  159. var params = {
  160. patient:vm.data.patient,
  161. healthNo:vm.cardNo,
  162. healthType:vm.paytype,
  163. payAmount:parseFloat(vm.payMoney).toFixed(2),
  164. spbillCreateIp:returnCitySN["cip"],
  165. // code:getUrlParam("code"),
  166. openid:JSON.parse(localStorage.getItem("wlyyAgent")).openid
  167. };
  168. sendPost("third/hy/pay/createPayOrder", params, "json", "post",function(){
  169. loading.close();
  170. dialog({contentType:'tipsbox',bottom:true, skin:'bk-popup' , content:'请求失败'}).show();
  171. }, function(res){
  172. if(res.status == 200) {
  173. loading.close();
  174. var data = res.data;
  175. wx.chooseWXPay({
  176. appId:data.appId,
  177. timestamp: data.timeStamp, // 支付签名时间戳,注意微信jssdk中的所有使用timestamp字段均为小写。但最新版的支付后台生成签名使用的timeStamp字段名需大写其中的S字符
  178. nonceStr: data.nonceStr, // 支付签名随机串,不长于 32 位
  179. package: data.package, // 统一支付接口返回的prepay_id参数值,提交格式如:prepay_id=***)
  180. signType: data.signType, // 签名方式,默认为'SHA1',使用新版支付需传入'MD5'
  181. paySign: data.sign, // 支付签名
  182. success: function (res) {
  183. // 支付成功后的回调函数
  184. if(Request.repayAmout){ //从缴费结算进入,直接进行缴费结算
  185. vm.torePay()
  186. }else{
  187. window.location.href='../../payment/html/paymentResult.html?seqNo='+data.seqNo+"&payStatus=1&cardId="+vm.cardId;
  188. }                                
  189. },
  190. cencel:function(res){
  191. // 支付取消回调函数
  192. //alert("支付过程中用户取消");
  193. },
  194. fail: function(res){
  195. // 支付失败回调函数
  196. var errorparams={seqNo:data.seqNo,wxErrorMsg:res.errMsg}
  197. sendPost("third/hy/pay/setPayLogWxFail", errorparams, "json", "post",function(){
  198. dialog({contentType:'tipsbox',bottom:true, skin:'bk-popup' , content:'请求失败'}).show();
  199. }, function(res){
  200. window.location.href='../../payment/html/paymentResult.html?seqNo='+data.seqNo+"&payStatus=2&cardId="+vm.cardId;
  201. })
  202. }
  203. });
  204. }else{
  205. loading.close();
  206. dialog({contentType:'tipsbox',bottom:true, skin:'bk-popup' , content:res.msg}).show();
  207. }
  208. })
  209. },
  210. //缴费结算
  211. torePay: function() {
  212. var vm = this
  213. var reloading = dialog({
  214. contentType: 'load',
  215. skin: 'bk-popup',
  216. content:'缴费结算中...'
  217. });
  218. reloading.showModal();
  219. sendPost("/third/hy/paySettle/outpSettle", {
  220. hisId: vm.data.hisId
  221. }, "json", "get", function() {
  222. reloading.close();
  223. dialog({
  224. contentType: 'tipsbox',
  225. bottom: true,
  226. skin: 'bk-popup',
  227. content: '请求失败'
  228. }).show();
  229. }, function(res) {
  230. reloading.close();
  231. if(res.status == 200) {
  232. if(res.data.code == 0) {
  233. window.location.href = "../../payment/html/repaymentResult.html?patientName=" + vm.data.name + "&healthNo=" + vm.data.cardNo + "&payAmount=" + vm.repayAmout + "&createDate=" + getNowFormatDate() + "&cardId=" + vm.cardId;
  234. }
  235. } else {
  236. dialog({
  237. contentType: 'tipsbox',
  238. bottom: true,
  239. skin: 'bk-popup',
  240. content: res.msg || '数据查询失败'
  241. }).show();
  242. }
  243. })
  244. },
  245. //强制设定最多只能输入两位小数
  246. checkNumber:function(payMoney){
  247. var myreg=/^[0][0-9]{1}$/;
  248. if(myreg.test(payMoney)){
  249. payMoney="0"
  250. }
  251. this.payMoney= (payMoney.match(/^\d*(\.?\d{0,2})/g)[0]) || null
  252. if(this.payMoney>20000){
  253. dialog({contentType:'tipsbox',bottom:true, skin:'bk-popup' , content:"支付金额不得超过20000"}).show();
  254. this.payMoney=20000
  255. }
  256. },
  257. hasInpCardNo:function(item){
  258. var ispass=true
  259. if(Request.paytype==2){
  260. ispass=item.inpCardNo?true:false
  261. }
  262. return ispass
  263. },
  264. //跳转切换就诊卡
  265. changeCards:function(){
  266. window.location.href='../../payment/html/changeCards.html?pre=payment&paytype='+Request.paytype;
  267. },
  268. //判断是否验证登录通过
  269. checkType:function(){
  270. var vm=this
  271. var timer = setInterval(function(){
  272. if(checktype){
  273. clearInterval(timer);
  274. vm.getData()
  275. }
  276. },10);
  277. },
  278. },
  279. })
  280. })()
  281. function queryInit(){
  282. checktype=true
  283. }
  284. function getUrlParam(name){
  285. //构造一个含有目标参数的正则表达式对象
  286. var reg = new RegExp("(^|&)"+name+"=([^&]*)(&|$)");
  287. //匹配目标参数
  288. var r = window.location.search.substr(1).match(reg);
  289. //返回参数值
  290. if (r!=null) return unescape(r[2]); return null;
  291. }
  292. //判断微信版本号
  293. function judgeWxVersion(name){
  294. var ispass=false
  295. var wechatInfo = navigator.userAgent.match(/MicroMessenger\/([\d\.]+)/i)
  296. if(!wechatInfo) {
  297. loading.close();
  298. dialog({contentType:'tipsbox',bottom:true, skin:'bk-popup' , content:'当前不是微信,不支持微信支付'}).show();
  299. }
  300. else
  301. {
  302. if ( wechatInfo[1] < "5.0" ) {
  303. loading.close();
  304. dialog({contentType:'tipsbox',bottom:true, skin:'bk-popup' , content:'当前微信低于5.0,不支持微信支付,请升级后支付'}).show();
  305. }else{
  306. ispass=true
  307. }
  308. }
  309. return ispass
  310. }
  311. function getNowFormatDate() {
  312. var date = new Date();
  313. var seperator1 = "-";
  314. var year = date.getFullYear();
  315. var month = date.getMonth() + 1;
  316. var strDate = date.getDate();
  317. if(month >= 1 && month <= 9) {
  318. month = "0" + month;
  319. }
  320. if(strDate >= 0 && strDate <= 9) {
  321. strDate = "0" + strDate;
  322. }
  323. var hour = date.getHours() < 10 ? "0" + date.getHours() : date.getHours();
  324. var minute = date.getMinutes() < 10 ? "0" + date.getMinutes() : date.getMinutes();
  325. var second = date.getSeconds() < 10 ? "0" + date.getSeconds() : date.getSeconds();
  326. var currentdate = year + seperator1 + month + seperator1 + strDate + " " + hour + ":" + minute + ":" + second;
  327. return currentdate;
  328. }