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

chitanda 发布系统代码

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