import { MEditViewBase } from '../../../view/meditview-base'; import { CreateElement } from 'vue'; import { AppLayoutService } from '../../../app-service/common-service/app-layout-service'; /** * 应用多表单编辑视图基类 * * @export * @class AppMEditViewBase * @extends {MEditViewBase} */ export class AppMEditViewBase extends MEditViewBase { /** * 编辑视图渲染 * * @memberof AppMEditViewBase */ render(h: CreateElement) { 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.renderToolBar(), this.renderMainContent(), this.renderBottomMessage()], ); } }