Skip to content
项目
群组
代码片段
帮助
正在加载...
帮助
提交反馈
为 GitLab 提交贡献
登录
切换导航
I
ibizlab-generator
项目
项目
详情
动态
版本
周期分析
仓库
仓库
文件
提交
分支
标签
贡献者
分支图
比较
统计图
议题
0
议题
0
列表
看板
标记
里程碑
合并请求
0
合并请求
0
CI / CD
CI / CD
流水线
作业
计划
统计图
Wiki
Wiki
代码片段
代码片段
成员
成员
收起侧边栏
关闭侧边栏
动态
分支图
统计图
创建新议题
作业
提交
议题看板
打开侧边栏
ibiz4jteam
ibizlab-generator
提交
8bcb839d
提交
8bcb839d
编写于
1月 14, 2022
作者:
tony001
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
update:更新模板
上级
7a0761eb
变更
5
隐藏空白字符变更
内嵌
并排
正在显示
5 个修改的文件
包含
26 行增加
和
41 行删除
+26
-41
view-base-config.hbs
...rces/templ/r7/@macro/front-end/views/view-base-config.hbs
+1
-0
edit-view.ts
...pp_{{apps}}/src/core/modules/views/edit-view/edit-view.ts
+17
-7
grid-view.ts
...pp_{{apps}}/src/core/modules/views/grid-view/grid-view.ts
+1
-5
md-view.ts
...r7/app_{{apps}}/src/core/modules/views/md-view/md-view.ts
+2
-10
form-control.ts
...s}}/src/core/modules/widgets/form-control/form-control.ts
+5
-19
未找到文件。
modules/ibizlab-generator-core/src/main/resources/templ/r7/@macro/front-end/views/view-base-config.hbs
浏览文件 @
8bcb839d
...
...
@@ -6,6 +6,7 @@
width: '
{{
page
.
width
}}
',
appEntityName: '
{{
page
.
appEntity
.
codeName
}}
',
isLoadDefault: true,
keyPSDEField: '
{{
lowerCase
page
.
appEntity
.
codeName
}}
',
{{!-- viewMsgGroup: '{{page.psAppViewMsgGroup}}', --}}
{{!-- viewUIActions: '{{page.psAppViewUIActions}}', --}}
viewSysCss: '
{{
page
.
psSysCss
}}
',
...
...
modules/ibizlab-generator-core/src/main/resources/templ/r7/app_{{apps}}/src/core/modules/views/edit-view/edit-view.ts
浏览文件 @
8bcb839d
...
...
@@ -33,8 +33,22 @@ export class EditView extends MainView {
// 初始化表单引用
this
.
form
=
ref
(
null
);
onMounted
(()
=>
{
const
{
viewSubject
}
=
this
.
state
;
viewSubject
.
next
({
tag
:
this
.
getForm
().
name
,
action
:
"load"
,
data
:
{}
})
const
{
isLoadDefault
,
context
,
viewparams
,
keyPSDEField
}
=
this
.
state
;
if
(
this
.
getForm
()
&&
isLoadDefault
)
{
const
tag
=
this
.
getForm
().
name
;
let
action
:
string
=
''
;
if
(
keyPSDEField
&&
context
[
keyPSDEField
]
&&
!
Object
.
is
(
context
[
keyPSDEField
],
''
)
)
{
action
=
'load'
;
}
else
{
action
=
'loadDraft'
;
}
this
.
next
({
tag
:
tag
,
action
:
action
,
data
:
viewparams
});
}
this
.
state
.
isLoadDefault
=
true
;
})
}
...
...
@@ -45,11 +59,7 @@ export class EditView extends MainView {
* @memberof IndexView
*/
public
getForm
():
any
{
if
(
this
.
form
.
value
)
{
return
this
.
form
.
value
;
}
else
{
return
null
;
}
return
unref
(
this
.
form
);
}
/**
...
...
modules/ibizlab-generator-core/src/main/resources/templ/r7/app_{{apps}}/src/core/modules/views/grid-view/grid-view.ts
浏览文件 @
8bcb839d
...
...
@@ -56,11 +56,7 @@ public declare state: GridViewState;
* @memberof GridView
*/
public
getMDCtrl
():
any
{
if
(
this
.
grid
.
value
)
{
return
this
.
grid
.
value
;
}
else
{
return
null
;
}
return
unref
(
this
.
grid
);
}
/**
...
...
modules/ibizlab-generator-core/src/main/resources/templ/r7/app_{{apps}}/src/core/modules/views/md-view/md-view.ts
浏览文件 @
8bcb839d
...
...
@@ -227,11 +227,7 @@ export class MDView extends MainView {
* @memberof MDView
*/
public
getSearchForm
():
any
{
if
(
this
.
searchForm
.
value
)
{
return
this
.
searchForm
.
value
;
}
else
{
return
null
;
}
return
unref
(
this
.
searchForm
);
}
/**
...
...
@@ -241,11 +237,7 @@ export class MDView extends MainView {
* @memberof MDView
*/
public
getSearchBar
()
{
if
(
this
.
searchBar
.
value
)
{
return
this
.
searchBar
.
value
;
}
else
{
return
null
;
}
return
unref
(
this
.
searchBar
);
}
/**
...
...
modules/ibizlab-generator-core/src/main/resources/templ/r7/app_{{apps}}/src/core/modules/widgets/form-control/form-control.ts
浏览文件 @
8bcb839d
...
...
@@ -341,13 +341,7 @@ export class FormControl extends MainControl {
*/
public
useLoadDraft
()
{
const
{
viewSubject
,
controlName
}
=
this
.
state
;
/**
* 加载行为
*
* @param [opt={}]
* @return {*}
*/
// 加载草稿
const
loadDraft
=
async
(
opt
:
any
=
{})
=>
{
try
{
const
{
controlService
,
context
,
viewParams
,
showBusyIndicator
,
controlAction
,
appDeKeyFieldName
}
=
this
.
state
;
...
...
@@ -377,7 +371,6 @@ export class FormControl extends MainControl {
console
.
log
(
error
);
}
};
// 订阅viewSubject,监听load行为
if
(
viewSubject
)
{
let
subscription
=
viewSubject
.
subscribe
(({
tag
,
action
,
data
}:
IActionParam
)
=>
{
...
...
@@ -385,16 +378,12 @@ export class FormControl extends MainControl {
loadDraft
(
data
);
}
});
// 部件卸载时退订viewSubject
onUnmounted
(()
=>
{
subscription
.
unsubscribe
();
});
}
return
{
loadDraft
:
loadDraft
,
};
return
{
loadDraft
};
}
/**
...
...
@@ -660,14 +649,11 @@ export class FormControl extends MainControl {
*/
public
moduleInstall
()
{
const
superParams
=
super
.
moduleInstall
();
// 表单行为能力启用
const
{
load
}
=
this
.
useLoad
();
const
{
save
}
=
this
.
useSave
();
return
{
...
superParams
,
load
,
save
,
load
:
this
.
useLoad
(),
loadDraft
:
this
.
useLoadDraft
(),
save
:
this
.
useSave
(),
handleEditorEvent
:
this
.
handleEditorEvent
.
bind
(
this
),
handleComponentEvent
:
this
.
handleComponentEvent
.
bind
(
this
),
};
...
...
编辑
预览
Markdown
格式
0%
请重试
or
添加新附件
添加附件
取消
您添加了
0
人
到此讨论。请谨慎行事。
先完成此消息的编辑!
取消
想要评论请
注册
或
登录