Quellcode durchsuchen

缴费结算失败,跳转支付页面给就诊卡充值后,再直接进行缴费结算

chenyue vor 6 Jahren
Ursprung
Commit
97c3fd459e
3 geänderte Dateien mit 92 neuen und 15 gelöschten Zeilen
  1. 2 2
      html/payment/html/repayment.html
  2. 65 3
      html/payment/js/payment.js
  3. 25 10
      html/payment/js/repayment.js

+ 2 - 2
html/payment/html/repayment.html

@ -119,10 +119,10 @@
			<div class="c-100 p-fix-bottom-0 bgc-fff c-border-t" style="z-index: 2;" v-show="tabType==1&&waitPayList.length>0">
				<div class="mtb5 plr15 flex">
					<div class="f_g_1 c-f17 c-333" style="line-height: 45px;">
						合计:<span class="c-ff5e6c c-f20"><span class="c-f16">¥</span>{{parseFloat(waitPayTotal).toFixed(2)}}</span>
						合计:<span class="c-ff5e6c c-f20"><span class="c-f16">¥</span>{{waitPayTotal}}</span>
					</div>
					<div class="f_g_1 c-t-right">
						<button type="button" class="c-btn-4dcd70 c-btn-arc c-btn-big" style="height: 45px;width:140px;padding: 0;" @click="toPay">就诊卡结算</button>
						<button type="button" class="c-btn-4dcd70 c-btn-arc c-btn-big" style="height: 45px;width:140px;padding: 0;" @click="preToPay">就诊卡结算</button>
					</div>
				</div>
			</div>

+ 65 - 3
html/payment/js/payment.js

