|
发表于 2017-7-6 16:32:04
|
显示全部楼层
你要在打开功能的时候传选择的岗位信息
- Model.prototype.selectExecutorDialogReceive = function(event){
- this.showPageByExecutor(this._executor_pageKey_,event.data);
- };
-
- Model.prototype.showPageByExecutor = function(pageKey,executor) {
- var pageParam = this.shellImpl.pageMappings[pageKey];
- var title = this._getTitle(pageParam);
- var cfg = {title:title,process:pageParam.process,activity:pageParam.activity,url:pageParam.url};
- if(executor) cfg.executor = executor;
- return this.showPage(cfg);
- };
复制代码
不能在登录后自己修改再去修改上下文中的信息 |
|