Skip to content
项目
群组
代码片段
帮助
正在加载...
帮助
提交反馈
为 GitLab 提交贡献
登录
切换导航
I
ibizlab-generator
项目
项目
详情
动态
版本
周期分析
仓库
仓库
文件
提交
分支
标签
贡献者
分支图
比较
统计图
议题
0
议题
0
列表
看板
标记
里程碑
合并请求
0
合并请求
0
CI / CD
CI / CD
流水线
作业
计划
统计图
Wiki
Wiki
代码片段
代码片段
成员
成员
收起侧边栏
关闭侧边栏
动态
分支图
统计图
创建新议题
作业
提交
议题看板
打开侧边栏
ibiz4jteam
ibizlab-generator
提交
7ed48ea7
提交
7ed48ea7
编写于
12月 29, 2021
作者:
Shine-zwj
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
update:更新
上级
cc5faf56
变更
3
隐藏空白字符变更
内嵌
并排
正在显示
3 个修改的文件
包含
28 行增加
和
9 行删除
+28
-9
grid-control.ts
...rc/ibiz-core/modules/widgets/grid-control/grid-control.ts
+24
-5
{{ctrls@GRID}}-grid-config.ts.hbs
...s}}/{{ctrls@GRID}}-grid/{{ctrls@GRID}}-grid-config.ts.hbs
+1
-1
{{ctrls@GRID}}-grid.vue.hbs
...ntities}}/{{ctrls@GRID}}-grid/{{ctrls@GRID}}-grid.vue.hbs
+3
-3
未找到文件。
modules/ibizlab-generator-core/src/main/resources/templ/r7/app_{{apps}}/src/ibiz-core/modules/widgets/grid-control/grid-control.ts
浏览文件 @
7ed48ea7
...
...
@@ -98,7 +98,6 @@ export class GridControl extends MainControl {
}
})
gridData
.
push
({
groupRow
:
true
,
srfkey
:
createUUID
(),
[
groupColumn
.
dataIndex
]:
group
,
children
:
deepCopy
(
children
),
...
...
@@ -130,7 +129,6 @@ export class GridControl extends MainControl {
}
});
gridData
.
push
({
groupRow
:
true
,
srfkey
:
createUUID
(),
[
groupColumn
.
dataIndex
]:
group
.
text
,
children
:
deepCopy
(
children
),
...
...
@@ -144,7 +142,6 @@ export class GridControl extends MainControl {
});
if
(
otherGroup
.
length
>
0
)
{
gridData
.
push
({
groupRow
:
true
,
srfkey
:
createUUID
(),
[
groupColumn
.
dataIndex
]:
"其它"
,
children
:
deepCopy
(
otherGroup
),
...
...
@@ -176,7 +173,29 @@ export class GridControl extends MainControl {
* @memberof GridControl
*/
public
setGridColSpan
()
{
const
columnsModelRef
=
toRef
(
this
.
controlState
,
"columnsModel"
);
columnsModelRef
.
value
.
forEach
((
columnModel
:
IParam
)
=>
{
const
customRender
=
({
text
,
record
,
index
,
column
}:
IParam
)
=>
{
const
option
=
{
props
:
{}
as
IParam
,
};
if
(
record
.
children
)
{
if
(
Object
.
is
(
column
.
columnType
,
"GROUP"
))
{
Object
.
assign
(
option
.
props
,{
colSpan
:
columnsModelRef
.
value
.
length
,
});
}
else
{
Object
.
assign
(
option
.
props
,{
colSpan
:
0
});
}
}
return
option
;
}
Object
.
assign
(
columnModel
,{
customRender
:
customRender
,
})
});
}
/**
...
...
@@ -269,7 +288,7 @@ export class GridControl extends MainControl {
aggData
=
await
this
.
remoteAgg
();
}
const
start
:
number
=
(
currentRef
.
value
-
1
)
*
pageSizeRef
.
value
>
0
?
(
currentRef
.
value
-
1
)
*
pageSizeRef
.
value
-
1
:
0
;
const
end
:
number
=
currentRef
.
value
*
pageSizeRef
.
value
-
1
;
const
end
:
number
=
currentRef
.
value
*
pageSizeRef
.
value
;
aggData
=
aggData
.
slice
(
start
,
end
);
const
columnsModelRef
=
toRef
(
this
.
controlState
,
"columnsModel"
);
const
columnsModel
:
IParam
[]
=
[];
...
...
modules/ibizlab-generator-core/src/main/resources/templ/r7/app_{{apps}}/src/widgets/{{appEntities}}/{{ctrls@GRID}}-grid/{{ctrls@GRID}}-grid-config.ts.hbs
浏览文件 @
7ed48ea7
...
...
@@ -48,7 +48,7 @@ export const CtrlConfig = {
{{#if
ctrl
.
groupPSAppDEField
}}
{
title: "分组",
align: "
center
",
align: "
left
",
columnType: "GROUP",
width: 100,
resizable: true,
...
...
modules/ibizlab-generator-core/src/main/resources/templ/r7/app_{{apps}}/src/widgets/{{appEntities}}/{{ctrls@GRID}}-grid/{{ctrls@GRID}}-grid.vue.hbs
浏览文件 @
7ed48ea7
...
...
@@ -54,7 +54,7 @@ const customRow = (record: IParam, index: number) => {
return
{
onClick
:
()
=>
{
state
.
selectedRowKeys
=
[
record
.
srfkey
];
if
(
!
record
.
groupRow
)
{
if
(
!
record
.
children
)
{
emit
(
"ctrlEvent"
,{
tag
:
state
.
controlName
,
action
:
"selectionChange"
,
data
:
[
deepCopy
(
record
)]
})
if
(
Object
.
is
(
props
.
rowActiveMode
,
1
))
{
emit
(
"ctrlEvent"
,{
tag
:
state
.
controlName
,
action
:
"rowClick"
,
data
:
[
deepCopy
(
record
)]
})
...
...
@@ -62,7 +62,7 @@ const customRow = (record: IParam, index: number) => {
}
},
onDblclick
:
()
=>
{
if
(
!
record
.
groupRow
&&
Object
.
is
(
props
.
rowActiveMode
,
2
))
{
if
(
!
record
.
children
&&
Object
.
is
(
props
.
rowActiveMode
,
2
))
{
emit
(
"ctrlEvent"
,{
tag
:
state
.
controlName
,
action
:
"rowDbClick"
,
data
:
[
deepCopy
(
record
)]
})
}
}
...
...
@@ -78,7 +78,7 @@ const rowSelectionOption = computed(() => {
state
.
selectedRowKeys
=
selectedRowKeys
;
const
selection
:
IParam
[]
=
[];
selectedRows
.
forEach
((
select
:
IParam
)
=>
{
if
(
!
select
.
groupRow
)
{
if
(
!
select
.
children
)
{
selection
.
push
(
select
);
}
})
...
...
编辑
预览
Markdown
格式
0%
请重试
or
添加新附件
添加附件
取消
您添加了
0
人
到此讨论。请谨慎行事。
先完成此消息的编辑!
取消
想要评论请
注册
或
登录