@ -11,6 +11,7 @@ var loading = dialog({
			dataList:[],
			cardId:Request.id,			
			payMoney:"",
			repayAmout:Request.repayAmout,
			cardNo:"",
			paytype:Request.paytype, //paytype 1为门诊缴费  2为住院缴费
			surplusMoney:"",
@ -97,7 +98,10 @@ var loading = dialog({
			        	}else{
			        		vm.surplusMoney=vm.data.cardMoney?vm.data.cardMoney:0
			        		vm.cardNo=vm.data.cardNo
			        	}
			        	}			        	
						if(Request.repayAmout){   //从缴费结算进入
							vm.payMoney=Request.repayAmout-vm.surplusMoney
						}
			        }else{
				 	  loading.close();
			          dialog({contentType:'tipsbox',bottom:true, skin:'bk-popup' , content:'数据获取失败'}).show();
@ -177,7 +181,11 @@ var loading = dialog({
							paySign: data.sign, // 支付签名
							success: function (res) {
								// 支付成功后的回调函数
	                               window.location.href='../../payment/html/paymentResult.html?seqNo='+data.seqNo+"&payStatus=1&cardId="+vm.cardId;
								if(Request.repayAmout){   //从缴费结算进入,直接进行缴费结算
									vm.torePay()
								}else{
									window.location.href='../../payment/html/paymentResult.html?seqNo='+data.seqNo+"&payStatus=1&cardId="+vm.cardId;
								}	                               
							},
							cencel:function(res){
								// 支付取消回调函数
@ -199,6 +207,41 @@ var loading = dialog({
			        }
			    })
			},
			//缴费结算
			torePay: function() {
				var vm = this
				var reloading = dialog({
					contentType: 'load',
					skin: 'bk-popup',
					content:'缴费结算中...'
				});
				reloading.showModal();
				sendPost("/third/hy/paySettle/outpSettle", {
					hisId: vm.data.hisId
				}, "json", "get", function() {
					reloading.close();
					dialog({
						contentType: 'tipsbox',
						bottom: true,
						skin: 'bk-popup',
						content: '请求失败'
					}).show();
				}, function(res) {
					reloading.close();
					if(res.status == 200) {
						if(res.data.code == 0) {
							window.location.href = "../../payment/html/repaymentResult.html?patientName=" + vm.data.name + "&healthNo=" + vm.data.cardNo + "&payAmount=" + vm.repayAmout + "&createDate=" + getNowFormatDate() + "&cardId=" + vm.cardId;
						} 
					} else {
						dialog({
							contentType: 'tipsbox',
							bottom: true,
							skin: 'bk-popup',
							content: res.msg || '数据查询失败'
						}).show();
					}
				})
			},
			//强制设定最多只能输入两位小数
			checkNumber:function(payMoney){
				var myreg=/^[0][0-9]{1}$/; 
@ -269,4 +312,23 @@ function judgeWxVersion(name){
		} 	
	 }
	 return ispass
} 
} 
function getNowFormatDate() {
	var date = new Date();
	var seperator1 = "-";
	var year = date.getFullYear();
	var month = date.getMonth() + 1;
	var strDate = date.getDate();
	if(month >= 1 && month <= 9) {
		month = "0" + month;
	}
	if(strDate >= 0 && strDate <= 9) {
		strDate = "0" + strDate;
	}
	var hour = date.getHours() < 10 ? "0" + date.getHours() : date.getHours();
	var minute = date.getMinutes() < 10 ? "0" + date.getMinutes() : date.getMinutes();
	var second = date.getSeconds() < 10 ? "0" + date.getSeconds() : date.getSeconds();
	var currentdate = year + seperator1 + month + seperator1 + strDate + "  " + hour + ":" + minute + ":" + second;
	return currentdate;
}

+ 25 - 10
html/payment/js/repayment.js

@ -66,7 +66,7 @@ var iscrollState = ''; //判断滑动方向
								vm.data = res.data[0]
							}
							vm.cardId = vm.data.id
							vm.hisId = vm.data.hisId							
							vm.hisId = vm.data.hisId
							vm.getrepayList()
						} else {
							dialog({
@ -100,7 +100,7 @@ var iscrollState = ''; //判断滑动方向
			waitPay: function() {
				var vm = this
				sendPost("/third/hy/paySettle/waitPay", {
					hisId:this.hisId   // "3c83266e-3fd4-4032-83f9-169d07145947"
					hisId: this.hisId // "3c83266e-3fd4-4032-83f9-169d07145947"
				}, "json", "get", function() {
					loading.close();
					dialog({
@ -114,7 +114,7 @@ var iscrollState = ''; //判断滑动方向
					if(res.status == 200) {
						if(res.data.code == 0) {
							vm.waitPayList = res.data.data
							vm.waitPayTotal = res.data.total
							vm.waitPayTotal = parseFloat(res.data.total).toFixed(2)
							vm.$nextTick(function() {
								vm.eventClick()
							})
@ -258,6 +258,18 @@ var iscrollState = ''; //判断滑动方向
				})
			},
			//门诊结算
			preToPay: function() {
				var vm = this
				dialog({
					content: "您的缴费金额为"+vm.waitPayTotal+"元,从就诊卡余额中扣除,是否继续?",
					okValue: '继续缴费',
					ok: function() {
						vm.toPay()
					},
					cancelValue: '再等一下',
					cancel: function() {}
				}).showModal()
			},
			toPay: function() {
				var vm = this
				sendPost("/third/hy/paySettle/outpSettle", {
@ -274,14 +286,17 @@ var iscrollState = ''; //判断滑动方向
					loading.close();
					if(res.status == 200) {
						if(res.data.code == 0) {
							window.location.href = "../../payment/html/repaymentResult.html?patientName=" + vm.data.name + "&healthNo=" + vm.data.cardNo + "&payAmount=" + vm.waitPayTotal + "&createDate=" + getNowFormatDate() + "&cardId=" + vm.data.id;
							window.location.href = "../../payment/html/repaymentResult.html?patientName=" + vm.data.name + "&healthNo=" + vm.data.cardNo + "&payAmount=" + vm.waitPayTotal + "&createDate=" + getNowFormatDate() + "&cardId=" + vm.cardId;
						} else {
							dialog({
								contentType: 'tipsbox',
								bottom: true,
								skin: 'bk-popup',
								content: res.data.message || '数据查询失败'
							}).show();
								content:"您的就诊卡余额不足,请充值。充值后自动完成未结账单缴费~",
								okValue: '去充值',
								ok: function() {
									window.location.href = '../../payment/html/payment.html?id=' + vm.cardId + '&paytype=1&repayAmout=' + vm.waitPayTotal;
								},
								cancelValue: '再等一下',
								cancel: function() {}
							}).showModal()
						}
					} else {
						dialog({
@ -346,6 +361,6 @@ function getNowFormatDate() {
	var hour = date.getHours() < 10 ? "0" + date.getHours() : date.getHours();
	var minute = date.getMinutes() < 10 ? "0" + date.getMinutes() : date.getMinutes();
	var second = date.getSeconds() < 10 ? "0" + date.getSeconds() : date.getSeconds();
	var currentdate = year + seperator1 + month + seperator1 + strDate+"  "+hour+":"+minute+":"+second;
	var currentdate = year + seperator1 + month + seperator1 + strDate + "  " + hour + ":" + minute + ":" + second;
	return currentdate;
}