Skip to content
项目
群组
代码片段
帮助
正在加载...
帮助
提交反馈
为 GitLab 提交贡献
登录
切换导航
iBiz-Vue-R7-Res
项目
项目
详情
动态
版本
周期分析
仓库
仓库
文件
提交
分支
标签
贡献者
分支图
比较
统计图
议题
0
议题
0
列表
看板
标记
里程碑
合并请求
0
合并请求
0
CI / CD
CI / CD
流水线
作业
计划
统计图
Wiki
Wiki
代码片段
代码片段
成员
成员
收起侧边栏
关闭侧边栏
动态
分支图
统计图
创建新议题
作业
提交
议题看板
打开侧边栏
iBiz-R7前端标准模板
iBiz-Vue-R7-Res
提交
1aab2653
提交
1aab2653
编写于
11月 03, 2022
作者:
Mosher
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
update:更新引擎
上级
735b2c6d
变更
1
显示空白字符变更
内嵌
并排
正在显示
1 个修改的文件
包含
20 行增加
和
12 行删除
+20
-12
edit-view2-engine.ts
src/engine/view/edit-view2-engine.ts
+20
-12
未找到文件。
src/engine/view/edit-view2-engine.ts
浏览文件 @
1aab2653
...
@@ -60,7 +60,7 @@ export default class EditView2Engine extends EditViewEngine {
...
@@ -60,7 +60,7 @@ export default class EditView2Engine extends EditViewEngine {
* @param {any[]} args
* @param {any[]} args
* @memberof EditView2Engine
* @memberof EditView2Engine
*/
*/
public
drbarEvent
(
eventName
:
string
,
args
:
any
[]
):
void
{
public
drbarEvent
(
eventName
:
string
,
args
:
any
):
void
{
if
(
Object
.
is
(
eventName
,
'selectionchange'
))
{
if
(
Object
.
is
(
eventName
,
'selectionchange'
))
{
this
.
drBarSelectionChange
(
args
);
this
.
drBarSelectionChange
(
args
);
}
}
...
@@ -72,13 +72,15 @@ export default class EditView2Engine extends EditViewEngine {
...
@@ -72,13 +72,15 @@ export default class EditView2Engine extends EditViewEngine {
* @param {any[]} args
* @param {any[]} args
* @memberof EditView2Engine
* @memberof EditView2Engine
*/
*/
public
drBarSelectionChange
(
args
:
any
[]):
void
{
public
drBarSelectionChange
(
data
:
any
):
void
{
const
item
=
args
[
0
];
if
(
data
)
{
if
(
!
item
||
Object
.
keys
(
item
).
length
===
0
)
{
this
.
view
.
drItem
=
data
;
return
;
if
(
this
.
getDRBar
())
{
this
.
setViewState2
({
tag
:
this
.
getDRBar
().
name
,
action
:
'change'
,
viewdata
:
data
});
}
this
.
view
.
$forceUpdate
();
}
}
this
.
view
.
selection
=
{};
this
.
view
.
$emit
(
'selectionchange'
,
data
);
Object
.
assign
(
this
.
view
.
selection
,
JSON
.
parse
(
JSON
.
stringify
(
item
)));
}
}
/**
/**
...
@@ -89,10 +91,13 @@ export default class EditView2Engine extends EditViewEngine {
...
@@ -89,10 +91,13 @@ export default class EditView2Engine extends EditViewEngine {
*/
*/
public
onFormLoad
(
arg
:
any
=
{}):
void
{
public
onFormLoad
(
arg
:
any
=
{}):
void
{
super
.
onFormLoad
(
arg
);
super
.
onFormLoad
(
arg
);
this
.
view
.
formData
=
arg
;
if
(
this
.
getDRBar
())
{
if
(
this
.
getDRBar
())
{
const
tag
=
this
.
getDRBar
().
name
;
const
tag
=
this
.
getDRBar
().
name
;
this
.
setViewState2
({
tag
:
tag
,
action
:
'state'
,
viewdata
:
this
.
view
.
vieparams
});
Object
.
assign
(
arg
,
{
srfparentdename
:
this
.
getForm
().
appDeCodeName
,
srfparentkey
:
arg
.
srfkey
,
});
this
.
setViewState2
({
tag
:
tag
,
action
:
'state'
,
viewdata
:
arg
});
}
}
}
}
...
@@ -104,10 +109,13 @@ export default class EditView2Engine extends EditViewEngine {
...
@@ -104,10 +109,13 @@ export default class EditView2Engine extends EditViewEngine {
*/
*/
public
onFormSave
(
arg
:
any
=
{}):
void
{
public
onFormSave
(
arg
:
any
=
{}):
void
{
super
.
onFormSave
(
arg
);
super
.
onFormSave
(
arg
);
this
.
view
.
formData
=
arg
;
if
(
this
.
getDRBar
())
{
if
(
this
.
getDRBar
())
{
const
tag
=
this
.
getDRBar
().
name
;
const
tag
=
this
.
getDRBar
().
name
;
this
.
setViewState2
({
tag
:
tag
,
action
:
'state'
,
viewdata
:
this
.
view
.
viewparams
});
Object
.
assign
(
arg
,
{
srfparentdename
:
this
.
getForm
().
appDeCodeName
,
srfparentkey
:
arg
.
srfkey
,
});
this
.
setViewState2
({
tag
:
tag
,
action
:
'state'
,
viewdata
:
arg
});
}
}
}
}
...
@@ -122,7 +130,7 @@ export default class EditView2Engine extends EditViewEngine {
...
@@ -122,7 +130,7 @@ export default class EditView2Engine extends EditViewEngine {
}
}
/**
/**
* @description 销毁
* @description
视图
销毁
* @memberof EditView2Engine
* @memberof EditView2Engine
*/
*/
public
destroy
()
{
public
destroy
()
{
...
...
编辑
预览
Markdown
格式
0%
请重试
or
添加新附件
添加附件
取消
您添加了
0
人
到此讨论。请谨慎行事。
先完成此消息的编辑!
取消
想要评论请
注册
或
登录