ソースを参照

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

赖骏劼 4 年 前
コミット
a6e8e8eba4
共有1 個のファイルを変更した3 個の追加1 個の削除を含む
  1. 3 1
      show-server/src/main/webapp/biz/js/plugins/pageHandler/pageHandler.js

+ 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