Skip to content
项目
群组
代码片段
帮助
正在加载...
帮助
提交反馈
为 GitLab 提交贡献
登录
切换导航
T
TrainSys
项目
项目
详情
动态
版本
周期分析
仓库
仓库
文件
提交
分支
标签
贡献者
分支图
比较
统计图
议题
0
议题
0
列表
看板
标记
里程碑
合并请求
0
合并请求
0
CI / CD
CI / CD
流水线
作业
计划
统计图
Wiki
Wiki
代码片段
代码片段
成员
成员
收起侧边栏
关闭侧边栏
动态
分支图
统计图
创建新议题
作业
提交
议题看板
打开侧边栏
苏州培训方案
TrainSys
提交
60917530
提交
60917530
编写于
9月 20, 2022
作者:
ibizdev
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
zhujiamin 发布系统代码 [TrainSys,网页端]
上级
78607388
变更
12
展开全部
隐藏空白字符变更
内嵌
并排
正在显示
12 个修改的文件
包含
1417 行增加
和
1303 行删除
+1417
-1303
prepareparam-node.ts
...ervice/data-service/logic/logic-node/prepareparam-node.ts
+1
-2
app-grid-model.ts
app_Web/packages/ibiz-vue/src/ctrl-model/app-grid-model.ts
+5
-0
grid-control-base.tsx
app_Web/packages/ibiz-vue/src/widgets/grid-control-base.tsx
+3
-1
h2_table.xml
trainsys-core/src/main/resources/liquibase/h2_table.xml
+1
-1
EditorTest.json
...YSAPPS/Web/PSAPPDATAENTITIES/Book/PSFORMS/EditorTest.json
+407
-371
Main.json
...PSSYSAPPS/Web/PSAPPDATAENTITIES/Reginfo/PSGRIDS/Main.json
+31
-31
Main.json
...PSSYSAPPS/Web/PSAPPDATAENTITIES/Student/PSFORMS/Main.json
+31
-31
ReginfoGridView.json
.../trainsys/PSSYSAPPS/Web/PSAPPDEVIEWS/ReginfoGridView.json
+31
-31
ReginfoStuInfoList.json
...ainsys/PSSYSAPPS/Web/PSAPPDEVIEWS/ReginfoStuInfoList.json
+31
-31
bookBookEditViewEditorTest.json
...SSYSAPPS/Web/PSAPPDEVIEWS/bookBookEditViewEditorTest.json
+407
-371
studentEditView.json
.../trainsys/PSSYSAPPS/Web/PSAPPDEVIEWS/studentEditView.json
+31
-31
PSSYSAPP.json
...ces/model/cn/ibizlab/trainsys/PSSYSAPPS/Web/PSSYSAPP.json
+438
-402
未找到文件。
app_Web/packages/ibiz-core/src/service/data-service/logic/logic-node/prepareparam-node.ts
浏览文件 @
60917530
...
@@ -203,8 +203,7 @@ export class AppDeLogicPrepareParamNode extends AppDeLogicNodeBase {
...
@@ -203,8 +203,7 @@ export class AppDeLogicPrepareParamNode extends AppDeLogicNodeBase {
const srcFieldName: string = logicNodeParam.srcFieldName?.toLowerCase?.();
const srcFieldName: string = logicNodeParam.srcFieldName?.toLowerCase?.();
let objParam: any;
let objParam: any;
if (srcFieldName) {
if (srcFieldName) {
// objParam = srcParam.get(srcFieldName);
objParam = srcParam.get(srcFieldName);
objParam = srcParam.getReal();
} else {
} else {
objParam = srcParam.getReal();
objParam = srcParam.getReal();
}
}
...
...
app_Web/packages/ibiz-vue/src/ctrl-model/app-grid-model.ts
浏览文件 @
60917530
...
@@ -41,6 +41,11 @@ export class AppGridModel {
...
@@ -41,6 +41,11 @@ export class AppGridModel {
prop
:
'size'
,
prop
:
'size'
,
dataType
:
'QUERYPARAM'
dataType
:
'QUERYPARAM'
},
},
{
name
:
'offset'
,
prop
:
'offset'
,
dataType
:
'QUERYPARAM'
},
{
{
name
:
'query'
,
name
:
'query'
,
prop
:
'query'
,
prop
:
'query'
,
...
...
app_Web/packages/ibiz-vue/src/widgets/grid-control-base.tsx
浏览文件 @
60917530
...
@@ -1518,6 +1518,8 @@ export class GridControlBase extends MDControlBase implements GridControlInterfa
...
@@ -1518,6 +1518,8 @@ export class GridControlBase extends MDControlBase implements GridControlInterfa
}
}
return;
return;
}
}
} else if (Object.is(args.type, 'custom')) {
Object.assign(page, { page: 0, offset: (args.startPage - 1) * this.limit, size: (args.endPage - args.startPage + 1) * this.limit });
}
}
// 设置排序
// 设置排序
if (!this.isNoSort && Util.isExistAndNotEmpty(this.minorSortDir) && Util.isExistAndNotEmpty(this.minorSortPSDEF)) {
if (!this.isNoSort && Util.isExistAndNotEmpty(this.minorSortDir) && Util.isExistAndNotEmpty(this.minorSortPSDEF)) {
...
@@ -1597,7 +1599,7 @@ export class GridControlBase extends MDControlBase implements GridControlInterfa
...
@@ -1597,7 +1599,7 @@ export class GridControlBase extends MDControlBase implements GridControlInterfa
url
+=
`?srfexporttag=
${
exportModel
?.
codeName
}
`
url
+=
`?srfexporttag=
${
exportModel
?.
codeName
}
`
if (args.type === 'maxRowCount') {
if (args.type === 'maxRowCount') {
Object.assign(params, { page: 0
, size: args.maxRowCount ? args.maxRowCount : 1000
});
Object.assign(params, { page: 0 });
} else if (args.type === 'activatedPage') {
} else if (args.type === 'activatedPage') {
Object.assign(params, { page: this.curPage - 1, size: this.limit });
Object.assign(params, { page: this.curPage - 1, size: this.limit });
} else if (args.type === 'custom') {
} else if (args.type === 'custom') {
...
...
trainsys-core/src/main/resources/liquibase/h2_table.xml
浏览文件 @
60917530
...
@@ -50,7 +50,7 @@
...
@@ -50,7 +50,7 @@
</changeSet>
</changeSet>
<!--输出实体[BOOK]数据结构 -->
<!--输出实体[BOOK]数据结构 -->
<changeSet
author=
"root"
id=
"tab-book-22
7
-3"
>
<changeSet
author=
"root"
id=
"tab-book-22
9
-3"
>
<createTable
tableName=
"T_BOOK"
>
<createTable
tableName=
"T_BOOK"
>
<column
name=
"BOOKNAME"
remarks=
""
type=
"VARCHAR(200)"
>
<column
name=
"BOOKNAME"
remarks=
""
type=
"VARCHAR(200)"
>
</column>
</column>
...
...
trainsys-core/src/main/resources/model/cn/ibizlab/trainsys/PSSYSAPPS/Web/PSAPPDATAENTITIES/Book/PSFORMS/EditorTest.json
浏览文件 @
60917530
此差异已折叠。
点击以展开。
trainsys-core/src/main/resources/model/cn/ibizlab/trainsys/PSSYSAPPS/Web/PSAPPDATAENTITIES/Reginfo/PSGRIDS/Main.json
浏览文件 @
60917530
...
@@ -60,34 +60,34 @@
...
@@ -60,34 +60,34 @@
"getPSAppViewLogics"
:
[
{
"getPSAppViewLogics"
:
[
{
"logicTrigger"
:
"CUSTOM"
,
"logicTrigger"
:
"CUSTOM"
,
"logicType"
:
"APPVIEWUIACTION"
,
"logicType"
:
"APPVIEWUIACTION"
,
"name"
:
"grid_uagridcolumn1_u
479f517
_click"
,
"name"
:
"grid_uagridcolumn1_u
a98d563
_click"
,
"getPSAppViewUIAction"
:
{
"getPSAppViewUIAction"
:
{
"modelref"
:
true
,
"modelref"
:
true
,
"id"
:
"表格界面_
编辑
操作"
"id"
:
"表格界面_
行编辑开关
操作"
}
}
},
{
},
{
"logicTrigger"
:
"CUSTOM"
,
"logicTrigger"
:
"CUSTOM"
,
"logicType"
:
"APPVIEWUIACTION"
,
"logicType"
:
"APPVIEWUIACTION"
,
"name"
:
"grid_uagridcolumn1_u
a98d563
_click"
,
"name"
:
"grid_uagridcolumn1_u
479f517
_click"
,
"getPSAppViewUIAction"
:
{
"getPSAppViewUIAction"
:
{
"modelref"
:
true
,
"modelref"
:
true
,
"id"
:
"表格界面_
行编辑开关
操作"
"id"
:
"表格界面_
编辑
操作"
}
}
}
],
}
],
"getPSAppViewUIActions"
:
[
{
"getPSAppViewUIActions"
:
[
{
"name"
:
"表格界面_
编辑
操作"
,
"name"
:
"表格界面_
行编辑开关
操作"
,
"getPSUIAction"
:
{
"getPSUIAction"
:
{
"modelref"
:
true
,
"modelref"
:
true
,
"id"
:
"Edit"
"id"
:
"
ToggleRow
Edit"
},
},
"uIActionTarget"
:
"SINGLEKEY"
,
"xDataControlName"
:
"grid"
"xDataControlName"
:
"grid"
},
{
},
{
"name"
:
"表格界面_
行编辑开关
操作"
,
"name"
:
"表格界面_
编辑
操作"
,
"getPSUIAction"
:
{
"getPSUIAction"
:
{
"modelref"
:
true
,
"modelref"
:
true
,
"id"
:
"
ToggleRow
Edit"
"id"
:
"Edit"
},
},
"uIActionTarget"
:
"SINGLEKEY"
,
"xDataControlName"
:
"grid"
"xDataControlName"
:
"grid"
}
],
}
],
"getPSControlLogics"
:
[
{
"getPSControlLogics"
:
[
{
...
@@ -217,6 +217,28 @@
...
@@ -217,6 +217,28 @@
"getPSDEUIActionGroup"
:
{
"getPSDEUIActionGroup"
:
{
"name"
:
"操作列"
,
"name"
:
"操作列"
,
"getPSUIActionGroupDetails"
:
[
{
"getPSUIActionGroupDetails"
:
[
{
"detailType"
:
"DEUIACTION"
,
"name"
:
"ua98d563"
,
"getPSUIAction"
:
{
"caption"
:
"行编辑"
,
"codeName"
:
"ToggleRowEdit"
,
"fullCodeName"
:
"ToggleRowEdit"
,
"name"
:
"表格界面_行编辑开关操作"
,
"getPSSysImage"
:
{
"glyph"
:
"xf0ce@FontAwesome"
,
"cssClass"
:
"fa fa-table"
},
"predefinedType"
:
"GRIDVIEW_ROWEDITACTION"
,
"timeout"
:
60000
,
"uIActionMode"
:
"SYS"
,
"uIActionTag"
:
"ToggleRowEdit"
,
"uIActionType"
:
"DEUIACTION"
,
"enableToggleMode"
:
true
},
"addSeparator"
:
false
,
"showCaption"
:
true
,
"showIcon"
:
false
},
{
"detailType"
:
"DEUIACTION"
,
"detailType"
:
"DEUIACTION"
,
"name"
:
"u479f517"
,
"name"
:
"u479f517"
,
"getPSUIAction"
:
{
"getPSUIAction"
:
{
...
@@ -244,28 +266,6 @@
...
@@ -244,28 +266,6 @@
"addSeparator"
:
true
,
"addSeparator"
:
true
,
"showCaption"
:
true
,
"showCaption"
:
true
,
"showIcon"
:
true
"showIcon"
:
true
},
{
"detailType"
:
"DEUIACTION"
,
"name"
:
"ua98d563"
,
"getPSUIAction"
:
{
"caption"
:
"行编辑"
,
"codeName"
:
"ToggleRowEdit"
,
"fullCodeName"
:
"ToggleRowEdit"
,
"name"
:
"表格界面_行编辑开关操作"
,
"getPSSysImage"
:
{
"glyph"
:
"xf0ce@FontAwesome"
,
"cssClass"
:
"fa fa-table"
},
"predefinedType"
:
"GRIDVIEW_ROWEDITACTION"
,
"timeout"
:
60000
,
"uIActionMode"
:
"SYS"
,
"uIActionTag"
:
"ToggleRowEdit"
,
"uIActionType"
:
"DEUIACTION"
,
"enableToggleMode"
:
true
},
"addSeparator"
:
false
,
"showCaption"
:
true
,
"showIcon"
:
false
}
]
}
]
},
},
"width"
:
100
,
"width"
:
100
,
...
...
trainsys-core/src/main/resources/model/cn/ibizlab/trainsys/PSSYSAPPS/Web/PSAPPDATAENTITIES/Student/PSFORMS/Main.json
浏览文件 @
60917530
...
@@ -553,34 +553,34 @@
...
@@ -553,34 +553,34 @@
"getPSAppViewLogics"
:
[
{
"getPSAppViewLogics"
:
[
{
"logicTrigger"
:
"CUSTOM"
,
"logicTrigger"
:
"CUSTOM"
,
"logicType"
:
"APPVIEWUIACTION"
,
"logicType"
:
"APPVIEWUIACTION"
,
"name"
:
"grid_uagridcolumn1_u
479f517
_click"
,
"name"
:
"grid_uagridcolumn1_u
a98d563
_click"
,
"getPSAppViewUIAction"
:
{
"getPSAppViewUIAction"
:
{
"modelref"
:
true
,
"modelref"
:
true
,
"id"
:
"表格界面_
编辑
操作"
"id"
:
"表格界面_
行编辑开关
操作"
}
}
},
{
},
{
"logicTrigger"
:
"CUSTOM"
,
"logicTrigger"
:
"CUSTOM"
,
"logicType"
:
"APPVIEWUIACTION"
,
"logicType"
:
"APPVIEWUIACTION"
,
"name"
:
"grid_uagridcolumn1_u
a98d563
_click"
,
"name"
:
"grid_uagridcolumn1_u
479f517
_click"
,
"getPSAppViewUIAction"
:
{
"getPSAppViewUIAction"
:
{
"modelref"
:
true
,
"modelref"
:
true
,
"id"
:
"表格界面_
行编辑开关
操作"
"id"
:
"表格界面_
编辑
操作"
}
}
}
],
}
],
"getPSAppViewUIActions"
:
[
{
"getPSAppViewUIActions"
:
[
{
"name"
:
"表格界面_
编辑
操作"
,
"name"
:
"表格界面_
行编辑开关
操作"
,
"getPSUIAction"
:
{
"getPSUIAction"
:
{
"modelref"
:
true
,
"modelref"
:
true
,
"id"
:
"Edit"
"id"
:
"
ToggleRow
Edit"
},
},
"uIActionTarget"
:
"SINGLEKEY"
,
"xDataControlName"
:
"grid"
"xDataControlName"
:
"grid"
},
{
},
{
"name"
:
"表格界面_
行编辑开关
操作"
,
"name"
:
"表格界面_
编辑
操作"
,
"getPSUIAction"
:
{
"getPSUIAction"
:
{
"modelref"
:
true
,
"modelref"
:
true
,
"id"
:
"
ToggleRow
Edit"
"id"
:
"Edit"
},
},
"uIActionTarget"
:
"SINGLEKEY"
,
"xDataControlName"
:
"grid"
"xDataControlName"
:
"grid"
}
],
}
],
"getPSControlHandler"
:
{
"getPSControlHandler"
:
{
...
@@ -797,6 +797,28 @@
...
@@ -797,6 +797,28 @@
"getPSDEUIActionGroup"
:
{
"getPSDEUIActionGroup"
:
{
"name"
:
"操作列"
,
"name"
:
"操作列"
,
"getPSUIActionGroupDetails"
:
[
{
"getPSUIActionGroupDetails"
:
[
{
"detailType"
:
"DEUIACTION"
,
"name"
:
"ua98d563"
,
"getPSUIAction"
:
{
"caption"
:
"行编辑"
,
"codeName"
:
"ToggleRowEdit"
,
"fullCodeName"
:
"ToggleRowEdit"
,
"name"
:
"表格界面_行编辑开关操作"
,
"getPSSysImage"
:
{
"glyph"
:
"xf0ce@FontAwesome"
,
"cssClass"
:
"fa fa-table"
},
"predefinedType"
:
"GRIDVIEW_ROWEDITACTION"
,
"timeout"
:
60000
,
"uIActionMode"
:
"SYS"
,
"uIActionTag"
:
"ToggleRowEdit"
,
"uIActionType"
:
"DEUIACTION"
,
"enableToggleMode"
:
true
},
"addSeparator"
:
false
,
"showCaption"
:
true
,
"showIcon"
:
false
},
{
"detailType"
:
"DEUIACTION"
,
"detailType"
:
"DEUIACTION"
,
"name"
:
"u479f517"
,
"name"
:
"u479f517"
,
"getPSUIAction"
:
{
"getPSUIAction"
:
{
...
@@ -824,28 +846,6 @@
...
@@ -824,28 +846,6 @@
"addSeparator"
:
true
,
"addSeparator"
:
true
,
"showCaption"
:
true
,
"showCaption"
:
true
,
"showIcon"
:
true
"showIcon"
:
true
},
{
"detailType"
:
"DEUIACTION"
,
"name"
:
"ua98d563"
,
"getPSUIAction"
:
{
"caption"
:
"行编辑"
,
"codeName"
:
"ToggleRowEdit"
,
"fullCodeName"
:
"ToggleRowEdit"
,
"name"
:
"表格界面_行编辑开关操作"
,
"getPSSysImage"
:
{
"glyph"
:
"xf0ce@FontAwesome"
,
"cssClass"
:
"fa fa-table"
},
"predefinedType"
:
"GRIDVIEW_ROWEDITACTION"
,
"timeout"
:
60000
,
"uIActionMode"
:
"SYS"
,
"uIActionTag"
:
"ToggleRowEdit"
,
"uIActionType"
:
"DEUIACTION"
,
"enableToggleMode"
:
true
},
"addSeparator"
:
false
,
"showCaption"
:
true
,
"showIcon"
:
false
}
]
}
]
},
},
"width"
:
100
,
"width"
:
100
,
...
...
trainsys-core/src/main/resources/model/cn/ibizlab/trainsys/PSSYSAPPS/Web/PSAPPDEVIEWS/ReginfoGridView.json
浏览文件 @
60917530
...
@@ -373,34 +373,34 @@
...
@@ -373,34 +373,34 @@
"getPSAppViewLogics"
:
[
{
"getPSAppViewLogics"
:
[
{
"logicTrigger"
:
"CUSTOM"
,
"logicTrigger"
:
"CUSTOM"
,
"logicType"
:
"APPVIEWUIACTION"
,
"logicType"
:
"APPVIEWUIACTION"
,
"name"
:
"grid_uagridcolumn1_u
479f517
_click"
,
"name"
:
"grid_uagridcolumn1_u
a98d563
_click"
,
"getPSAppViewUIAction"
:
{
"getPSAppViewUIAction"
:
{
"modelref"
:
true
,
"modelref"
:
true
,
"id"
:
"表格界面_
编辑
操作"
"id"
:
"表格界面_
行编辑开关
操作"
}
}
},
{
},
{
"logicTrigger"
:
"CUSTOM"
,
"logicTrigger"
:
"CUSTOM"
,
"logicType"
:
"APPVIEWUIACTION"
,
"logicType"
:
"APPVIEWUIACTION"
,
"name"
:
"grid_uagridcolumn1_u
a98d563
_click"
,
"name"
:
"grid_uagridcolumn1_u
479f517
_click"
,
"getPSAppViewUIAction"
:
{
"getPSAppViewUIAction"
:
{
"modelref"
:
true
,
"modelref"
:
true
,
"id"
:
"表格界面_
行编辑开关
操作"
"id"
:
"表格界面_
编辑
操作"
}
}
}
],
}
],
"getPSAppViewUIActions"
:
[
{
"getPSAppViewUIActions"
:
[
{
"name"
:
"表格界面_
编辑
操作"
,
"name"
:
"表格界面_
行编辑开关
操作"
,
"getPSUIAction"
:
{
"getPSUIAction"
:
{
"modelref"
:
true
,
"modelref"
:
true
,
"id"
:
"Edit"
"id"
:
"
ToggleRow
Edit"
},
},
"uIActionTarget"
:
"SINGLEKEY"
,
"xDataControlName"
:
"grid"
"xDataControlName"
:
"grid"
},
{
},
{
"name"
:
"表格界面_
行编辑开关
操作"
,
"name"
:
"表格界面_
编辑
操作"
,
"getPSUIAction"
:
{
"getPSUIAction"
:
{
"modelref"
:
true
,
"modelref"
:
true
,
"id"
:
"
ToggleRow
Edit"
"id"
:
"Edit"
},
},
"uIActionTarget"
:
"SINGLEKEY"
,
"xDataControlName"
:
"grid"
"xDataControlName"
:
"grid"
}
],
}
],
"getPSControlHandler"
:
{
"getPSControlHandler"
:
{
...
@@ -617,6 +617,28 @@
...
@@ -617,6 +617,28 @@
"getPSDEUIActionGroup"
:
{
"getPSDEUIActionGroup"
:
{
"name"
:
"操作列"
,
"name"
:
"操作列"
,
"getPSUIActionGroupDetails"
:
[
{
"getPSUIActionGroupDetails"
:
[
{
"detailType"
:
"DEUIACTION"
,
"name"
:
"ua98d563"
,
"getPSUIAction"
:
{
"caption"
:
"行编辑"
,
"codeName"
:
"ToggleRowEdit"
,
"fullCodeName"
:
"ToggleRowEdit"
,
"name"
:
"表格界面_行编辑开关操作"
,
"getPSSysImage"
:
{
"glyph"
:
"xf0ce@FontAwesome"
,
"cssClass"
:
"fa fa-table"
},
"predefinedType"
:
"GRIDVIEW_ROWEDITACTION"
,
"timeout"
:
60000
,
"uIActionMode"
:
"SYS"
,
"uIActionTag"
:
"ToggleRowEdit"
,
"uIActionType"
:
"DEUIACTION"
,
"enableToggleMode"
:
true
},
"addSeparator"
:
false
,
"showCaption"
:
true
,
"showIcon"
:
false
},
{
"detailType"
:
"DEUIACTION"
,
"detailType"
:
"DEUIACTION"
,
"name"
:
"u479f517"
,
"name"
:
"u479f517"
,
"getPSUIAction"
:
{
"getPSUIAction"
:
{
...
@@ -644,28 +666,6 @@
...
@@ -644,28 +666,6 @@
"addSeparator"
:
true
,
"addSeparator"
:
true
,
"showCaption"
:
true
,
"showCaption"
:
true
,
"showIcon"
:
true
"showIcon"
:
true
},
{
"detailType"
:
"DEUIACTION"
,
"name"
:
"ua98d563"
,
"getPSUIAction"
:
{
"caption"
:
"行编辑"
,
"codeName"
:
"ToggleRowEdit"
,
"fullCodeName"
:
"ToggleRowEdit"
,
"name"
:
"表格界面_行编辑开关操作"
,
"getPSSysImage"
:
{
"glyph"
:
"xf0ce@FontAwesome"
,
"cssClass"
:
"fa fa-table"
},
"predefinedType"
:
"GRIDVIEW_ROWEDITACTION"
,
"timeout"
:
60000
,
"uIActionMode"
:
"SYS"
,
"uIActionTag"
:
"ToggleRowEdit"
,
"uIActionType"
:
"DEUIACTION"
,
"enableToggleMode"
:
true
},
"addSeparator"
:
false
,
"showCaption"
:
true
,
"showIcon"
:
false
}
]
}
]
},
},
"width"
:
100
,
"width"
:
100
,
...
...
trainsys-core/src/main/resources/model/cn/ibizlab/trainsys/PSSYSAPPS/Web/PSAPPDEVIEWS/ReginfoStuInfoList.json
浏览文件 @
60917530
...
@@ -425,34 +425,34 @@
...
@@ -425,34 +425,34 @@
"getPSAppViewLogics"
:
[
{
"getPSAppViewLogics"
:
[
{
"logicTrigger"
:
"CUSTOM"
,
"logicTrigger"
:
"CUSTOM"
,
"logicType"
:
"APPVIEWUIACTION"
,
"logicType"
:
"APPVIEWUIACTION"
,
"name"
:
"grid_uagridcolumn1_u
479f517
_click"
,
"name"
:
"grid_uagridcolumn1_u
a98d563
_click"
,
"getPSAppViewUIAction"
:
{
"getPSAppViewUIAction"
:
{
"modelref"
:
true
,
"modelref"
:
true
,
"id"
:
"表格界面_
编辑
操作"
"id"
:
"表格界面_
行编辑开关
操作"
}
}
},
{
},
{
"logicTrigger"
:
"CUSTOM"
,
"logicTrigger"
:
"CUSTOM"
,
"logicType"
:
"APPVIEWUIACTION"
,
"logicType"
:
"APPVIEWUIACTION"
,
"name"
:
"grid_uagridcolumn1_u
a98d563
_click"
,
"name"
:
"grid_uagridcolumn1_u
479f517
_click"
,
"getPSAppViewUIAction"
:
{
"getPSAppViewUIAction"
:
{
"modelref"
:
true
,
"modelref"
:
true
,
"id"
:
"表格界面_
行编辑开关
操作"
"id"
:
"表格界面_
编辑
操作"
}
}
}
],
}
],
"getPSAppViewUIActions"
:
[
{
"getPSAppViewUIActions"
:
[
{
"name"
:
"表格界面_
编辑
操作"
,
"name"
:
"表格界面_
行编辑开关
操作"
,
"getPSUIAction"
:
{
"getPSUIAction"
:
{
"modelref"
:
true
,
"modelref"
:
true
,
"id"
:
"Edit"
"id"
:
"
ToggleRow
Edit"
},
},
"uIActionTarget"
:
"SINGLEKEY"
,
"xDataControlName"
:
"grid"
"xDataControlName"
:
"grid"
},
{
},
{
"name"
:
"表格界面_
行编辑开关
操作"
,
"name"
:
"表格界面_
编辑
操作"
,
"getPSUIAction"
:
{
"getPSUIAction"
:
{
"modelref"
:
true
,
"modelref"
:
true
,
"id"
:
"
ToggleRow
Edit"
"id"
:
"Edit"
},
},
"uIActionTarget"
:
"SINGLEKEY"
,
"xDataControlName"
:
"grid"
"xDataControlName"
:
"grid"
}
],
}
],
"getPSControlHandler"
:
{
"getPSControlHandler"
:
{
...
@@ -669,6 +669,28 @@
...
@@ -669,6 +669,28 @@
"getPSDEUIActionGroup"
:
{
"getPSDEUIActionGroup"
:
{
"name"
:
"操作列"
,
"name"
:
"操作列"
,
"getPSUIActionGroupDetails"
:
[
{
"getPSUIActionGroupDetails"
:
[
{
"detailType"
:
"DEUIACTION"
,
"name"
:
"ua98d563"
,
"getPSUIAction"
:
{
"caption"
:
"行编辑"
,
"codeName"
:
"ToggleRowEdit"
,
"fullCodeName"
:
"ToggleRowEdit"
,
"name"
:
"表格界面_行编辑开关操作"
,
"getPSSysImage"
:
{
"glyph"
:
"xf0ce@FontAwesome"
,
"cssClass"
:
"fa fa-table"
},
"predefinedType"
:
"GRIDVIEW_ROWEDITACTION"
,
"timeout"
:
60000
,
"uIActionMode"
:
"SYS"
,
"uIActionTag"
:
"ToggleRowEdit"
,
"uIActionType"
:
"DEUIACTION"
,
"enableToggleMode"
:
true
},
"addSeparator"
:
false
,
"showCaption"
:
true
,
"showIcon"
:
false
},
{
"detailType"
:
"DEUIACTION"
,
"detailType"
:
"DEUIACTION"
,
"name"
:
"u479f517"
,
"name"
:
"u479f517"
,
"getPSUIAction"
:
{
"getPSUIAction"
:
{
...
@@ -696,28 +718,6 @@
...
@@ -696,28 +718,6 @@
"addSeparator"
:
true
,
"addSeparator"
:
true
,
"showCaption"
:
true
,
"showCaption"
:
true
,
"showIcon"
:
true
"showIcon"
:
true
},
{
"detailType"
:
"DEUIACTION"
,
"name"
:
"ua98d563"
,
"getPSUIAction"
:
{
"caption"
:
"行编辑"
,
"codeName"
:
"ToggleRowEdit"
,
"fullCodeName"
:
"ToggleRowEdit"
,
"name"
:
"表格界面_行编辑开关操作"
,
"getPSSysImage"
:
{
"glyph"
:
"xf0ce@FontAwesome"
,
"cssClass"
:
"fa fa-table"
},
"predefinedType"
:
"GRIDVIEW_ROWEDITACTION"
,
"timeout"
:
60000
,
"uIActionMode"
:
"SYS"
,
"uIActionTag"
:
"ToggleRowEdit"
,
"uIActionType"
:
"DEUIACTION"
,
"enableToggleMode"
:
true
},
"addSeparator"
:
false
,
"showCaption"
:
true
,
"showIcon"
:
false
}
]
}
]
},
},
"width"
:
100
,
"width"
:
100
,
...
...
trainsys-core/src/main/resources/model/cn/ibizlab/trainsys/PSSYSAPPS/Web/PSAPPDEVIEWS/bookBookEditViewEditorTest.json
浏览文件 @
60917530
此差异已折叠。
点击以展开。
trainsys-core/src/main/resources/model/cn/ibizlab/trainsys/PSSYSAPPS/Web/PSAPPDEVIEWS/studentEditView.json
浏览文件 @
60917530
...
@@ -1539,34 +1539,34 @@
...
@@ -1539,34 +1539,34 @@
"getPSAppViewLogics"
:
[
{
"getPSAppViewLogics"
:
[
{
"logicTrigger"
:
"CUSTOM"
,
"logicTrigger"
:
"CUSTOM"
,
"logicType"
:
"APPVIEWUIACTION"
,
"logicType"
:
"APPVIEWUIACTION"
,
"name"
:
"grid_uagridcolumn1_u
479f517
_click"
,
"name"
:
"grid_uagridcolumn1_u
a98d563
_click"
,
"getPSAppViewUIAction"
:
{
"getPSAppViewUIAction"
:
{
"modelref"
:
true
,
"modelref"
:
true
,
"id"
:
"表格界面_
编辑
操作"
"id"
:
"表格界面_
行编辑开关
操作"
}
}
},
{
},
{
"logicTrigger"
:
"CUSTOM"
,
"logicTrigger"
:
"CUSTOM"
,
"logicType"
:
"APPVIEWUIACTION"
,
"logicType"
:
"APPVIEWUIACTION"
,
"name"
:
"grid_uagridcolumn1_u
a98d563
_click"
,
"name"
:
"grid_uagridcolumn1_u
479f517
_click"
,
"getPSAppViewUIAction"
:
{
"getPSAppViewUIAction"
:
{
"modelref"
:
true
,
"modelref"
:
true
,
"id"
:
"表格界面_
行编辑开关
操作"
"id"
:
"表格界面_
编辑
操作"
}
}
}
],
}
],
"getPSAppViewUIActions"
:
[
{
"getPSAppViewUIActions"
:
[
{
"name"
:
"表格界面_
编辑
操作"
,
"name"
:
"表格界面_
行编辑开关
操作"
,
"getPSUIAction"
:
{
"getPSUIAction"
:
{
"modelref"
:
true
,
"modelref"
:
true
,
"id"
:
"Edit"
"id"
:
"
ToggleRow
Edit"
},
},
"uIActionTarget"
:
"SINGLEKEY"
,
"xDataControlName"
:
"grid"
"xDataControlName"
:
"grid"
},
{
},
{
"name"
:
"表格界面_
行编辑开关
操作"
,
"name"
:
"表格界面_
编辑
操作"
,
"getPSUIAction"
:
{
"getPSUIAction"
:
{
"modelref"
:
true
,
"modelref"
:
true
,
"id"
:
"
ToggleRow
Edit"
"id"
:
"Edit"
},
},
"uIActionTarget"
:
"SINGLEKEY"
,
"xDataControlName"
:
"grid"
"xDataControlName"
:
"grid"
}
],
}
],
"getPSControlHandler"
:
{
"getPSControlHandler"
:
{
...
@@ -1783,6 +1783,28 @@
...
@@ -1783,6 +1783,28 @@
"getPSDEUIActionGroup"
:
{
"getPSDEUIActionGroup"
:
{
"name"
:
"操作列"
,
"name"
:
"操作列"
,
"getPSUIActionGroupDetails"
:
[
{
"getPSUIActionGroupDetails"
:
[
{
"detailType"
:
"DEUIACTION"
,
"name"
:
"ua98d563"
,
"getPSUIAction"
:
{
"caption"
:
"行编辑"
,
"codeName"
:
"ToggleRowEdit"
,
"fullCodeName"
:
"ToggleRowEdit"
,
"name"
:
"表格界面_行编辑开关操作"
,
"getPSSysImage"
:
{
"glyph"
:
"xf0ce@FontAwesome"
,
"cssClass"
:
"fa fa-table"
},
"predefinedType"
:
"GRIDVIEW_ROWEDITACTION"
,
"timeout"
:
60000
,
"uIActionMode"
:
"SYS"
,
"uIActionTag"
:
"ToggleRowEdit"
,
"uIActionType"
:
"DEUIACTION"
,
"enableToggleMode"
:
true
},
"addSeparator"
:
false
,
"showCaption"
:
true
,
"showIcon"
:
false
},
{
"detailType"
:
"DEUIACTION"
,
"detailType"
:
"DEUIACTION"
,
"name"
:
"u479f517"
,
"name"
:
"u479f517"
,
"getPSUIAction"
:
{
"getPSUIAction"
:
{
...
@@ -1810,28 +1832,6 @@
...
@@ -1810,28 +1832,6 @@
"addSeparator"
:
true
,
"addSeparator"
:
true
,
"showCaption"
:
true
,
"showCaption"
:
true
,
"showIcon"
:
true
"showIcon"
:
true
},
{
"detailType"
:
"DEUIACTION"
,
"name"
:
"ua98d563"
,
"getPSUIAction"
:
{
"caption"
:
"行编辑"
,
"codeName"
:
"ToggleRowEdit"
,
"fullCodeName"
:
"ToggleRowEdit"
,
"name"
:
"表格界面_行编辑开关操作"
,
"getPSSysImage"
:
{
"glyph"
:
"xf0ce@FontAwesome"
,
"cssClass"
:
"fa fa-table"
},
"predefinedType"
:
"GRIDVIEW_ROWEDITACTION"
,
"timeout"
:
60000
,
"uIActionMode"
:
"SYS"
,
"uIActionTag"
:
"ToggleRowEdit"
,
"uIActionType"
:
"DEUIACTION"
,
"enableToggleMode"
:
true
},
"addSeparator"
:
false
,
"showCaption"
:
true
,
"showIcon"
:
false
}
]
}
]
},
},
"width"
:
100
,
"width"
:
100
,
...
...
trainsys-core/src/main/resources/model/cn/ibizlab/trainsys/PSSYSAPPS/Web/PSSYSAPP.json
浏览文件 @
60917530
此差异已折叠。
点击以展开。
编辑
预览
Markdown
格式
0%
请重试
or
添加新附件
添加附件
取消
您添加了
0
人
到此讨论。请谨慎行事。
先完成此消息的编辑!
取消
想要评论请
注册
或
登录