Skip to content
项目
群组
代码片段
帮助
正在加载...
帮助
提交反馈
为 GitLab 提交贡献
登录
切换导航
I
ibzlite
项目
项目
详情
动态
版本
周期分析
仓库
仓库
文件
提交
分支
标签
贡献者
分支图
比较
统计图
议题
0
议题
0
列表
看板
标记
里程碑
合并请求
0
合并请求
0
CI / CD
CI / CD
流水线
作业
计划
统计图
Wiki
Wiki
代码片段
代码片段
成员
成员
收起侧边栏
关闭侧边栏
动态
分支图
统计图
创建新议题
作业
提交
议题看板
打开侧边栏
ibiz4jteam
ibzlite
提交
d86fa9d4
提交
d86fa9d4
编写于
2月 26, 2021
作者:
ibizdev
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
zoo457790531 发布系统代码 [ibz-lite,应用]
上级
49485d64
变更
5
显示空白字符变更
内嵌
并排
正在显示
5 个修改的文件
包含
71 行增加
和
5 行删除
+71
-5
meta-dynamic-model_BO_CN_base.ts
...ities/meta-dynamic-model/meta-dynamic-model_BO_CN_base.ts
+2
-0
meta-dynamic-model_en_US_base.ts
...ities/meta-dynamic-model/meta-dynamic-model_en_US_base.ts
+2
-0
meta-dynamic-model_zh_CN_base.ts
...ities/meta-dynamic-model/meta-dynamic-model_zh_CN_base.ts
+2
-0
main-grid-base.vue
...c/widgets/meta-dynamic-model/main-grid/main-grid-base.vue
+60
-5
main-grid-model.ts
...c/widgets/meta-dynamic-model/main-grid/main-grid-model.ts
+5
-0
未找到文件。
app_web/src/locale/lanres/entities/meta-dynamic-model/meta-dynamic-model_BO_CN_base.ts
浏览文件 @
d86fa9d4
...
...
@@ -43,10 +43,12 @@ function getLocaleResourceBase(){
},
main_grid
:
{
columns
:
{
configid
:
commonLogic
.
appcommonhandle
(
"ID"
,
null
),
dynainstid
:
commonLogic
.
appcommonhandle
(
"动态实例标识"
,
null
),
configname
:
commonLogic
.
appcommonhandle
(
"名称"
,
null
),
systemid
:
commonLogic
.
appcommonhandle
(
"系统标识"
,
null
),
status
:
commonLogic
.
appcommonhandle
(
"状态"
,
null
),
pdynainstid
:
commonLogic
.
appcommonhandle
(
"父ID"
,
null
),
},
nodata
:
commonLogic
.
appcommonhandle
(
""
,
null
),
uiactions
:
{
...
...
app_web/src/locale/lanres/entities/meta-dynamic-model/meta-dynamic-model_en_US_base.ts
浏览文件 @
d86fa9d4
...
...
@@ -43,10 +43,12 @@ function getLocaleResourceBase(){
},
main_grid
:
{
columns
:
{
configid
:
commonLogic
.
appcommonhandle
(
"ID"
,
null
),
dynainstid
:
commonLogic
.
appcommonhandle
(
"动态实例标识"
,
null
),
configname
:
commonLogic
.
appcommonhandle
(
"名称"
,
null
),
systemid
:
commonLogic
.
appcommonhandle
(
"系统标识"
,
null
),
status
:
commonLogic
.
appcommonhandle
(
"状态"
,
null
),
pdynainstid
:
commonLogic
.
appcommonhandle
(
"父ID"
,
null
),
},
nodata
:
commonLogic
.
appcommonhandle
(
""
,
null
),
uiactions
:
{
...
...
app_web/src/locale/lanres/entities/meta-dynamic-model/meta-dynamic-model_zh_CN_base.ts
浏览文件 @
d86fa9d4
...
...
@@ -43,10 +43,12 @@ function getLocaleResourceBase(){
},
main_grid
:
{
columns
:
{
configid
:
commonLogic
.
appcommonhandle
(
"ID"
,
null
),
dynainstid
:
commonLogic
.
appcommonhandle
(
"动态实例标识"
,
null
),
configname
:
commonLogic
.
appcommonhandle
(
"名称"
,
null
),
systemid
:
commonLogic
.
appcommonhandle
(
"系统标识"
,
null
),
status
:
commonLogic
.
appcommonhandle
(
"状态"
,
null
),
pdynainstid
:
commonLogic
.
appcommonhandle
(
"父ID"
,
null
),
},
nodata
:
commonLogic
.
appcommonhandle
(
""
,
null
),
uiactions
:
{
...
...
app_web/src/widgets/meta-dynamic-model/main-grid/main-grid-base.vue
浏览文件 @
d86fa9d4
...
...
@@ -22,6 +22,18 @@
<
template
v-if=
"!isSingleSelect"
>
<el-table-column
align=
"center"
type=
'selection'
:width=
"checkboxColWidth"
></el-table-column>
</
template
>
<
template
v-if=
"getColumnState('configid')"
>
<el-table-column
show-overflow-tooltip
:prop=
"'configid'"
:label=
"$t('entities.metadynamicmodel.main_grid.columns.configid')"
:width=
"100"
:align=
"'left'"
:sortable=
"'custom'"
>
<template
v-slot:header=
"
{column}">
<span
class=
"column-header "
>
{{
$t
(
'entities.metadynamicmodel.main_grid.columns.configid'
)
}}
</span>
</
template
>
<
template
v-slot=
"{row,column,$index}"
>
<span>
{{
row
.
configid
}}
</span>
</
template
>
</el-table-column>
</template>
<
template
v-if=
"getColumnState('dynainstid')"
>
<el-table-column
show-overflow-tooltip
:prop=
"'dynainstid'"
:label=
"$t('entities.metadynamicmodel.main_grid.columns.dynainstid')"
:width=
"200"
:align=
"'left'"
:sortable=
"'custom'"
>
<template
v-slot:header=
"
{column}">
...
...
@@ -72,6 +84,18 @@
</template>
</el-table-column>
</template>
<
template
v-if=
"getColumnState('pdynainstid')"
>
<el-table-column
show-overflow-tooltip
:prop=
"'pdynainstid'"
:label=
"$t('entities.metadynamicmodel.main_grid.columns.pdynainstid')"
:width=
"100"
:align=
"'left'"
:sortable=
"'custom'"
>
<template
v-slot:header=
"
{column}">
<span
class=
"column-header "
>
{{
$t
(
'entities.metadynamicmodel.main_grid.columns.pdynainstid'
)
}}
</span>
</
template
>
<
template
v-slot=
"{row,column,$index}"
>
<span>
{{
row
.
pdynainstid
}}
</span>
</
template
>
</el-table-column>
</template>
<
template
v-if=
"adaptiveState"
>
<el-table-column></el-table-column>
</
template
>
...
...
@@ -629,6 +653,15 @@ export default class MainBase extends Vue implements ControlInterface {
* @memberof MainBase
*/
public
allColumns
:
any
[]
=
[
{
name
:
'configid'
,
label
:
'ID'
,
langtag
:
'entities.metadynamicmodel.main_grid.columns.configid'
,
show
:
true
,
unit
:
'PX'
,
isEnableRowEdit
:
false
,
enableCond
:
3
,
},
{
name
:
'dynainstid'
,
label
:
'动态实例标识'
,
...
...
@@ -665,6 +698,15 @@ export default class MainBase extends Vue implements ControlInterface {
isEnableRowEdit
:
false
,
enableCond
:
3
,
},
{
name
:
'pdynainstid'
,
label
:
'父ID'
,
langtag
:
'entities.metadynamicmodel.main_grid.columns.pdynainstid'
,
show
:
true
,
unit
:
'PX'
,
isEnableRowEdit
:
false
,
enableCond
:
3
,
},
]
/**
...
...
@@ -1369,7 +1411,7 @@ export default class MainBase extends Vue implements ControlInterface {
* @memberof MainBase
*/
public
arraySpanMethod
({
row
,
column
,
rowIndex
,
columnIndex
}
:
any
)
{
let
allColumns
:
Array
<
any
>
=
[
'
dynainstid'
,
'configname'
,
'systemid'
,
'status
'
];
let
allColumns
:
Array
<
any
>
=
[
'
configid'
,
'dynainstid'
,
'configname'
,
'systemid'
,
'status'
,
'pdynainstid
'
];
if
(
row
&&
row
.
children
)
{
if
(
columnIndex
==
(
this
.
isSingleSelect
?
0
:
1
))
{
return
[
1
,
allColumns
.
length
+
1
];
...
...
@@ -1449,10 +1491,12 @@ export default class MainBase extends Vue implements ControlInterface {
const
tree
:
any
=
{
groupById
:
Number
((
i
+
1
)
*
100
),
group
:
group
.
label
,
configid
:
''
,
dynainstid
:
''
,
configname
:
''
,
systemid
:
''
,
status
:
''
,
pdynainstid
:
''
,
children
:
children
}
groupTree
.
push
(
tree
);
...
...
@@ -1479,10 +1523,12 @@ export default class MainBase extends Vue implements ControlInterface {
const
Tree
:
any
=
{
groupById
:
Number
((
allGroup
.
length
+
1
)
*
100
),
group
:
this
.
$t
(
'app.gridpage.other'
),
configid
:
''
,
dynainstid
:
''
,
configname
:
''
,
systemid
:
''
,
status
:
''
,
pdynainstid
:
''
,
children
:
child
}
if
(
child
&&
child
.
length
>
0
){
...
...
@@ -1529,10 +1575,12 @@ export default class MainBase extends Vue implements ControlInterface {
const
tree
:
any
=
{
groupById
:
Number
((
groupIndex
+
1
)
*
100
),
group
:
group
,
configid
:
''
,
dynainstid
:
''
,
configname
:
''
,
systemid
:
''
,
status
:
''
,
pdynainstid
:
''
,
children
:
children
,
}
groupTree
.
push
(
tree
);
...
...
@@ -1962,10 +2010,16 @@ export default class MainBase extends Vue implements ControlInterface {
});
}
}
else
if
(
Object
.
is
(
errorMessage
[
index
].
data
.
errorKey
,
'DuplicateKeyException'
)){
let
name
:
string
=
this
.
service
.
getNameByProp
(
"configid"
);
if
(
name
){
let
desc
:
any
=
this
.
allColumns
.
find
((
column
:
any
)
=>
{
return
Object
.
is
(
column
.
name
,
name
);
});
this
.
$Notice
.
error
({
title
:
(
this
.
$t
(
'app.commonWords.sav
eFailed'
)
as
string
),
desc
:
errorMessage
[
index
].
data
.
message
?
errorMessage
[
index
].
data
.
message
:(
this
.
$t
(
'app.commonWords.sysException'
)
as
string
)
,
title
:
(
this
.
$t
(
'app.commonWords.creat
eFailed'
)
as
string
),
desc
:
(
desc
?
desc
.
label
:
''
)
+
" : "
+
item
[
name
]
+
(
this
.
$t
(
'app.commonWords.isExist'
)
as
string
)
+
'!'
,
});
}
}
else
{
this
.
$Notice
.
error
({
title
:
(
this
.
$t
(
'app.commonWords.saveFailed'
)
as
string
),
...
...
@@ -2074,6 +2128,7 @@ export default class MainBase extends Vue implements ControlInterface {
return
;
}
let
tempContext
:
any
=
this
.
$util
.
deepCopy
(
this
.
context
);
Object
.
is
(
tempContext
,
{
metadynamicmodel
:
data
.
configid
});
const
arg
:
any
=
JSON
.
parse
(
JSON
.
stringify
(
data
));
Object
.
assign
(
arg
,{
viewparams
:
this
.
viewparams
});
const
post
:
Promise
<
any
>
=
this
.
service
.
frontLogic
(
mode
,
JSON
.
parse
(
JSON
.
stringify
(
tempContext
)),
arg
,
showloading
);
...
...
app_web/src/widgets/meta-dynamic-model/main-grid/main-grid-model.ts
浏览文件 @
d86fa9d4
...
...
@@ -41,6 +41,11 @@ export default class MainModel {
prop
:
'status'
,
dataType
:
'SSCODELIST'
,
},
{
name
:
'configid'
,
prop
:
'configid'
,
dataType
:
'TEXT'
,
},
{
name
:
'configname'
,
prop
:
'configname'
,
...
...
编辑
预览
Markdown
格式
0%
请重试
or
添加新附件
添加附件
取消
您添加了
0
人
到此讨论。请谨慎行事。
先完成此消息的编辑!
取消
想要评论请
注册
或
登录