Browse Source

Merge branch 'master' of http://10.1.235.20:3000/ipu/ipu-guide

leijie 4 years ago
parent
commit
6608dce744
1 changed files with 2 additions and 2 deletions
  1. 2 2
      show-server/src/main/webapp/ipu/frame/mobile/mobile-browser.js

+ 2 - 2
show-server/src/main/webapp/ipu/frame/mobile/mobile-browser.js

@ -63,11 +63,11 @@ define(["ipuUI","browserTool","jcl"],function(ipuUI, browserTool,Wade) {
63 63
			if (param) {
64 64
				params = {data:param,isContext:true};
65 65
			}
66
			uiPage.post(url,{params : params});
66
			uiPage.post(url,{params : params, pageName: pageName});
67 67
			/*//为了适应微信,postPage方法也不适用
68 68
			browserTool.redirect.postPage(url, params);*/
69 69
		};
70
		this.loadTemplate = function(pageAction, param, err){
70
		this.loadTemplate = function(pageName, param, err){
71 71
			var url = browserTool.ServerPath;
72 72
			url += "?action=" + pageName;
73 73
			var params;