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

解决导出报错

上级 20de8d9e
...@@ -6,7 +6,7 @@ import { Store } from 'vuex'; ...@@ -6,7 +6,7 @@ import { Store } from 'vuex';
* @export * @export
* @class CounterService * @class CounterService
*/ */
export default class CounterService { export class CounterService {
/** /**
* Vue 状态管理器 * Vue 状态管理器
......
// 导出实体服务类 // 导出实体服务类
export { DBService } from './service/db-service'; export { DBService } from './service/db-service';
export { EntityLogicBase } from './service/entity-logic-base'; export { EntityLogicBase } from './service/entity-logic-base';
export { EntityServiceBase } from './service/entity-service-base'; export { EntityService } from './service/entity-service-base';
export { IndexedDBService } from './service/indexeddb-service'; export { IndexedDBService } from './service/indexeddb-service';
// 导出部件服务 // 导出部件服务
export { ControlServiceBase } from './control-service/control-service-base'; export { ControlServiceBase } from './control-service/control-service-base';
...@@ -32,7 +32,7 @@ export { WFUIActionBase } from './wf-ui-service/wf-ui-action-base'; ...@@ -32,7 +32,7 @@ export { WFUIActionBase } from './wf-ui-service/wf-ui-action-base';
// 导出代码表服务基类 // 导出代码表服务基类
export { CodeListBase } from './code-list/code-list-base'; export { CodeListBase } from './code-list/code-list-base';
// 导出计数器服务基类 // 导出计数器服务基类
export { CounterServiceBase } from './counter/counter-service-base'; export { CounterService } from './counter/counter-service-base';
// 导出第三方服务 // 导出第三方服务
export { ThirdPartyService } from './third-party-service/ThirdPartyService'; export { ThirdPartyService } from './third-party-service/ThirdPartyService';
// 导入服务 // 导入服务
......
...@@ -8,7 +8,7 @@ import CodeListService from "@/ibiz-core/service/code-list-base"; ...@@ -8,7 +8,7 @@ import CodeListService from "@/ibiz-core/service/code-list-base";
* @export * @export
* @class EntityService * @class EntityService
*/ */
export default class EntityService { export class EntityService {
/** /**
* Vue 状态管理器 * Vue 状态管理器
......
Markdown 格式
0% or
您添加了 0 到此讨论。请谨慎行事。
先完成此消息的编辑!
想要评论请 注册