Skip to content
项目
群组
代码片段
帮助
正在加载...
帮助
提交反馈
为 GitLab 提交贡献
登录
切换导航
I
ibizlab-generator
项目
项目
详情
动态
版本
周期分析
仓库
仓库
文件
提交
分支
标签
贡献者
分支图
比较
统计图
议题
0
议题
0
列表
看板
标记
里程碑
合并请求
0
合并请求
0
CI / CD
CI / CD
流水线
作业
计划
统计图
Wiki
Wiki
代码片段
代码片段
成员
成员
收起侧边栏
关闭侧边栏
动态
分支图
统计图
创建新议题
作业
提交
议题看板
打开侧边栏
ibiz4jteam
ibizlab-generator
提交
cb9b1ac6
提交
cb9b1ac6
编写于
12月 24, 2021
作者:
Shine-zwj
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
update:更新
上级
2c2c4ee0
变更
6
隐藏空白字符变更
内嵌
并排
正在显示
6 个修改的文件
包含
97 行增加
和
36 行删除
+97
-36
grid-column-model.hbs
...sources/templ/r7/@macro/grid-detail/grid-column-model.hbs
+17
-0
grid-column.hbs
...ain/resources/templ/r7/@macro/grid-detail/grid-column.hbs
+29
-30
include-grid.hbs
...in/resources/templ/r7/@macro/grid-detail/include-grid.hbs
+2
-1
grid-control-prop.ts
...iz-core/modules/widgets/grid-control/grid-control-prop.ts
+35
-1
{{ctrls@GRID}}-grid-config.ts.hbs
...s}}/{{ctrls@GRID}}-grid/{{ctrls@GRID}}-grid-config.ts.hbs
+6
-0
{{ctrls@GRID}}-grid.vue.hbs
...ntities}}/{{ctrls@GRID}}-grid/{{ctrls@GRID}}-grid.vue.hbs
+8
-4
未找到文件。
modules/ibizlab-generator-core/src/main/resources/templ/r7/@macro/grid-detail/grid-column-model.hbs
0 → 100644
浏览文件 @
cb9b1ac6
{
title: "
{{
item
.
caption
}}
",
{{#if
item
.
widthUnit
'PX'
}}
width: "
{{
item
.
width
}}
px",
{{else}}
minWidth: "
{{
item
.
width
}}
px",
{{/if}}
{{#
eq
item
.
columnType
'GROUPGRIDCOLUMN'
}}
children: [
{{#
each
item
.
pSDEGridColumns
as
|
column
|
}}
{{>
(
lookup
'COLUMNMODEL'
)
item
=
column
}}
{{/
each
}}
],
{{else}}
dataIndex: "
{{
item
.
codeName
}}
",
{{/
eq
}}
},
modules/ibizlab-generator-core/src/main/resources/templ/r7/@macro/grid-detail/grid-column.hbs
浏览文件 @
cb9b1ac6
<template
#
bodyCell=
"{ column, text, record }"
>
<div
class=
"table-cell"
>
{{#
eq
item
.
columnType
'DEFGRIDCOLUMN'
}}
{{/
eq
}}
{{#
eq
item
.
columnType
'UAGRIDCOLUMN'
}}
<div
v-if=
"column.dataIndex === '
{{
item
.
codeName
}}
'"
class=
"table-cell"
>
{{!-- 数据列 --}}
{{#
eq
item
.
columnType
'DEFGRIDCOLUMN'
}}
{{!-- 是否可编辑 --}}
{{#if
ctrl
.
enableRowEdit
.
item
.
enableRowEdit
}}
<div
v-if=
"state.rowEditState"
class=
"editor-cell"
>
{{#
each
ctrl
.
pSDEGridEditItems
as
|
editColumn
|
}}
{{#
eq
editColumn
.
codeName
.
item
.
codeName
}}
{{#if
item
.
psEditor
}}
{{>
(
lookup
.
'item.psEditor.editorType'
)
item
=
item
}}
{{/if}}
{{/
eq
}}
{{/
each
}}
</div>
<div
v-else
class=
"text-cell"
>
\{{text}}
</div>
{{else}}
<div
class=
"text-cell"
>
\{{text}}
</div>
<template
v-if=
"column.dataIndex === 'name'"
>
<div
class=
"editable-cell"
>
<div
v-if=
"editableData[record.key]"
class=
"editable-cell-input-wrapper"
>
<a-input
v-model:value=
"editableData[record.key].name"
@
pressEnter=
"save(record.key)"
/>
<check-outlined
class=
"editable-cell-icon-check"
@
click=
"save(record.key)"
/>
</div>
<div
v-else
class=
"editable-cell-text-wrapper"
>
{{
text
||
' '
}}
<edit-outlined
class=
"editable-cell-icon"
@
click=
"edit(record.key)"
/>
</div>
</div>
</template>
<template
v-else-if=
"column.dataIndex === 'operation'"
>
<a-popconfirm
v-if=
"dataSource.length"
title=
"Sure to delete?"
@
confirm=
"onDelete(record.key)"
>
<a>
Delete
</a>
</a-popconfirm>
</template>
</template>
\ No newline at end of file
{{/if}}
{{/
eq
}}
{{#
eq
item
.
columnType
'UAGRIDCOLUMN'
}}
{{!-- <ibizToolbar
:toolbarModel="state.actionModel"
@toolbarEvent="handleToolbarEvent"
:context="state.context"
:viewParams="state.viewParams"/> --}}
{{/
eq
}}
</div>
modules/ibizlab-generator-core/src/main/resources/templ/r7/@macro/grid-detail/include-grid.hbs
浏览文件 @
cb9b1ac6
{{#
*
inline
"COLUMN"
}}{{>
@macro
/
grid-detail
/
grid-column
.
hbs
}}{{/
inline
}}
\ No newline at end of file
{{#
*
inline
"COLUMN"
}}{{>
@macro
/
grid-detail
/
grid-column
.
hbs
}}{{/
inline
}}
{{#
*
inline
"COLUMNMODEL"
}}{{>
@macro
/
grid-detail
/
grid-column-model
.
hbs
}}{{/
inline
}}
\ No newline at end of file
modules/ibizlab-generator-core/src/main/resources/templ/r7/app_{{apps}}/src/ibiz-core/modules/widgets/grid-control/grid-control-prop.ts
浏览文件 @
cb9b1ac6
import
{
MainControlProps
}
from
"@ibiz-core"
;
import
{
IParam
,
MainControlProps
}
from
"@ibiz-core"
;
/**
* @description 表格部件的props
...
...
@@ -8,4 +8,38 @@ import { MainControlProps } from "@ibiz-core";
*/
export
interface
GridControlProps
extends
MainControlProps
{
/**
* @description 是否多选
* @type {boolean}
* @memberof GridControlProps
*/
multiple
:
boolean
;
/**
* @description 行编辑状态
* @type {boolean}
* @memberof GridControlProps
*/
rowEditState
:
boolean
;
/**
* @description 行激活模式
* @type {(0 | 1 | 2)} 不激活 | 单击激活 | 双击激活
* @memberof GridControlProps
*/
rowActiveMode
:
0
|
1
|
2
;
/**
* @description 选中数据
* @type {IParam[]}
* @memberof GridControlProps
*/
selectedData
:
IParam
[];
/**
* @description 是否默认选中第一项数据
* @type {boolean}
* @memberof GridControlProps
*/
selectFirstDefault
:
boolean
;
}
\ No newline at end of file
modules/ibizlab-generator-core/src/main/resources/templ/r7/app_{{apps}}/src/widgets/{{appEntities}}/{{ctrls@GRID}}-grid/{{ctrls@GRID}}-grid-config.ts.hbs
浏览文件 @
cb9b1ac6
{{>
@macro
/
grid-detail
/
include-grid
.
hbs
}}
export const CtrlConfig = {
controlCodeName: '
{{
ctrl
.
codeName
}}
',
controlName: '
{{
ctrl
.
name
}}
',
items: [],
columnsModel: [
{{#
each
ctrl
.
pSDEGridColumns
as
|
column
|
}}
{{>
(
lookup
'COLUMNMODEL'
)
item
=
column
}}
{{/
each
}}
]
};
\ No newline at end of file
modules/ibizlab-generator-core/src/main/resources/templ/r7/app_{{apps}}/src/widgets/{{appEntities}}/{{ctrls@GRID}}-grid/{{ctrls@GRID}}-grid.vue.hbs
浏览文件 @
cb9b1ac6
...
...
@@ -68,11 +68,15 @@ const rowSelection = computed(() => {
{{!-- 快速工具栏 --}}
</div>
</template>
{{!-- {{#each ctrl.pSDEGridColumns as | column |}}
{{>(lookup 'COLUMN') item=column}}
{{/each}} --}}
<template
#
bodyCell=
"{ column, text, record }"
>
{{#
each
ctrl
.
pSDEGridColumns
as
|
column
|
}}
{{>
(
lookup
'COLUMN'
)
item
=
column
ctrl
=
ctrl
}}
{{/
each
}}
</template>
</a-table>
</template>
<style
lang=
"scss"
>
.ibiz-grid
{
margin
:
20px
;
}
</style>
\ No newline at end of file
编辑
预览
Markdown
格式
0%
请重试
or
添加新附件
添加附件
取消
您添加了
0
人
到此讨论。请谨慎行事。
先完成此消息的编辑!
取消
想要评论请
注册
或
登录