payment.js 12 KB

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