|
@ -1,4 +1,5 @@
|
|
|
var Request = GetRequest();
|
|
|
var d = dialog({ contentType: 'load', skin: 'bk-popup' });
|
|
|
var checktype=false;
|
|
|
(function() {
|
|
|
myvue=new Vue({
|
|
@ -115,7 +116,7 @@ var checktype=false;
|
|
|
}
|
|
|
})
|
|
|
},
|
|
|
setCardInfo(){
|
|
|
setCardInfo:function(){
|
|
|
var vm = this
|
|
|
var data=vm.data
|
|
|
vm.cardNo=data.cardNo.substr(0,1)+"*************"+data.cardNo.substr(data.cardNo.length-4,4)
|
|
@ -137,6 +138,18 @@ var checktype=false;
|
|
|
},
|
|
|
gotoPay:function(id){
|
|
|
window.location.href='../../payment/html/patientIDCards-pay.html?id='+id;
|
|
|
},
|
|
|
synchronization:function(){ //维山专用,同步his电子健康卡
|
|
|
d.show();
|
|
|
sendPost("/third/hr/registerEle/archive/all", {}, "json", "get",function(){
|
|
|
}, function(res){
|
|
|
d.close();
|
|
|
if(res.status == 200){
|
|
|
dialog({contentType:'tipsbox',bottom:true, skin:'bk-popup' , content:res.msg}).show();
|
|
|
}else{
|
|
|
dialog({contentType:'tipsbox',bottom:true, skin:'bk-popup' , content:'数据同步失败'}).show();
|
|
|
}
|
|
|
})
|
|
|
},
|
|
|
//判断是否验证登录通过
|
|
|
checkType:function(){
|