payment.js 12 KB

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