|
我用shell方法调用,手机上会显示网址,就是一般网站那样,而且其他页面跳转方法里只能 justep.Shell.showPage("$UI/hy/txl_app/main.w");而不能justep.Shell.showPage("main_index"),下面是define(function(require){
var $ = require("jquery");
var justep = require("$UI/system/lib/justep");
var ShellImpl = require('$UI/system/lib/portal/shellImpl');
//require("$UI/demo/tuniu/appVersionChecker");
var Model = function(){
this.callParent();
var shellImpl = new ShellImpl(this, {
"contentsXid" : "pages",
"pageMappings" : {
"login":{
url : '$UI/hy/txl_app/login.w'
},
"main_index":{
url : '$UI/hy/txl_app/main.w'
},
"userlist":{
url : '$UI/hy/txl_app/userlist.w'
},
"user":{
url:"$UI/hy/txl_app/user.w"
},
"xgmm":{
url:"$UI/hy/txl_app/xgmm.w"
}
}
});
};
Model.prototype.modelLoad = function(event){
justep.Shell.showPage("login");
};
return Model;
});
|
|