Browse Source

无就诊卡跳转页面修改

chenyue 4 years ago
parent
commit
b4d1b5952e
2 changed files with 19 additions and 5 deletions
  1. 12 4
      html/payment/js/payment.js
  2. 7 1
      html/profile/html/jiancha.html

+ 12 - 4
html/payment/js/payment.js

@ -4,7 +4,10 @@ var loading = dialog({
	contentType: 'load',
	skin: 'bk-popup'
});
(function() {
var vmodel = null;
;(function() {
	new Vue({
		el: "#app",
		data: {
@ -23,14 +26,17 @@ var loading = dialog({
		},
		mounted: function() {
			var vm = this
			vmodel = vm
			
			loading.showModal();			
            if(Request.openid&&Request.openid!="undefined"&&Request.openid!="123456"){
                saveAgentOpenid(Request.openid);
            }
            
			checkUserAgent();
			vm.code=JSON.parse(localStorage.getItem("wlyyAgent")).uid
			
			vm.paytype=Request.paytype?Request.paytype:"1"
			vm.checkType()
//			vm.checkType()
			$(".c-ser-input").focus()
		},
		methods: {
@ -61,9 +67,9 @@ var loading = dialog({
			        		}else{
			        		    var t = setInterval(function(){
			        		        if(cardList.length==res.data.length){
			        		        	clearInterval(t)
			        		            loading.close();
                                        vm.comfireCardInfo(cardList)
                                        clearInterval(t)
                                    }
			        		    },200);
			        		}
@ -345,6 +351,8 @@ var loading = dialog({
function queryInit(){
	checktype=true
	vmodel.code=JSON.parse(localStorage.getItem("wlyyAgent")).uid
	vmodel.getData()
}
function getUrlParam(name){

+ 7 - 1
html/profile/html/jiancha.html

@ -28,7 +28,13 @@
					if(res.defaultCardNo) {
						location.replace("http://111.77.154.7:27009/Webapi/StudyList?queryid="+res.defaultCardNo)
					} else {
						dialog({contentType:'tipsbox',bottom:true, skin:'bk-popup' , content:'未绑定就诊卡!'}).show();
						dialog({
				            content: "请先绑定就诊卡,再查看检查报告信息!", 
				            okValue: '确定',
				            ok: function(){
				                window.location.href='../../payment/html/patientIDCards.html';
				            }
				        }).showModal()
					}
				});