Преглед на файлове

@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