提交 fe9f82f1 编写于 作者: KK's avatar KK

计数器服务基类

上级 d20258a3
import { Store } from 'vuex';
import {EntityService} from '@/ibiz-core';
/** /**
* 计数器服务基类 * 计数器服务基类
* *
...@@ -6,6 +8,60 @@ ...@@ -6,6 +8,60 @@
*/ */
export class CounterService { export class CounterService {
/**
* Vue 状态管理器
*
* @private
* @type {(any | null)}
* @memberof CounterService
*/
private $store: Store<any> | null = null;
/**
* 当前计数器数据
*
* @protected
* @type {*}
* @memberof CounterService
*/
protected counterData:any ={};
/**
* 应用实体数据服务
*
* @protected
* @type {EntityService}
* @memberof CounterService
*/
protected appEntityService:EntityService = new EntityService();
/**
* 当前计数器导航上下文
*
* @protected
* @type {*}
* @memberof CounterService
*/
protected context:any ={};
/**
* 当前计数器导航参数
*
* @protected
* @type {*}
* @memberof CounterService
*/
protected viewparams:any ={};
/**
* 当前计数器定时器对象
*
* @protected
* @type {*}
* @memberof CounterService
*/
protected timer:any;
/** /**
* Creates an instance of CounterService. * Creates an instance of CounterService.
* *
...@@ -13,7 +69,19 @@ export class CounterService { ...@@ -13,7 +69,19 @@ export class CounterService {
* @memberof CounterService * @memberof CounterService
*/ */
constructor(opts: any = {}) { constructor(opts: any = {}) {
this.$store = opts.$store;
this.context = opts.context?opts.context:{};
this.viewparams = opts.viewparams?opts.viewparams:{};
}
/**
* 获取状态管理器
*
* @returns {(any | null)}
* @memberof CounterService
*/
public getStore(): Store<any> | null {
return this.$store;
} }
/** /**
...@@ -28,5 +96,13 @@ export class CounterService { ...@@ -28,5 +96,13 @@ export class CounterService {
return window.counterServiceConstructor.getService(name); return window.counterServiceConstructor.getService(name);
} }
/**
* 销毁计数器
*
* @memberof ActionCounterCounterServiceBase
*/
public destroyCounter(){
if(this.timer) clearInterval(this.timer);
}
} }
\ No newline at end of file
Markdown 格式
0% or
您添加了 0 到此讨论。请谨慎行事。
先完成此消息的编辑!
想要评论请 注册