提交 2e27d86b 编写于 作者: JunZai's avatar JunZai

解决关系页第一次进入不加载问题

上级 b1ad8ff9
...@@ -370,7 +370,7 @@ export default class AppFormDRUIPart extends Vue { ...@@ -370,7 +370,7 @@ export default class AppFormDRUIPart extends Vue {
} }
} }
}); });
this.refreshDRUIPart(); // this.refreshDRUIPart();
} }
/** /**
......
...@@ -17,10 +17,10 @@ export default class DataView9Engine extends DataViewEngine { ...@@ -17,10 +17,10 @@ export default class DataView9Engine extends DataViewEngine {
*/ */
public load(opts: any = {},isnotify:boolean=false): void { public load(opts: any = {},isnotify:boolean=false): void {
if(!this.view.isformDruipart){ if(!this.view.isformDruipart){
super.load(opts); super.load(opts, isnotify);
}else{ }else{
if(isnotify){ if(isnotify){
super.load(opts); super.load(opts, isnotify);
} }
} }
} }
......
...@@ -45,10 +45,10 @@ export default class GridViewEngine extends MDViewEngine { ...@@ -45,10 +45,10 @@ export default class GridViewEngine extends MDViewEngine {
*/ */
public load(opts: any = {},isnotify:boolean=false): void { public load(opts: any = {},isnotify:boolean=false): void {
if(!this.view.isformDruipart){ if(!this.view.isformDruipart){
super.load(opts); super.load(opts, isnotify);
}else{ }else{
if(isnotify){ if(isnotify){
super.load(opts); super.load(opts, isnotify);
} }
} }
} }
......
...@@ -17,10 +17,10 @@ export default class ListView9Engine extends ListViewEngine { ...@@ -17,10 +17,10 @@ export default class ListView9Engine extends ListViewEngine {
*/ */
public load(opts: any = {},isnotify:boolean=false): void { public load(opts: any = {},isnotify:boolean=false): void {
if(!this.view.isformDruipart){ if(!this.view.isformDruipart){
super.load(opts); super.load(opts, isnotify);
}else{ }else{
if(isnotify){ if(isnotify){
super.load(opts); super.load(opts, isnotify);
} }
} }
......
...@@ -78,12 +78,12 @@ export default class MDViewEngine extends ViewEngine { ...@@ -78,12 +78,12 @@ export default class MDViewEngine extends ViewEngine {
* @param {*} [opts={}] * @param {*} [opts={}]
* @memberof MDViewEngine * @memberof MDViewEngine
*/ */
public load(opts: any = {}): void { public load(opts: any = {}, isnotify: boolean=false): void {
super.load(opts); super.load(opts);
if (this.getSearchForm()) { if (this.getSearchForm() && (this.isLoadDefault || isnotify)) {
const tag = this.getSearchForm().name; const tag = this.getSearchForm().name;
this.setViewState2({ tag: tag, action: 'loaddraft', viewdata: this.view.viewparams }); this.setViewState2({ tag: tag, action: 'loaddraft', viewdata: this.view.viewparams });
} else if (this.getMDCtrl() && this.isLoadDefault) { } else if (this.getMDCtrl() && (this.isLoadDefault || isnotify)) {
const tag = this.getMDCtrl().name; const tag = this.getMDCtrl().name;
this.setViewState2({ tag: tag, action: 'load', viewdata: Object.assign(this.view.viewparams,opts) }); this.setViewState2({ tag: tag, action: 'load', viewdata: Object.assign(this.view.viewparams,opts) });
} else { } else {
......
...@@ -29,10 +29,10 @@ export default class WFDynaExpGridViewEngine extends GridViewEngine { ...@@ -29,10 +29,10 @@ export default class WFDynaExpGridViewEngine extends GridViewEngine {
return; return;
} }
if(!this.view.isformDruipart){ if(!this.view.isformDruipart){
super.load(opts); super.load(opts, isnotify);
}else{ }else{
if(isnotify){ if(isnotify){
super.load(opts); super.load(opts, isnotify);
} }
} }
}) })
......
Markdown 格式
0% or
您添加了 0 到此讨论。请谨慎行事。
先完成此消息的编辑!
想要评论请 注册