Skip to content
项目
群组
代码片段
帮助
正在加载...
帮助
提交反馈
为 GitLab 提交贡献
登录
切换导航
I
ibzdst
项目
项目
详情
动态
版本
周期分析
仓库
仓库
文件
提交
分支
标签
贡献者
分支图
比较
统计图
议题
1
议题
1
列表
看板
标记
里程碑
合并请求
0
合并请求
0
CI / CD
CI / CD
流水线
作业
计划
统计图
Wiki
Wiki
代码片段
代码片段
成员
成员
收起侧边栏
关闭侧边栏
动态
分支图
统计图
创建新议题
作业
提交
议题看板
打开侧边栏
ibiz4jteam
ibzdst
提交
a33b9224
提交
a33b9224
编写于
12月 31, 2020
作者:
ibizdev
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
zhouweidong 发布系统代码 [ibz-dst,应用]
上级
df4adff6
变更
3
隐藏空白字符变更
内嵌
并排
正在显示
3 个修改的文件
包含
18 行增加
和
27 行删除
+18
-27
meta-model-ui-service-base.ts
...eb/src/uiservice/meta-model/meta-model-ui-service-base.ts
+16
-25
MetaModelExService.java
...n/ibizlab/core/extensions/service/MetaModelExService.java
+1
-1
h2_table.xml
ibzdst-core/src/main/resources/liquibase/h2_table.xml
+1
-1
未找到文件。
app_web/src/uiservice/meta-model/meta-model-ui-service-base.ts
浏览文件 @
a33b9224
...
...
@@ -156,17 +156,24 @@ export default class MetaModelUIServiceBase extends UIService {
let
deResParameters
:
any
[]
=
[];
const
parameters
:
any
[]
=
[
{
pathName
:
'metamodels'
,
parameterName
:
'metamodel'
},
{
pathName
:
'fileuploadoptionview'
,
parameterName
:
'fileuploadoptionview'
},
];
const
openIndexViewTab
=
(
data
:
any
)
=>
{
const
routePath
=
actionContext
.
$viewTool
.
buildUpRoutePath
(
actionContext
.
$route
,
context
,
deResParameters
,
parameters
,
_args
,
data
);
actionContext
.
$router
.
push
(
routePath
);
if
(
this
.
MetaModel_importAfter
&&
this
.
MetaModel_importAfter
instanceof
Function
)
{
this
.
MetaModel_importAfter
([
data
],
context
,
params
,
$event
,
xData
,
actionContext
);
const
openPopupModal
=
(
view
:
any
,
data
:
any
)
=>
{
let
container
:
Subject
<
any
>
=
actionContext
.
$appmodal
.
openModal
(
view
,
context
,
data
);
container
.
subscribe
((
result
:
any
)
=>
{
if
(
!
result
||
!
Object
.
is
(
result
.
ret
,
'OK'
))
{
return
;
}
const
_this
:
any
=
actionContext
;
return
result
.
datas
;
});
}
return
null
;
}
openIndexViewTab
(
data
);
const
view
:
any
=
{
viewname
:
'meta-model-file-upload-option-view'
,
height
:
0
,
width
:
0
,
title
:
actionContext
.
$t
(
'entities.metamodel.views.fileuploadoptionview.title'
),
};
openPopupModal
(
view
,
data
);
}
/**
...
...
@@ -250,22 +257,6 @@ export default class MetaModelUIServiceBase extends UIService {
backend
();
}
/**
* 模型导入
*
* @param {any[]} args 当前数据
* @param {any} context 行为附加上下文
* @param {*} [params] 附加参数
* @param {*} [$event] 事件源
* @param {*} [xData] 执行行为所需当前部件
* @param {*} [actionContext] 执行行为上下文
* @param {*} [srfParentDeName] 父实体名称
* @returns {Promise<any>}
*/
public
async
MetaModel_importAfter
(
args
:
any
[],
context
:
any
=
{},
params
:
any
=
{},
$event
?:
any
,
xData
?:
any
,
actionContext
?:
any
,
srfParentDeName
?:
string
){
actionContext
.
$Notice
.
error
({
title
:
'错误'
,
desc
:
'不支持单项数据'
});
}
/**
* 获取指定数据的重定向页面
...
...
ibzdst-core/src/main/java/cn/ibizlab/core/extensions/service/MetaModelExService.java
浏览文件 @
a33b9224
...
...
@@ -32,7 +32,7 @@ public class MetaModelExService extends MetaModelServiceImpl {
return
super
.
change
(
et
);
}
/**
* [ExportFile:导出文件] 行为扩展:导出文件
zip
格式
* [ExportFile:导出文件] 行为扩展:导出文件
json
格式
* @param et
* @return
*/
...
...
ibzdst-core/src/main/resources/liquibase/h2_table.xml
浏览文件 @
a33b9224
...
...
@@ -328,7 +328,7 @@
<!--输出实体[META_MODEL]数据结构 -->
<changeSet
author=
"root"
id=
"tab-meta_model-4
6
-12"
>
<changeSet
author=
"root"
id=
"tab-meta_model-4
8
-12"
>
<createTable
tableName=
"IBZMODEL"
>
<column
name=
"MODELID"
remarks=
""
type=
"VARCHAR(100)"
>
<constraints
primaryKey=
"true"
primaryKeyName=
"PK_META_MODEL_MODELID"
/>
...
...
编辑
预览
Markdown
格式
0%
请重试
or
添加新附件
添加附件
取消
您添加了
0
人
到此讨论。请谨慎行事。
先完成此消息的编辑!
取消
想要评论请
注册
或
登录