提交 7ad130d0 编写于 作者: ibizdev's avatar ibizdev

chitanda 发布系统代码

上级 8b217617
......@@ -4,17 +4,17 @@ import ViewEngine from './view-engine';
* 快速摘要栏引擎
*
* @export
* @class QuickSummaryEngine
* @class DataPanelEngine
* @extends {ViewEngine}
*/
export class QuickSummaryEngine extends ViewEngine {
export default class DataPanelEngine extends ViewEngine {
/**
* 快捷信息栏部件
*
* @protected
* @type {*}
* @memberof QuickSummaryEngine
* @memberof DataPanelEngine
*/
protected quickSummary: any = null;
......@@ -23,7 +23,7 @@ export class QuickSummaryEngine extends ViewEngine {
*
* @protected
* @type {*}
* @memberof QuickSummaryEngine
* @memberof DataPanelEngine
*/
protected form: any = null;
......@@ -33,7 +33,7 @@ export class QuickSummaryEngine extends ViewEngine {
* @readonly
* @protected
* @type {*}
* @memberof QuickSummaryEngine
* @memberof DataPanelEngine
*/
protected get context(): any {
return this.view?.context || {};
......@@ -43,7 +43,7 @@ export class QuickSummaryEngine extends ViewEngine {
* 引擎初始化
*
* @param {*} [opt={}]
* @memberof QuickSummaryEngine
* @memberof DataPanelEngine
*/
public init(opt: any = {}): void {
super.init(opt);
......@@ -58,7 +58,7 @@ export class QuickSummaryEngine extends ViewEngine {
/**
* 向快捷信息栏部件填充数据
*
* @memberof QuickSummaryEngine
* @memberof DataPanelEngine
*/
public setData(): void {
const data = this.view.$appService.contextStore.getContextData(this.context, this.view.appDeName);
......
Markdown 格式
0% or
您添加了 0 到此讨论。请谨慎行事。
先完成此消息的编辑!
想要评论请 注册