Skip to content
项目
群组
代码片段
帮助
正在加载...
帮助
提交反馈
为 GitLab 提交贡献
登录
切换导航
I
ibizlab-generator
项目
项目
详情
动态
版本
周期分析
仓库
仓库
文件
提交
分支
标签
贡献者
分支图
比较
统计图
议题
0
议题
0
列表
看板
标记
里程碑
合并请求
0
合并请求
0
CI / CD
CI / CD
流水线
作业
计划
统计图
Wiki
Wiki
代码片段
代码片段
成员
成员
收起侧边栏
关闭侧边栏
动态
分支图
统计图
创建新议题
作业
提交
议题看板
打开侧边栏
ibiz4jteam
ibizlab-generator
提交
175fab60
提交
175fab60
编写于
3月 24, 2022
作者:
Mosher
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
update:更新
上级
9cf7c3fd
变更
3
显示空白字符变更
内嵌
并排
正在显示
3 个修改的文件
包含
55 行增加
和
4 行删除
+55
-4
i-app-counter-service.ts
...pps}}/src/core/interface/service/i-app-counter-service.ts
+8
-0
tab-exp-panel-control.ts
...es/widgets/tab-exp-panel-control/tab-exp-panel-control.ts
+45
-1
app-counter-service.ts
.../templ/r7/app_{{apps}}/src/service/app-counter-service.ts
+2
-3
未找到文件。
modules/ibizlab-generator-core/src/main/resources/templ/r7/app_{{apps}}/src/core/interface/service/i-app-counter-service.ts
浏览文件 @
175fab60
...
@@ -5,6 +5,14 @@
...
@@ -5,6 +5,14 @@
*/
*/
export
interface
IAppCounterService
{
export
interface
IAppCounterService
{
/**
* 计数器唯一标识
*
* @type {string}
* @memberof IAppCounterService
*/
id
:
string
;
/**
/**
* 计数器数据
* 计数器数据
*
*
...
...
modules/ibizlab-generator-core/src/main/resources/templ/r7/app_{{apps}}/src/core/modules/widgets/tab-exp-panel-control/tab-exp-panel-control.ts
浏览文件 @
175fab60
import
{
MainControl
,
TabExpPanelControlState
,
TabExpPanelControlProps
}
from
'@core'
;
import
{
MainControl
,
TabExpPanelControlState
,
TabExpPanelControlProps
,
IParam
}
from
'@core'
;
import
{
IAppCounterService
}
from
'@core/interface'
;
/**
/**
* @description 分页导航部件
* @description 分页导航部件
...
@@ -32,6 +33,49 @@ export class TabExpPanelControl extends MainControl {
...
@@ -32,6 +33,49 @@ export class TabExpPanelControl extends MainControl {
this
.
state
.
activePanel
=
this
.
props
.
defaultActivePanel
;
this
.
state
.
activePanel
=
this
.
props
.
defaultActivePanel
;
}
}
/**
* 使用计数器模块
*
* @return {*}
* @memberof TabExpPanelControl
*/
public
useCounterService
()
{
const
{
appCounterRefs
,
context
,
viewParams
}
=
this
.
state
;
const
{
counterService
}
=
toRefs
(
this
.
state
);
if
(
appCounterRefs
&&
appCounterRefs
.
length
)
{
counterService
.
value
=
[];
appCounterRefs
.
forEach
((
counterRef
:
IParam
)
=>
{
const
_counterService
=
App
.
getCounterService
(
counterRef
,
context
,
viewParams
);
_counterService
.
execute
().
then
(()
=>
{
counterService
.
value
.
push
(
_counterService
);
});
});
}
onUnmounted
(()
=>
{
if
(
counterService
&&
counterService
.
value
&&
counterService
.
value
.
length
)
{
counterService
.
value
.
forEach
((
service
:
IAppCounterService
)
=>
{
service
.
destory
();
});
}
});
// 获取计数器数据
const
getCounterData
=
(
counterId
:
string
,
viewPanelCounterName
?:
string
,
):
number
=>
{
if
(
viewPanelCounterName
)
{
const
viewPanelCounter
=
this
.
state
[
viewPanelCounterName
];
if
(
!
viewPanelCounter
)
{
return
0
;
}
const
service
:
IAppCounterService
=
counterService
.
value
.
find
((
_service
:
IAppCounterService
)
=>
_service
.
id
===
viewPanelCounter
.
id
);
if
(
service
&&
service
.
data
&&
service
.
data
[
viewPanelCounter
.
counterId
])
{
return
service
.
data
[
counterId
];
}
}
return
0
;
}
return
getCounterData
;
}
/**
/**
* @description 安装部件所有功能模块的方法
* @description 安装部件所有功能模块的方法
* @param {TabExpPanelControlProps} props
* @param {TabExpPanelControlProps} props
...
...
modules/ibizlab-generator-core/src/main/resources/templ/r7/app_{{apps}}/src/service/app-counter-service.ts
浏览文件 @
175fab60
...
@@ -34,11 +34,10 @@ export class AppCounterService implements IAppCounterService {
...
@@ -34,11 +34,10 @@ export class AppCounterService implements IAppCounterService {
/**
/**
* @description 计数器唯一标识
* @description 计数器唯一标识
* @private
* @type {string}
* @type {string}
* @memberof AppCounterService
* @memberof AppCounterService
*/
*/
p
rivate
counterI
d
:
string
=
''
;
p
ublic
i
d
:
string
=
''
;
/**
/**
* @description 计数器实体标识
* @description 计数器实体标识
...
@@ -84,7 +83,7 @@ export class AppCounterService implements IAppCounterService {
...
@@ -84,7 +83,7 @@ export class AppCounterService implements IAppCounterService {
this
.
delayTime
=
counterRef
.
timer
;
this
.
delayTime
=
counterRef
.
timer
;
this
.
getAction
=
counterRef
.
getAction
;
this
.
getAction
=
counterRef
.
getAction
;
this
.
deCodeName
=
counterRef
.
deCodeName
;
this
.
deCodeName
=
counterRef
.
deCodeName
;
this
.
counterI
d
=
counterRef
.
id
;
this
.
i
d
=
counterRef
.
id
;
}
}
/**
/**
...
...
编辑
预览
Markdown
格式
0%
请重试
or
添加新附件
添加附件
取消
您添加了
0
人
到此讨论。请谨慎行事。
先完成此消息的编辑!
取消
想要评论请
注册
或
登录