|
@ -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;
|
|
|
}
|