Skip to content
项目
群组
代码片段
帮助
正在加载...
帮助
提交反馈
为 GitLab 提交贡献
登录
切换导航
I
ibizlab-generator
项目
项目
详情
动态
版本
周期分析
仓库
仓库
文件
提交
分支
标签
贡献者
分支图
比较
统计图
议题
0
议题
0
列表
看板
标记
里程碑
合并请求
0
合并请求
0
CI / CD
CI / CD
流水线
作业
计划
统计图
Wiki
Wiki
代码片段
代码片段
成员
成员
收起侧边栏
关闭侧边栏
动态
分支图
统计图
创建新议题
作业
提交
议题看板
打开侧边栏
ibiz4jteam
ibizlab-generator
提交
c1ca690c
提交
c1ca690c
编写于
2月 11, 2022
作者:
RedPig97
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
update: 表格重置项
上级
5f9130ef
变更
4
显示空白字符变更
内嵌
并排
正在显示
4 个修改的文件
包含
36 行增加
和
5 行删除
+36
-5
grid-column-model.hbs
...macro/front-end/widgets/grid-detail/grid-column-model.hbs
+12
-0
app-dropdown-list.vue
...app_{{apps}}/src/components/editors/app-dropdown-list.vue
+2
-5
grid-control.ts
...s}}/src/core/modules/widgets/grid-control/grid-control.ts
+21
-0
app-menu.scss
...ces/templ/r7/app_{{apps}}/src/style/widgets/app-menu.scss
+1
-0
未找到文件。
modules/ibizlab-generator-core/src/main/resources/templ/r7/@macro/front-end/widgets/grid-detail/grid-column-model.hbs
浏览文件 @
c1ca690c
...
...
@@ -32,5 +32,17 @@
aggMode: "
{{
item
.
aggMode
}}
",
{{/if}}
{{/
eq
}}
{{#if
item
.
enableRowEdit
}}
{{#
each
ctrl
.
psDEGridEditItems
as
|
editColumn
|
}}
{{#if
(
eq
editColumn
.
codeName
item
.
codeName
)
}}
{{#if
editColumn
.
resetItemName
}}
resetItemName: "
{{
editColumn
.
resetItemName
}}
",
{{/if}}
{{#if
editColumn
.
valueItemName
}}
valueItemName: "
{{
editColumn
.
valueItemName
}}
",
{{/if}}
{{/if}}
{{/
each
}}
{{/if}}
},
{{/
unless
}}
modules/ibizlab-generator-core/src/main/resources/templ/r7/app_{{apps}}/src/components/editors/app-dropdown-list.vue
浏览文件 @
c1ca690c
...
...
@@ -56,7 +56,7 @@ interface DropdownListProps {
/**
* @description 代码表标识
*/
codeListTag
?
:
string
;
codeListTag
:
string
;
/**
* @description 代码表类型
...
...
@@ -81,10 +81,7 @@ const props = withDefaults(defineProps<DropdownListProps>(), {
const
emit
=
defineEmits
<
EditorEmit
>
()
const
{
handleEditorNavParams
,
loadCodeListData
}
=
new
EditorBase
();
const
{
navContext
,
navViewParam
}
=
handleEditorNavParams
(
props
);
let
curValue
:
Ref
<
any
>
=
ref
(
props
.
multiple
?
props
.
value
?.
split
(
props
.
valueSeparator
)
:
props
.
value
);
let
curValue
:
Ref
<
any
>
=
computed
(()
=>
props
.
multiple
?
props
.
value
?.
split
(
props
.
valueSeparator
)
:
props
.
value
);
let
items
:
Ref
<
IParam
[]
>
=
ref
([]);
const
onChange
=
(
select
:
any
,
option
:
any
)
=>
{
const
value
=
typeOf
(
select
)
==
'array'
?
select
.
join
(
props
.
valueSeparator
)
:
select
;
...
...
modules/ibizlab-generator-core/src/main/resources/templ/r7/app_{{apps}}/src/core/modules/widgets/grid-control/grid-control.ts
浏览文件 @
c1ca690c
...
...
@@ -158,6 +158,7 @@ export class GridControl extends MDControl {
if
(
items
.
value
[
rowIndex
][
tag
]
!==
data
)
{
items
.
value
[
rowIndex
][
tag
]
=
data
;
items
.
value
[
rowIndex
][
"rowDataState"
]
=
"update"
;
this
.
resetGridData
(
tag
,
data
,
rowIndex
);
this
.
validateField
(
tag
,
data
,
rowIndex
);
}
break
;
...
...
@@ -166,6 +167,26 @@ export class GridControl extends MDControl {
}
}
/**
* @description 重置表格数据
* @param {string} name
* @param {*} data
* @param {number} rowIndex
* @memberof GridControl
*/
public
resetGridData
(
name
:
string
,
data
:
any
,
rowIndex
:
number
)
{
const
{
columnsModel
}
=
this
.
state
;
if
(
columnsModel
&&
columnsModel
.
length
>
0
)
{
columnsModel
.
forEach
((
column
:
any
)
=>
{
if
(
column
.
resetItemName
&&
Object
.
is
(
name
,
column
.
resetItemName
))
{
this
.
onEditorEvent
({
tag
:
column
.
dataIndex
,
action
:
'valueChange'
,
data
:
null
},
rowIndex
);
if
(
column
.
valueItemName
)
{
this
.
onEditorEvent
({
tag
:
column
.
valueItemName
,
action
:
'valueChange'
,
data
:
null
},
rowIndex
);
}
}
})
}
}
/**
*
...
...
modules/ibizlab-generator-core/src/main/resources/templ/r7/app_{{apps}}/src/style/widgets/app-menu.scss
浏览文件 @
c1ca690c
...
...
@@ -8,5 +8,6 @@
}
.ant-card-body
{
text-align
:
left
;
padding
:
16px
;
}
}
\ No newline at end of file
编辑
预览
Markdown
格式
0%
请重试
or
添加新附件
添加附件
取消
您添加了
0
人
到此讨论。请谨慎行事。
先完成此消息的编辑!
取消
想要评论请
注册
或
登录