import { AppLayoutService } from '../../../app-service'; import { WizardViewBase } from '../../../view/wizardview-base'; export class AppWizardViewBase extends WizardViewBase { /** * 实体树视图渲染 * * @memberof AppWizardViewBase */ render(h: any) { if (!this.viewIsLoaded) { return null; } const targetViewLayoutComponent: any = AppLayoutService.getLayoutComponent(`${this.viewInstance.viewType}-${this.viewInstance.viewStyle}`); return h( targetViewLayoutComponent, { props: { viewInstance: this.viewInstance, model: this.model, modelService: this.modelService, viewparams: this.viewparams, context: this.context }, }, [this.renderTopMessage(), this.renderBodyMessage(), this.renderMainContent(), this.renderBottomMessage()], ); } }