Skip to content
项目
群组
代码片段
帮助
正在加载...
帮助
提交反馈
为 GitLab 提交贡献
登录
切换导航
I
ibizlab-generator
项目
项目
详情
动态
版本
周期分析
仓库
仓库
文件
提交
分支
标签
贡献者
分支图
比较
统计图
议题
0
议题
0
列表
看板
标记
里程碑
合并请求
0
合并请求
0
CI / CD
CI / CD
流水线
作业
计划
统计图
Wiki
Wiki
代码片段
代码片段
成员
成员
收起侧边栏
关闭侧边栏
动态
分支图
统计图
创建新议题
作业
提交
议题看板
打开侧边栏
ibiz4jteam
ibizlab-generator
提交
3b328b69
提交
3b328b69
编写于
3月 25, 2022
作者:
邱定凯
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
update: 更新表格部件批操作列点击事件
上级
6a982f62
变更
3
显示空白字符变更
内嵌
并排
正在显示
3 个修改的文件
包含
36 行增加
和
33 行删除
+36
-33
grid-control.ts
...s}}/src/core/modules/widgets/grid-control/grid-control.ts
+4
-30
md-control.ts
...{apps}}/src/core/modules/widgets/md-control/md-control.ts
+30
-1
{{ctrls@GRID}}-grid.vue.hbs
...ntities}}/{{ctrls@GRID}}-grid/{{ctrls@GRID}}-grid.vue.hbs
+2
-2
未找到文件。
modules/ibizlab-generator-core/src/main/resources/templ/r7/app_{{apps}}/src/core/modules/widgets/grid-control/grid-control.ts
浏览文件 @
3b328b69
...
...
@@ -87,6 +87,7 @@ export class GridControl extends MDControl {
selectedRowKeys
:
this
.
state
.
selectedRowKeys
,
checkStrictly
:
false
,
onSelect
:
(
record
:
IParam
,
selected
:
boolean
,
selectedRows
:
IParam
[],
$event
:
any
)
=>
{
const
{
selections
}
=
toRefs
(
this
.
state
);
if
(
selected
)
{
const
{
appDeKeyFieldName
}
=
this
.
state
;
const
selectedRowKey
:
string
=
record
[
appDeKeyFieldName
]
||
record
.
srfkey
;
...
...
@@ -94,6 +95,9 @@ export class GridControl extends MDControl {
if
(
Object
.
is
(
index
,
-
1
)
&&
record
.
children
&&
record
.
children
.
length
>
0
)
{
useExpandedRowKeys
.
value
.
push
(
selectedRowKey
);
}
selections
.
value
.
push
(
selectedRows
);
this
.
emit
(
"ctrlEvent"
,
{
tag
:
this
.
props
.
name
,
action
:
"selectionChange"
,
data
:
selection
})
}
},
onChange
:
(
_selectedRowKeys
:
string
[],
selectedRows
:
any
[])
=>
{
...
...
@@ -273,35 +277,6 @@ export class GridControl extends MDControl {
}
}
/**
* @description 操作列事件触发
* @param {IActionParam} actionParam
* @param {IParam} record
* @memberof GridControl
*/
public
onToolbarEvent
(
actionParam
:
IActionParam
)
{
const
{
data
}
=
actionParam
;
if
(
!
data
)
{
console
.
warn
(
"工具栏执行参数不足"
);
return
;
}
const
{
uIAction
}
=
data
;
if
(
!
uIAction
)
{
console
.
warn
(
"工具栏执行参数不足"
);
return
;
}
// 准备参数
const
inputParam
=
{
context
:
this
.
state
.
context
,
viewParams
:
this
.
state
.
viewParams
,
data
:
this
.
getData
(),
event
:
data
.
event
,
actionEnvironment
:
this
};
// 执行行为
App
.
getAppActionService
().
execute
(
uIAction
,
inputParam
);
}
/**
* @description 处理表格行事件(操作列,界面行为)
* @param {IActionParam} actionParam 行为参数
...
...
@@ -819,7 +794,6 @@ export class GridControl extends MDControl {
...
superParams
,
useCustom
:
this
.
useCustom
(),
onEditorEvent
:
this
.
onEditorEvent
.
bind
(
this
),
onToolbarEvent
:
this
.
onToolbarEvent
.
bind
(
this
),
onActionColEvent
:
this
.
onActionColEvent
.
bind
(
this
)
};
}
...
...
modules/ibizlab-generator-core/src/main/resources/templ/r7/app_{{apps}}/src/core/modules/widgets/md-control/md-control.ts
浏览文件 @
3b328b69
...
...
@@ -679,6 +679,34 @@ export class MDControl extends MainControl {
}
}
/**
* @description 操作列事件触发
* @param {IActionParam} actionParam
* @param {IParam} record
* @memberof MdControl
*/
public
onToolbarEvent
(
actionParam
:
IActionParam
)
{
const
{
data
}
=
actionParam
;
if
(
!
data
)
{
console
.
warn
(
"工具栏执行参数不足"
);
return
;
}
const
{
uIAction
}
=
data
;
if
(
!
uIAction
)
{
console
.
warn
(
"工具栏执行参数不足"
);
return
;
}
// 准备参数
const
inputParam
=
{
context
:
this
.
state
.
context
,
viewParams
:
this
.
state
.
viewParams
,
data
:
this
.
getData
(),
event
:
data
.
event
,
actionEnvironment
:
this
};
// 执行行为
App
.
getAppActionService
().
execute
(
uIAction
,
inputParam
);
}
/**
* @description 安装部件所有功能模块的方法
* @return {*}
...
...
@@ -693,7 +721,8 @@ export class MDControl extends MainControl {
remove
:
this
.
useRemove
(),
newRow
:
this
.
useNewRow
(),
refresh
:
this
.
useRefresh
(),
exportExcel
:
this
.
useExportExcel
()
exportExcel
:
this
.
useExportExcel
(),
onToolbarEvent
:
this
.
onToolbarEvent
.
bind
(
this
)
};
}
}
modules/ibizlab-generator-core/src/main/resources/templ/r7/app_{{apps}}/src/widgets/{{appEntities}}/{{ctrls@GRID}}-grid/{{ctrls@GRID}}-grid.vue.hbs
浏览文件 @
3b328b69
...
...
@@ -45,13 +45,13 @@ const { useScrollOption, useRowKey, useRowClassName, useCustomRow, useRowSelecti
const
renderBatchToolbar
=
(
total
:
number
,
range
:
IParam
[])
=>
{
return
(
h
(
'div'
,
{
class
:
'app-grid-batchtoolbar-container'
},
[
h
(
AppToolbar
,
{
state
.
selections
?
h
(
AppToolbar
,
{
mode
:
'button'
,
class
:
'app-grid-batchtoolbar'
,
name
:
'
{{
ctrl
.
batchToolBarName
}}
'
,
actionModel
:
state
.
batchToolbar
,
onOnToolbarEvent
:
(
event
:
any
)
=>
onToolbarEvent
(
event
)
}),
})
:
null
,
`显示
${
range
[
0
]}
-
${
range
[
1
]}
条数据,共
${
total
}
条数据`
])
)
...
...
编辑
预览
Markdown
格式
0%
请重试
or
添加新附件
添加附件
取消
您添加了
0
人
到此讨论。请谨慎行事。
先完成此消息的编辑!
取消
想要评论请
注册
或
登录