Skip to content
项目
群组
代码片段
帮助
正在加载...
帮助
提交反馈
为 GitLab 提交贡献
登录
切换导航
功
功能演示系统
项目
项目
详情
动态
版本
周期分析
仓库
仓库
文件
提交
分支
标签
贡献者
分支图
比较
统计图
议题
0
议题
0
列表
看板
标记
里程碑
合并请求
0
合并请求
0
CI / CD
CI / CD
流水线
作业
计划
统计图
Wiki
Wiki
代码片段
代码片段
成员
成员
收起侧边栏
关闭侧边栏
动态
分支图
统计图
创建新议题
作业
提交
议题看板
打开侧边栏
示例
功能演示系统
提交
2da5b737
提交
2da5b737
编写于
11月 17, 2022
作者:
ibizdev
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
tony001 发布系统代码 [后台服务,演示应用]
上级
c66b3b5e
变更
13
展开全部
隐藏空白字符变更
内嵌
并排
正在显示
13 个修改的文件
包含
389 行增加
和
470 行删除
+389
-470
extend-action-timeline.less
...onents/extend-action-timeline/extend-action-timeline.less
+1
-1
extend-action-timeline.vue
...ponents/extend-action-timeline/extend-action-timeline.vue
+52
-166
custom-view-grid-load-ui-logic-base.ts
...uiservice/ibizbook/custom-view-grid-load-ui-logic-base.ts
+58
-54
default-searchform-base.vue
...s/ibizbook/default-searchform/default-searchform-base.vue
+2
-2
usr2-dataview-base.vue
...src/widgets/ibizbook/usr2-dataview/usr2-dataview-base.vue
+56
-26
usr2-dataview-model.ts
...src/widgets/ibizbook/usr2-dataview/usr2-dataview-model.ts
+1
-12
IBIZBOOK.json
...remotemodel/PSSYSAPPS/Web/PSAPPDATAENTITIES/IBIZBOOK.json
+87
-82
Usr.json
...SSYSAPPS/Web/PSAPPDATAENTITIES/IBIZBOOK/PSGANTTS/Usr.json
+14
-14
TreeTable.json
.../PSAPPDATAENTITIES/IBIZBOOK/PSTREEGRIDICES/TreeTable.json
+8
-8
IBIZBOOKGanttView.json
...temodel/PSSYSAPPS/Web/PSAPPDEVIEWS/IBIZBOOKGanttView.json
+14
-14
IBIZBOOKTreeGridExView.json
...el/PSSYSAPPS/Web/PSAPPDEVIEWS/IBIZBOOKTreeGridExView.json
+8
-8
PSSYSAPP.json
.../resources/static/remotemodel/PSSYSAPPS/Web/PSSYSAPP.json
+87
-82
h2_table.xml
demo-core/src/main/resources/liquibase/h2_table.xml
+1
-1
未找到文件。
app_Web/src/components/extend-action-timeline/extend-action-timeline.less
浏览文件 @
2da5b737
...
...
@@ -198,7 +198,7 @@
}
.timeline-wrapper__authorname {
width: 1
5
%;
width: 1
0
%;
min-width: 110px;
}
...
...
app_Web/src/components/extend-action-timeline/extend-action-timeline.vue
浏览文件 @
2da5b737
此差异已折叠。
点击以展开。
app_Web/src/uiservice/ibizbook/custom-view-grid-load-ui-logic-base.ts
浏览文件 @
2da5b737
...
...
@@ -30,15 +30,20 @@ export default class CustomViewGridLoadUILogicBase {
*/
protected
logicParams
:
any
[]
=
[
{
name
:
'搜索表单部件'
,
codeName
:
'searchForm'
,
name
:
'视图参数'
,
codeName
:
'viewParam'
,
viewNavDataParam
:
true
,
},
{
name
:
'当前激活部件'
,
codeName
:
'curCtrl'
,
activeCtrlParam
:
true
,
ctrlParam
:
true
,
},
{
name
:
'传入变量'
,
codeName
:
'Default'
,
default
:
true
,
entityParam
:
true
,
name
:
'表格部件'
,
codeName
:
'grid'
,
ctrlParam
:
true
,
},
{
name
:
'当前视图'
,
...
...
@@ -46,20 +51,19 @@ export default class CustomViewGridLoadUILogicBase {
activeViewParam
:
true
,
},
{
name
:
'
表格
部件'
,
codeName
:
'
grid
'
,
name
:
'
搜索表单
部件'
,
codeName
:
'
searchForm
'
,
ctrlParam
:
true
,
},
{
name
:
'视图参数'
,
codeName
:
'viewParam'
,
viewNavDataParam
:
true
,
name
:
'路由参数变量'
,
codeName
:
'routeViewParam'
,
},
{
name
:
'
当前激活部件
'
,
codeName
:
'
curCtrl
'
,
activeCtrlParam
:
true
,
ctrl
Param
:
true
,
name
:
'
传入变量
'
,
codeName
:
'
Default
'
,
default
:
true
,
entity
Param
:
true
,
},
];
...
...
@@ -142,6 +146,45 @@ export default class CustomViewGridLoadUILogicBase {
await
this
.
execute_bindparam1_node
(
actionContext
);
}
/**
* 绑定表格
*
* @param {UIActionContext} actionContext 界面逻辑上下文
* @memberof CustomViewGridLoadUILogicBase
*/
protected
async
execute_bindparam2_node
(
actionContext
:
UIActionContext
)
{
try
{
// 源数据
const
srcParam
=
actionContext
.
getParam
(
'view'
);
// 目标数据
const
dstParam
=
actionContext
.
getParam
(
'grid'
);
// 源属性
const
srcFieldName
:
string
=
'grid'
;
if
(
srcFieldName
)
{
dstParam
.
bind
(
srcParam
.
get
(
srcFieldName
));
}
else
{
dstParam
.
bind
(
srcParam
.
getReal
());
}
actionContext
.
bindLastReturnParam
(
null
);
}
catch
(
error
:
any
)
{
throw
new
Error
(
`逻辑参数表格部件
${
error
&&
error
.
message
?
error
.
message
:
'发生未知错误!'
}
`
);
}
console
.
log
(
`已完成执行绑定表格节点,操作参数数据如下:`
);
if
(
actionContext
.
paramsMap
&&
(
actionContext
.
paramsMap
.
size
>
0
))
{
for
(
let
[
key
,
value
]
of
actionContext
.
paramsMap
)
{
console
.
log
(
key
,
Util
.
deepCopy
(
value
.
getReal
()));
}
}
if
(
Verify
.
testCond
(
this
.
getCondParam
(
actionContext
,
'searchForm'
,
''
),
'ISNOTNULL'
,
''
))
{
console
.
log
(
`即将执行搜索表单加载草稿节点`
);
await
this
.
execute_viewctrlinvoke2_node
(
actionContext
);
}
if
(
Verify
.
testCond
(
this
.
getCondParam
(
actionContext
,
'searchForm'
,
''
),
'ISNULL'
,
''
))
{
console
.
log
(
`即将执行表格加载节点`
);
await
this
.
execute_viewctrlinvoke1_node
(
actionContext
);
}
}
/**
* 搜索表单加载草稿
*
...
...
@@ -281,44 +324,5 @@ export default class CustomViewGridLoadUILogicBase {
await
this
.
execute_end1_node
(
actionContext
);
}
/**
* 绑定表格
*
* @param {UIActionContext} actionContext 界面逻辑上下文
* @memberof CustomViewGridLoadUILogicBase
*/
protected
async
execute_bindparam2_node
(
actionContext
:
UIActionContext
)
{
try
{
// 源数据
const
srcParam
=
actionContext
.
getParam
(
'view'
);
// 目标数据
const
dstParam
=
actionContext
.
getParam
(
'grid'
);
// 源属性
const
srcFieldName
:
string
=
'grid'
;
if
(
srcFieldName
)
{
dstParam
.
bind
(
srcParam
.
get
(
srcFieldName
));
}
else
{
dstParam
.
bind
(
srcParam
.
getReal
());
}
actionContext
.
bindLastReturnParam
(
null
);
}
catch
(
error
:
any
)
{
throw
new
Error
(
`逻辑参数表格部件
${
error
&&
error
.
message
?
error
.
message
:
'发生未知错误!'
}
`
);
}
console
.
log
(
`已完成执行绑定表格节点,操作参数数据如下:`
);
if
(
actionContext
.
paramsMap
&&
(
actionContext
.
paramsMap
.
size
>
0
))
{
for
(
let
[
key
,
value
]
of
actionContext
.
paramsMap
)
{
console
.
log
(
key
,
Util
.
deepCopy
(
value
.
getReal
()));
}
}
if
(
Verify
.
testCond
(
this
.
getCondParam
(
actionContext
,
'searchForm'
,
''
),
'ISNOTNULL'
,
''
))
{
console
.
log
(
`即将执行搜索表单加载草稿节点`
);
await
this
.
execute_viewctrlinvoke2_node
(
actionContext
);
}
if
(
Verify
.
testCond
(
this
.
getCondParam
(
actionContext
,
'searchForm'
,
''
),
'ISNULL'
,
''
))
{
console
.
log
(
`即将执行表格加载节点`
);
await
this
.
execute_viewctrlinvoke1_node
(
actionContext
);
}
}
}
\ No newline at end of file
app_Web/src/widgets/ibizbook/default-searchform/default-searchform-base.vue
浏览文件 @
2da5b737
...
...
@@ -712,7 +712,7 @@ export default class DefaultBase extends Vue implements ControlInterface {
*/
public
load
(
opt
:
any
=
{}):
void
{
if
(
!
this
.
loadAction
){
this
.
$Notice
.
error
({
title
:
(
this
.
$t
(
'app.commonWords.wrong'
)
as
string
),
desc
:
'IBIZBOOKUsr
5Data
View'
+
(
this
.
$t
(
'app.searchForm.notConfig.loadAction'
)
as
string
)
});
this
.
$Notice
.
error
({
title
:
(
this
.
$t
(
'app.commonWords.wrong'
)
as
string
),
desc
:
'IBIZBOOKUsr
9Grid
View'
+
(
this
.
$t
(
'app.searchForm.notConfig.loadAction'
)
as
string
)
});
return
;
}
const
arg
:
any
=
{
...
opt
};
...
...
@@ -748,7 +748,7 @@ export default class DefaultBase extends Vue implements ControlInterface {
*/
public
async
loadDraft
(
opt
:
any
=
{},
mode
?:
string
):
Promise
<
any
>
{
if
(
!
this
.
loaddraftAction
){
this
.
$Notice
.
error
({
title
:
(
this
.
$t
(
'app.commonWords.wrong'
)
as
string
),
desc
:
'IBIZBOOKUsr
5Data
View'
+
(
this
.
$t
(
'app.searchForm.notConfig.loaddraftAction'
)
as
string
)
});
this
.
$Notice
.
error
({
title
:
(
this
.
$t
(
'app.commonWords.wrong'
)
as
string
),
desc
:
'IBIZBOOKUsr
9Grid
View'
+
(
this
.
$t
(
'app.searchForm.notConfig.loaddraftAction'
)
as
string
)
});
return
;
}
const
arg
:
any
=
{
...
opt
}
;
...
...
app_Web/src/widgets/ibizbook/usr2-dataview/usr2-dataview-base.vue
浏览文件 @
2da5b737
此差异已折叠。
点击以展开。
app_Web/src/widgets/ibizbook/usr2-dataview/usr2-dataview-model.ts
浏览文件 @
2da5b737
...
...
@@ -11,7 +11,7 @@ export default class Usr2Model {
* 获取数据项集合
*
* @returns {any[]}
* @memberof Usr2Data
V
iewMode
* @memberof Usr2Data
viewexpbar_datav
iewMode
*/
public
getDataItems
():
any
[]
{
return
[
...
...
@@ -40,17 +40,6 @@ export default class Usr2Model {
dataType
:
'FONTKEY'
,
},
{
name
:
'n_ibizbookname_like'
,
prop
:
'n_ibizbookname_like'
,
dataType
:
'QUERYPARAM'
},
{
name
:
'n_price_gtandeq'
,
prop
:
'n_price_gtandeq'
,
dataType
:
'QUERYPARAM'
},
{
name
:
'size'
,
...
...
demo-boot/src/main/resources/static/remotemodel/PSSYSAPPS/Web/PSAPPDATAENTITIES/IBIZBOOK.json
浏览文件 @
2da5b737
...
...
@@ -2556,6 +2556,68 @@
}
}
],
"parallelOutput"
:
true
},
{
"codeName"
:
"BINDPARAM2"
,
"getDstPSDEUILogicParam"
:
{
"modelref"
:
true
,
"id"
:
"grid"
},
"logicNodeType"
:
"BINDPARAM"
,
"name"
:
"绑定表格"
,
"getPSDEUILogicLinks"
:
[
{
"getDstPSDEUILogicNode"
:
{
"modelref"
:
true
,
"id"
:
"VIEWCTRLINVOKE2"
},
"linkMode"
:
0
,
"name"
:
"存在搜索表单"
,
"getPSDEUILogicLinkGroupCond"
:
{
"groupOP"
:
"AND"
,
"logicType"
:
"GROUP"
,
"getPSDEUILogicLinkConds"
:
[
{
"condOP"
:
"ISNOTNULL"
,
"getDstLogicParam"
:
{
"modelref"
:
true
,
"id"
:
"searchForm"
},
"logicType"
:
"SINGLE"
,
"name"
:
"searchForm 值不为空(NotNil)"
}
]
},
"getSrcPSDEUILogicNode"
:
{
"modelref"
:
true
,
"id"
:
"BINDPARAM2"
}
},
{
"getDstPSDEUILogicNode"
:
{
"modelref"
:
true
,
"id"
:
"VIEWCTRLINVOKE1"
},
"linkMode"
:
0
,
"name"
:
"不存在搜索表单"
,
"getPSDEUILogicLinkGroupCond"
:
{
"groupOP"
:
"AND"
,
"logicType"
:
"GROUP"
,
"getPSDEUILogicLinkConds"
:
[
{
"condOP"
:
"ISNULL"
,
"getDstLogicParam"
:
{
"modelref"
:
true
,
"id"
:
"searchForm"
},
"logicType"
:
"SINGLE"
,
"name"
:
"searchForm 值为空(Nil)"
}
]
},
"getSrcPSDEUILogicNode"
:
{
"modelref"
:
true
,
"id"
:
"BINDPARAM2"
}
}
],
"srcFieldName"
:
"grid"
,
"getSrcPSDEUILogicParam"
:
{
"modelref"
:
true
,
"id"
:
"view"
}
},
{
"codeName"
:
"VIEWCTRLINVOKE2"
,
"getInvokeCtrl"
:
{
...
...
@@ -2640,101 +2702,44 @@
"id"
:
"VIEWCTRLINVOKE1"
}
}
]
},
{
"codeName"
:
"BINDPARAM2"
,
"getDstPSDEUILogicParam"
:
{
"modelref"
:
true
,
"id"
:
"grid"
},
"logicNodeType"
:
"BINDPARAM"
,
"name"
:
"绑定表格"
,
"getPSDEUILogicLinks"
:
[
{
"getDstPSDEUILogicNode"
:
{
"modelref"
:
true
,
"id"
:
"VIEWCTRLINVOKE2"
},
"linkMode"
:
0
,
"name"
:
"存在搜索表单"
,
"getPSDEUILogicLinkGroupCond"
:
{
"groupOP"
:
"AND"
,
"logicType"
:
"GROUP"
,
"getPSDEUILogicLinkConds"
:
[
{
"condOP"
:
"ISNOTNULL"
,
"getDstLogicParam"
:
{
"modelref"
:
true
,
"id"
:
"searchForm"
},
"logicType"
:
"SINGLE"
,
"name"
:
"searchForm 值不为空(NotNil)"
}
]
},
"getSrcPSDEUILogicNode"
:
{
"modelref"
:
true
,
"id"
:
"BINDPARAM2"
}
},
{
"getDstPSDEUILogicNode"
:
{
"modelref"
:
true
,
"id"
:
"VIEWCTRLINVOKE1"
},
"linkMode"
:
0
,
"name"
:
"不存在搜索表单"
,
"getPSDEUILogicLinkGroupCond"
:
{
"groupOP"
:
"AND"
,
"logicType"
:
"GROUP"
,
"getPSDEUILogicLinkConds"
:
[
{
"condOP"
:
"ISNULL"
,
"getDstLogicParam"
:
{
"modelref"
:
true
,
"id"
:
"searchForm"
},
"logicType"
:
"SINGLE"
,
"name"
:
"searchForm 值为空(Nil)"
}
]
},
"getSrcPSDEUILogicNode"
:
{
"modelref"
:
true
,
"id"
:
"BINDPARAM2"
}
}
],
"srcFieldName"
:
"grid"
,
"getSrcPSDEUILogicParam"
:
{
"modelref"
:
true
,
"id"
:
"view"
}
}
],
"getPSDEUILogicParams"
:
[
{
"codeName"
:
"searchForm"
,
"logicName"
:
"搜索表单部件"
,
"name"
:
"搜索表单部件"
,
"codeName"
:
"viewParam"
,
"logicName"
:
"视图参数"
,
"name"
:
"视图参数"
,
"viewNavDataParam"
:
true
},
{
"codeName"
:
"curCtrl"
,
"logicName"
:
"当前激活部件"
,
"name"
:
"当前激活部件"
,
"activeCtrlParam"
:
true
,
"ctrlParam"
:
true
},
{
"codeName"
:
"Default"
,
"logicName"
:
"传入变量"
,
"name"
:
"传入变量"
,
"default"
:
true
,
"entityParam"
:
true
"codeName"
:
"grid"
,
"logicName"
:
"表格部件"
,
"name"
:
"表格部件"
,
"ctrlParam"
:
true
},
{
"codeName"
:
"view"
,
"logicName"
:
"当前视图"
,
"name"
:
"当前视图"
,
"activeViewParam"
:
true
},
{
"codeName"
:
"
grid
"
,
"logicName"
:
"
表格
部件"
,
"name"
:
"
表格
部件"
,
"codeName"
:
"
searchForm
"
,
"logicName"
:
"
搜索表单
部件"
,
"name"
:
"
搜索表单
部件"
,
"ctrlParam"
:
true
},
{
"codeName"
:
"
v
iewParam"
,
"logicName"
:
"
视图参数
"
,
"name"
:
"
视图参数
"
,
"
viewNavData
Param"
:
true
"codeName"
:
"
routeV
iewParam"
,
"logicName"
:
"
路由参数变量
"
,
"name"
:
"
路由参数变量
"
,
"
navViewParam
Param"
:
true
},
{
"codeName"
:
"
curCtrl
"
,
"logicName"
:
"
当前激活部件
"
,
"name"
:
"
当前激活部件
"
,
"
activeCtrlParam
"
:
true
,
"
ctrl
Param"
:
true
"codeName"
:
"
Default
"
,
"logicName"
:
"
传入变量
"
,
"name"
:
"
传入变量
"
,
"
default
"
:
true
,
"
entity
Param"
:
true
}
],
"getStartPSDEUILogicNode"
:
{
"modelref"
:
true
,
...
...
demo-boot/src/main/resources/static/remotemodel/PSSYSAPPS/Web/PSAPPDATAENTITIES/IBIZBOOK/PSGANTTS/Usr.json
浏览文件 @
2da5b737
...
...
@@ -11,11 +11,11 @@
"path"
:
"PSSYSAPPS/Web/PSAPPDATAENTITIES/IBIZBOOK.json"
},
"getPSDETreeColumns"
:
[
{
"caption"
:
"
归还日期
"
,
"codeName"
:
"
returntime
"
,
"caption"
:
"
作者
"
,
"codeName"
:
"
author
"
,
"columnType"
:
"DEFGRIDCOLUMN"
,
"dataItemName"
:
"
returntime
"
,
"name"
:
"
returntime
"
,
"dataItemName"
:
"
author
"
,
"name"
:
"
author
"
,
"width"
:
200
,
"widthUnit"
:
"px"
,
"enableExpand"
:
false
,
...
...
@@ -30,6 +30,16 @@
"widthUnit"
:
"px"
,
"enableExpand"
:
false
,
"enableSort"
:
false
},
{
"caption"
:
"归还日期"
,
"codeName"
:
"returntime"
,
"columnType"
:
"DEFGRIDCOLUMN"
,
"dataItemName"
:
"returntime"
,
"name"
:
"returntime"
,
"width"
:
200
,
"widthUnit"
:
"px"
,
"enableExpand"
:
false
,
"enableSort"
:
false
},
{
"caption"
:
"出版社"
,
"codeName"
:
"press"
,
...
...
@@ -50,16 +60,6 @@
"widthUnit"
:
"px"
,
"enableExpand"
:
false
,
"enableSort"
:
false
},
{
"caption"
:
"作者"
,
"codeName"
:
"author"
,
"columnType"
:
"DEFGRIDCOLUMN"
,
"dataItemName"
:
"author"
,
"name"
:
"author"
,
"width"
:
200
,
"widthUnit"
:
"px"
,
"enableExpand"
:
false
,
"enableSort"
:
false
}
],
"getPSDETreeNodeRSs"
:
[
{
"getChildPSDETreeNode"
:
{
...
...
demo-boot/src/main/resources/static/remotemodel/PSSYSAPPS/Web/PSAPPDATAENTITIES/IBIZBOOK/PSTREEGRIDICES/TreeTable.json
浏览文件 @
2da5b737
...
...
@@ -19,11 +19,11 @@
}
}
],
"getPSDETreeColumns"
:
[
{
"caption"
:
"
作者
"
,
"codeName"
:
"
author
"
,
"caption"
:
"
图书描述
"
,
"codeName"
:
"
subtext
"
,
"columnType"
:
"DEFGRIDCOLUMN"
,
"dataItemName"
:
"
author
"
,
"name"
:
"
author
"
,
"dataItemName"
:
"
subtext
"
,
"name"
:
"
subtext
"
,
"width"
:
50
,
"widthUnit"
:
"px"
,
"enableExpand"
:
false
,
...
...
@@ -39,11 +39,11 @@
"enableExpand"
:
false
,
"enableSort"
:
false
},
{
"caption"
:
"
图书描述
"
,
"codeName"
:
"
subtext
"
,
"caption"
:
"
作者
"
,
"codeName"
:
"
author
"
,
"columnType"
:
"DEFGRIDCOLUMN"
,
"dataItemName"
:
"
subtext
"
,
"name"
:
"
subtext
"
,
"dataItemName"
:
"
author
"
,
"name"
:
"
author
"
,
"width"
:
50
,
"widthUnit"
:
"px"
,
"enableExpand"
:
false
,
...
...
demo-boot/src/main/resources/static/remotemodel/PSSYSAPPS/Web/PSAPPDEVIEWS/IBIZBOOKGanttView.json
浏览文件 @
2da5b737
...
...
@@ -34,11 +34,11 @@
"id"
:
"GANTT"
},
"getPSDETreeColumns"
:
[
{
"caption"
:
"
归还日期
"
,
"codeName"
:
"
returntime
"
,
"caption"
:
"
作者
"
,
"codeName"
:
"
author
"
,
"columnType"
:
"DEFGRIDCOLUMN"
,
"dataItemName"
:
"
returntime
"
,
"name"
:
"
returntime
"
,
"dataItemName"
:
"
author
"
,
"name"
:
"
author
"
,
"width"
:
200
,
"widthUnit"
:
"px"
,
"enableExpand"
:
false
,
...
...
@@ -53,6 +53,16 @@
"widthUnit"
:
"px"
,
"enableExpand"
:
false
,
"enableSort"
:
false
},
{
"caption"
:
"归还日期"
,
"codeName"
:
"returntime"
,
"columnType"
:
"DEFGRIDCOLUMN"
,
"dataItemName"
:
"returntime"
,
"name"
:
"returntime"
,
"width"
:
200
,
"widthUnit"
:
"px"
,
"enableExpand"
:
false
,
"enableSort"
:
false
},
{
"caption"
:
"出版社"
,
"codeName"
:
"press"
,
...
...
@@ -73,16 +83,6 @@
"widthUnit"
:
"px"
,
"enableExpand"
:
false
,
"enableSort"
:
false
},
{
"caption"
:
"作者"
,
"codeName"
:
"author"
,
"columnType"
:
"DEFGRIDCOLUMN"
,
"dataItemName"
:
"author"
,
"name"
:
"author"
,
"width"
:
200
,
"widthUnit"
:
"px"
,
"enableExpand"
:
false
,
"enableSort"
:
false
}
],
"getPSDETreeNodeRSs"
:
[
{
"getChildPSDETreeNode"
:
{
...
...
demo-boot/src/main/resources/static/remotemodel/PSSYSAPPS/Web/PSAPPDEVIEWS/IBIZBOOKTreeGridExView.json
浏览文件 @
2da5b737
...
...
@@ -75,11 +75,11 @@
"id"
:
"TREEGRIDEX"
},
"getPSDETreeColumns"
:
[
{
"caption"
:
"
作者
"
,
"codeName"
:
"
author
"
,
"caption"
:
"
图书描述
"
,
"codeName"
:
"
subtext
"
,
"columnType"
:
"DEFGRIDCOLUMN"
,
"dataItemName"
:
"
author
"
,
"name"
:
"
author
"
,
"dataItemName"
:
"
subtext
"
,
"name"
:
"
subtext
"
,
"width"
:
50
,
"widthUnit"
:
"px"
,
"enableExpand"
:
false
,
...
...
@@ -95,11 +95,11 @@
"enableExpand"
:
false
,
"enableSort"
:
false
},
{
"caption"
:
"
图书描述
"
,
"codeName"
:
"
subtext
"
,
"caption"
:
"
作者
"
,
"codeName"
:
"
author
"
,
"columnType"
:
"DEFGRIDCOLUMN"
,
"dataItemName"
:
"
subtext
"
,
"name"
:
"
subtext
"
,
"dataItemName"
:
"
author
"
,
"name"
:
"
author
"
,
"width"
:
50
,
"widthUnit"
:
"px"
,
"enableExpand"
:
false
,
...
...
demo-boot/src/main/resources/static/remotemodel/PSSYSAPPS/Web/PSSYSAPP.json
浏览文件 @
2da5b737
...
...
@@ -27469,6 +27469,68 @@
}
}
],
"parallelOutput"
:
true
},
{
"codeName"
:
"BINDPARAM2"
,
"getDstPSDEUILogicParam"
:
{
"modelref"
:
true
,
"id"
:
"grid"
},
"logicNodeType"
:
"BINDPARAM"
,
"name"
:
"绑定表格"
,
"getPSDEUILogicLinks"
:
[
{
"getDstPSDEUILogicNode"
:
{
"modelref"
:
true
,
"id"
:
"VIEWCTRLINVOKE2"
},
"linkMode"
:
0
,
"name"
:
"存在搜索表单"
,
"getPSDEUILogicLinkGroupCond"
:
{
"groupOP"
:
"AND"
,
"logicType"
:
"GROUP"
,
"getPSDEUILogicLinkConds"
:
[
{
"condOP"
:
"ISNOTNULL"
,
"getDstLogicParam"
:
{
"modelref"
:
true
,
"id"
:
"searchForm"
},
"logicType"
:
"SINGLE"
,
"name"
:
"searchForm 值不为空(NotNil)"
}
]
},
"getSrcPSDEUILogicNode"
:
{
"modelref"
:
true
,
"id"
:
"BINDPARAM2"
}
},
{
"getDstPSDEUILogicNode"
:
{
"modelref"
:
true
,
"id"
:
"VIEWCTRLINVOKE1"
},
"linkMode"
:
0
,
"name"
:
"不存在搜索表单"
,
"getPSDEUILogicLinkGroupCond"
:
{
"groupOP"
:
"AND"
,
"logicType"
:
"GROUP"
,
"getPSDEUILogicLinkConds"
:
[
{
"condOP"
:
"ISNULL"
,
"getDstLogicParam"
:
{
"modelref"
:
true
,
"id"
:
"searchForm"
},
"logicType"
:
"SINGLE"
,
"name"
:
"searchForm 值为空(Nil)"
}
]
},
"getSrcPSDEUILogicNode"
:
{
"modelref"
:
true
,
"id"
:
"BINDPARAM2"
}
}
],
"srcFieldName"
:
"grid"
,
"getSrcPSDEUILogicParam"
:
{
"modelref"
:
true
,
"id"
:
"view"
}
},
{
"codeName"
:
"VIEWCTRLINVOKE2"
,
"getInvokeCtrl"
:
{
...
...
@@ -27553,101 +27615,44 @@
"id"
:
"VIEWCTRLINVOKE1"
}
}
]
},
{
"codeName"
:
"BINDPARAM2"
,
"getDstPSDEUILogicParam"
:
{
"modelref"
:
true
,
"id"
:
"grid"
},
"logicNodeType"
:
"BINDPARAM"
,
"name"
:
"绑定表格"
,
"getPSDEUILogicLinks"
:
[
{
"getDstPSDEUILogicNode"
:
{
"modelref"
:
true
,
"id"
:
"VIEWCTRLINVOKE2"
},
"linkMode"
:
0
,
"name"
:
"存在搜索表单"
,
"getPSDEUILogicLinkGroupCond"
:
{
"groupOP"
:
"AND"
,
"logicType"
:
"GROUP"
,
"getPSDEUILogicLinkConds"
:
[
{
"condOP"
:
"ISNOTNULL"
,
"getDstLogicParam"
:
{
"modelref"
:
true
,
"id"
:
"searchForm"
},
"logicType"
:
"SINGLE"
,
"name"
:
"searchForm 值不为空(NotNil)"
}
]
},
"getSrcPSDEUILogicNode"
:
{
"modelref"
:
true
,
"id"
:
"BINDPARAM2"
}
},
{
"getDstPSDEUILogicNode"
:
{
"modelref"
:
true
,
"id"
:
"VIEWCTRLINVOKE1"
},
"linkMode"
:
0
,
"name"
:
"不存在搜索表单"
,
"getPSDEUILogicLinkGroupCond"
:
{
"groupOP"
:
"AND"
,
"logicType"
:
"GROUP"
,
"getPSDEUILogicLinkConds"
:
[
{
"condOP"
:
"ISNULL"
,
"getDstLogicParam"
:
{
"modelref"
:
true
,
"id"
:
"searchForm"
},
"logicType"
:
"SINGLE"
,
"name"
:
"searchForm 值为空(Nil)"
}
]
},
"getSrcPSDEUILogicNode"
:
{
"modelref"
:
true
,
"id"
:
"BINDPARAM2"
}
}
],
"srcFieldName"
:
"grid"
,
"getSrcPSDEUILogicParam"
:
{
"modelref"
:
true
,
"id"
:
"view"
}
}
],
"getPSDEUILogicParams"
:
[
{
"codeName"
:
"searchForm"
,
"logicName"
:
"搜索表单部件"
,
"name"
:
"搜索表单部件"
,
"codeName"
:
"viewParam"
,
"logicName"
:
"视图参数"
,
"name"
:
"视图参数"
,
"viewNavDataParam"
:
true
},
{
"codeName"
:
"curCtrl"
,
"logicName"
:
"当前激活部件"
,
"name"
:
"当前激活部件"
,
"activeCtrlParam"
:
true
,
"ctrlParam"
:
true
},
{
"codeName"
:
"Default"
,
"logicName"
:
"传入变量"
,
"name"
:
"传入变量"
,
"default"
:
true
,
"entityParam"
:
true
"codeName"
:
"grid"
,
"logicName"
:
"表格部件"
,
"name"
:
"表格部件"
,
"ctrlParam"
:
true
},
{
"codeName"
:
"view"
,
"logicName"
:
"当前视图"
,
"name"
:
"当前视图"
,
"activeViewParam"
:
true
},
{
"codeName"
:
"
grid
"
,
"logicName"
:
"
表格
部件"
,
"name"
:
"
表格
部件"
,
"codeName"
:
"
searchForm
"
,
"logicName"
:
"
搜索表单
部件"
,
"name"
:
"
搜索表单
部件"
,
"ctrlParam"
:
true
},
{
"codeName"
:
"
v
iewParam"
,
"logicName"
:
"
视图参数
"
,
"name"
:
"
视图参数
"
,
"
viewNavData
Param"
:
true
"codeName"
:
"
routeV
iewParam"
,
"logicName"
:
"
路由参数变量
"
,
"name"
:
"
路由参数变量
"
,
"
navViewParam
Param"
:
true
},
{
"codeName"
:
"
curCtrl
"
,
"logicName"
:
"
当前激活部件
"
,
"name"
:
"
当前激活部件
"
,
"
activeCtrlParam
"
:
true
,
"
ctrl
Param"
:
true
"codeName"
:
"
Default
"
,
"logicName"
:
"
传入变量
"
,
"name"
:
"
传入变量
"
,
"
default
"
:
true
,
"
entity
Param"
:
true
}
],
"getStartPSDEUILogicNode"
:
{
"modelref"
:
true
,
...
...
demo-core/src/main/resources/liquibase/h2_table.xml
浏览文件 @
2da5b737
...
...
@@ -172,7 +172,7 @@
<!--输出实体[IBIZBOOK]数据结构 -->
<changeSet
author=
"a_LAB01_df847bdfd"
id=
"tab-ibizbook-85
0
-7"
>
<changeSet
author=
"a_LAB01_df847bdfd"
id=
"tab-ibizbook-85
4
-7"
>
<createTable
tableName=
"T_IBIZBOOK"
>
<column
name=
"CREATEMAN"
remarks=
""
type=
"VARCHAR(60)"
>
</column>
...
...
编辑
预览
Markdown
格式
0%
请重试
or
添加新附件
添加附件
取消
您添加了
0
人
到此讨论。请谨慎行事。
先完成此消息的编辑!
取消
想要评论请
注册
或
登录