import { CreateElement } from 'vue'; import { DeReportViewBase } from '../../../view/dereportview-base'; import { AppLayoutService } from '../../../app-service/common-service/app-layout-service'; /** * 应用实体报表视图基类 * * @export * @class AppDeReportViewBase * @extends {DeReportViewBase} */ export class AppDeReportViewBase extends DeReportViewBase { /** * 渲染视图主体内容区 * * @memberof DeReportViewBase */ renderMainContent() { let { targetCtrlName, targetCtrlParam, targetCtrlEvent }: { targetCtrlName: string; targetCtrlParam: any; targetCtrlEvent: any } = this.computeTargetCtrlData(this.reportPanelInstance); return this.$createElement(targetCtrlName, { props: targetCtrlParam, ref: this.reportPanelInstance?.name, on: targetCtrlEvent }); } /** * 实体报表视图渲染 * * @memberof AppDeReportViewBase */ 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.renderToolBar(), this.renderQuickGroup(), this.renderQuickSearch(), this.renderQuickSearchForm(), this.renderSearchBar(), this.renderBodyMessage(), this.renderMainContent(), this.renderBottomMessage(), ], ); } }