|
@ -9,6 +9,9 @@ var loading = dialog({
|
|
new Vue({
|
|
new Vue({
|
|
el: "#app",
|
|
el: "#app",
|
|
data: {
|
|
data: {
|
|
|
|
cardId:"", //当前cardid
|
|
|
|
isloading:true,
|
|
|
|
countTime:6,
|
|
result:{},
|
|
result:{},
|
|
successResult:{
|
|
successResult:{
|
|
status:"success-pay",
|
|
status:"success-pay",
|
|
@ -18,7 +21,7 @@ var loading = dialog({
|
|
},
|
|
},
|
|
synchronizationResult:{
|
|
synchronizationResult:{
|
|
status:"synchronization-pay",
|
|
status:"synchronization-pay",
|
|
msg:"系统繁忙,请重新充值缴费。",
|
|
|
|
|
|
msg:"很抱歉,结算系统繁忙,充值款仍在同步至就诊卡,无法自动完成结算。稍后您可以返回就诊卡查看到款进度,到款后再次发起结算缴费。",
|
|
Img:"../images/jiaofeishibai_icon.png",
|
|
Img:"../images/jiaofeishibai_icon.png",
|
|
txt:"缴费失败",
|
|
txt:"缴费失败",
|
|
},
|
|
},
|
|
@ -30,14 +33,91 @@ var loading = dialog({
|
|
},
|
|
},
|
|
healthType:["","账单结算缴费","住院缴费充值"],
|
|
healthType:["","账单结算缴费","住院缴费充值"],
|
|
initdata:{"patientName":"","healthNo":"","healthType":1,"payAmount":"","createDate":"",},
|
|
initdata:{"patientName":"","healthNo":"","healthType":1,"payAmount":"","createDate":"",},
|
|
data:{},
|
|
|
|
|
|
carddata:{},
|
|
},
|
|
},
|
|
mounted: function() {
|
|
mounted: function() {
|
|
var vm = this
|
|
var vm = this
|
|
checkUserAgent();
|
|
checkUserAgent();
|
|
vm.checkType()
|
|
vm.checkType()
|
|
|
|
vm.cardId=Request.cardId
|
|
},
|
|
},
|
|
methods: {
|
|
|
|
|
|
methods: {
|
|
|
|
getCardInfo:function(){
|
|
|
|
var vm=this
|
|
|
|
sendPost("patient/card/getCardInfo", {id:vm.cardId}, "json", "get",function(){
|
|
|
|
loading.close();
|
|
|
|
dialog({contentType:'tipsbox',bottom:true, skin:'bk-popup' , content:'请求失败'}).show();
|
|
|
|
}, function(res){
|
|
|
|
loading.close();
|
|
|
|
if(res.status == 200){
|
|
|
|
vm.carddata=res.data
|
|
|
|
if(parseFloat(Request.payAmount)<=vm.carddata.cardMoney){
|
|
|
|
// vm.countTime=0
|
|
|
|
vm.isloading=false
|
|
|
|
vm.data=vm.initdata
|
|
|
|
vm.torePay()
|
|
|
|
}else{
|
|
|
|
// vm.showTime()
|
|
|
|
//每秒执行一次,showTime()
|
|
|
|
setTimeout(function(){
|
|
|
|
vm.showTime()
|
|
|
|
},1000);
|
|
|
|
}
|
|
|
|
}else{
|
|
|
|
dialog({contentType:'tipsbox',bottom:true, skin:'bk-popup' , content:'数据获取失败'}).show();
|
|
|
|
}
|
|
|
|
})
|
|
|
|
},
|
|
|
|
showTime:function(){
|
|
|
|
var vm=this
|
|
|
|
vm.countTime -= 1;
|
|
|
|
if(vm.countTime<=0){
|
|
|
|
vm.isloading=false
|
|
|
|
vm.getData()
|
|
|
|
vm.result=vm.synchronizationResult
|
|
|
|
}else{
|
|
|
|
vm.getCardInfo()
|
|
|
|
}
|
|
|
|
},
|
|
|
|
//缴费结算
|
|
|
|
torePay: function() {
|
|
|
|
var vm = this
|
|
|
|
var reloading = dialog({
|
|
|
|
contentType: 'load',
|
|
|
|
skin: 'bk-popup',
|
|
|
|
content:'缴费结算中...'
|
|
|
|
});
|
|
|
|
reloading.showModal();
|
|
|
|
sendPost("/third/hy/paySettle/outpSettle", {
|
|
|
|
hisId: vm.carddata.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) {
|
|
|
|
vm.getData()
|
|
|
|
}else{
|
|
|
|
vm.getData()
|
|
|
|
vm.result=vm.synchronizationResult
|
|
|
|
vm.result.msg=res.data.message
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
dialog({
|
|
|
|
contentType: 'tipsbox',
|
|
|
|
bottom: true,
|
|
|
|
skin: 'bk-popup',
|
|
|
|
content: res.msg || '数据查询失败'
|
|
|
|
}).show();
|
|
|
|
}
|
|
|
|
})
|
|
|
|
},
|
|
//获取数据
|
|
//获取数据
|
|
getData:function(){
|
|
getData:function(){
|
|
var vm=this
|
|
var vm=this
|
|
@ -45,15 +125,18 @@ var loading = dialog({
|
|
vm.data={"patientName":getQueryString('patientName'),"healthNo":Request.healthNo,"payAmount":Request.payAmount,"createDate":getQueryString('createDate'),"healthType":1,}
|
|
vm.data={"patientName":getQueryString('patientName'),"healthNo":Request.healthNo,"payAmount":Request.payAmount,"createDate":getQueryString('createDate'),"healthType":1,}
|
|
},
|
|
},
|
|
backClick:function(){
|
|
backClick:function(){
|
|
window.location.href='../../payment/html/repayment.html?id='+Request.cardId;
|
|
|
|
},
|
|
|
|
|
|
window.location.href='../../payment/html/paymentList.html?id='+Request.cardId; //缴费查询页面
|
|
|
|
},//就诊卡页面
|
|
|
|
gotoPatientIDCard:function(){
|
|
|
|
window.location.href='../../payment/html/patientIDCards.html';
|
|
|
|
},
|
|
//判断是否验证登录通过
|
|
//判断是否验证登录通过
|
|
checkType:function(){
|
|
checkType:function(){
|
|
var vm=this
|
|
var vm=this
|
|
var timer = setInterval(function(){
|
|
var timer = setInterval(function(){
|
|
if(checktype){
|
|
if(checktype){
|
|
clearInterval(timer);
|
|
clearInterval(timer);
|
|
vm.getData()
|
|
|
|
|
|
vm.getCardInfo()
|
|
}
|
|
}
|
|
},10);
|
|
},10);
|
|
},
|
|
},
|