|
@ -34,24 +34,12 @@ var loading = dialog({
|
|
|
healthType:["","账单结算缴费","住院缴费充值"],
|
|
|
initdata:{"patientName":"","healthNo":"","healthType":1,"payAmount":"","createDate":"",},
|
|
|
carddata:{},
|
|
|
queryList:{
|
|
|
month:"",
|
|
|
healthNo:Request.healthNo,
|
|
|
chargeType:"1", //1:门诊,2:住院,
|
|
|
pageNo:1,
|
|
|
pageSize:10,
|
|
|
},
|
|
|
},
|
|
|
mounted: function() {
|
|
|
var vm = this
|
|
|
checkUserAgent();
|
|
|
vm.checkType()
|
|
|
vm.cardId=Request.cardId
|
|
|
var month=new Date().getMonth()+1
|
|
|
if(month<=9){
|
|
|
month="0"+month
|
|
|
}
|
|
|
vm.queryList.month=new Date().getFullYear()+"-"+month
|
|
|
},
|
|
|
methods: {
|
|
|
getCardInfo:function(){
|
|
@ -62,25 +50,21 @@ var loading = dialog({
|
|
|
}, function(res){
|
|
|
loading.close();
|
|
|
if(res.status == 200){
|
|
|
vm.carddata=res.data
|
|
|
// if(parseFloat(Request.payAmount)<=vm.carddata.cardMoney){
|
|
|
// }else{
|
|
|
// }
|
|
|
vm.carddata=res.data
|
|
|
}else{
|
|
|
dialog({contentType:'tipsbox',bottom:true, skin:'bk-popup' , content:'数据获取失败'}).show();
|
|
|
}
|
|
|
})
|
|
|
},
|
|
|
//获取列表数据(用于判断是否同步,是否可进行缴费结算)
|
|
|
//用于判断订单是否同步,是否可进行缴费结算
|
|
|
getList:function(){
|
|
|
var vm=this
|
|
|
sendPost("third/hy/pay/gerPayOrderList", vm.queryList, "json", "get",function(){
|
|
|
sendPost("/third/hy/pay/getHyPaySeqNo", {wxSeqNo: Request.seqNo}, "json", "get",function(){
|
|
|
loading.close();
|
|
|
dialog({contentType:'tipsbox',bottom:true, skin:'bk-popup' , content:'请求失败'}).show();
|
|
|
}, function(res){
|
|
|
if(res.status == 200){
|
|
|
var thisOrder=_.where(res.data, {seqNo: Request.seqNo})
|
|
|
if(thisOrder[0]&&thisOrder[0].hyStatus==1){ //该缴费记录且同步成功
|
|
|
if(res.data){ //同步成功,可以进行支付
|
|
|
if(vm.carddata.hisId){
|
|
|
vm.isloading=false
|
|
|
vm.data=vm.initdata
|
|
@ -171,9 +155,12 @@ var loading = dialog({
|
|
|
},
|
|
|
//获取数据
|
|
|
getData:function(){
|
|
|
var vm=this
|
|
|
var vm=this,healthNo=""
|
|
|
if(Request.healthNo.length>13){
|
|
|
healthNo=healthNo.substr(0,1)+"*************"+healthNo.substr(healthNo.length-4,4)
|
|
|
}
|
|
|
vm.result=vm.successResult
|
|
|
vm.data={"patientName":getQueryString('patientName'),"healthNo":Request.healthNo,"payAmount":Request.payAmount,"createDate":getQueryString('createDate'),"healthType":1,}
|
|
|
vm.data={"patientName":getQueryString('patientName'),"healthNo":healthNo,"payAmount":Request.payAmount,"createDate":getQueryString('createDate'),"healthType":1,}
|
|
|
},
|
|
|
backClick:function(){
|
|
|
window.location.href='../../payment/html/paymentList.html?id='+Request.cardId; //充值查询页面
|
|
@ -191,8 +178,13 @@ var loading = dialog({
|
|
|
var timer = setInterval(function(){
|
|
|
if(checktype){
|
|
|
clearInterval(timer);
|
|
|
vm.getCardInfo()
|
|
|
vm.getList()
|
|
|
if(Request.seqNo){ //从微信支付页进入
|
|
|
vm.getCardInfo()
|
|
|
vm.getList()
|
|
|
}else{
|
|
|
vm.isloading=false
|
|
|
vm.getData()
|
|
|
}
|
|
|
}
|
|
|
},10);
|
|
|
},
|