Explorar el Código

@laijj@页面参数回调时候补充非空判断,进行容错处理

赖骏劼 %!s(int64=4) %!d(string=hace) años
padre
commit
a6e8e8eba4

+ 3 - 1
show-server/src/main/webapp/biz/js/plugins/pageHandler/pageHandler.js

@ -102,7 +102,9 @@ require([ "ipuMobile", "mobile", "jcl" ], function(IpuMobile, Mobile, $) {
102 102
		});
103 103
104 104
		Mobile.setBackCallListener(function(e) {
105
			alert(e);
105
			if(e){
106
				alert(e);
107
			}
106 108
		});
107 109
	});
108 110