Skip to content
项目
群组
代码片段
帮助
正在加载...
帮助
提交反馈
为 GitLab 提交贡献
登录
切换导航
T
TrainSys
项目
项目
详情
动态
版本
周期分析
仓库
仓库
文件
提交
分支
标签
贡献者
分支图
比较
统计图
议题
0
议题
0
列表
看板
标记
里程碑
合并请求
0
合并请求
0
CI / CD
CI / CD
流水线
作业
计划
统计图
Wiki
Wiki
代码片段
代码片段
成员
成员
收起侧边栏
关闭侧边栏
动态
分支图
统计图
创建新议题
作业
提交
议题看板
打开侧边栏
苏州培训方案
TrainSys
提交
52a1bbcf
提交
52a1bbcf
编写于
9月 16, 2022
作者:
ibizdev
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
fangzhihao 发布系统代码 [TrainSys,网页端]
上级
ab28dcef
变更
14
显示空白字符变更
内嵌
并排
正在显示
14 个修改的文件
包含
225 行增加
和
237 行删除
+225
-237
app-code-editor.tsx
...plugin/src/components/app-code-editor/app-code-editor.tsx
+7
-7
code-editor.tsx
...biz-vue/src/components/editor/code-editor/code-editor.tsx
+7
-7
app-panel-field.less
...biz-vue/src/styles/components/common/app-panel-field.less
+8
-0
app-simpleflex-container.less
...rc/styles/components/common/app-simpleflex-container.less
+6
-6
default.less
app_Web/public/assets/theme/default.less
+0
-12
h2_table.xml
trainsys-core/src/main/resources/liquibase/h2_table.xml
+1
-1
Main.json
...s/PSSYSAPPS/Web/PSAPPDATAENTITIES/Phone/PSFORMS/Main.json
+5
-9
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
phoneEditView.json
...ab/trainsys/PSSYSAPPS/Web/PSAPPDEVIEWS/phoneEditView.json
+5
-9
studentEditView.json
.../trainsys/PSSYSAPPS/Web/PSAPPDEVIEWS/studentEditView.json
+31
-31
PSSYSAPP.json
...ces/model/cn/ibizlab/trainsys/PSSYSAPPS/Web/PSSYSAPP.json
+31
-31
未找到文件。
app_Web/packages/ibiz-plugin/src/components/app-code-editor/app-code-editor.tsx
浏览文件 @
52a1bbcf
...
@@ -50,7 +50,7 @@ export class AppCodeEditor extends Vue {
...
@@ -50,7 +50,7 @@ export class AppCodeEditor extends Vue {
* @memberof AppCodeEditor
* @memberof AppCodeEditor
*/
*/
@
Prop
({
type
:
Boolean
,
default
:
false
})
@
Prop
({
type
:
Boolean
,
default
:
false
})
isR
eadOnly
!
:
boolean
;
r
eadOnly
!
:
boolean
;
/**
/**
* 是否显示小地图
* 是否显示小地图
...
@@ -59,7 +59,7 @@ export class AppCodeEditor extends Vue {
...
@@ -59,7 +59,7 @@ export class AppCodeEditor extends Vue {
* @memberof AppCodeEditor
* @memberof AppCodeEditor
*/
*/
@
Prop
({
type
:
Boolean
,
default
:
true
})
@
Prop
({
type
:
Boolean
,
default
:
true
})
is
Minimap
!
:
boolean
;
show
Minimap
!
:
boolean
;
/**
/**
* 是否显示行号
* 是否显示行号
...
@@ -86,7 +86,7 @@ export class AppCodeEditor extends Vue {
...
@@ -86,7 +86,7 @@ export class AppCodeEditor extends Vue {
* @memberof AppCodeEditor
* @memberof AppCodeEditor
*/
*/
@
Prop
({
type
:
Boolean
,
default
:
true
})
@
Prop
({
type
:
Boolean
,
default
:
true
})
isC
hangeLanguage
!
:
boolean
;
c
hangeLanguage
!
:
boolean
;
/**
/**
* 当前使用语言
* 当前使用语言
...
@@ -183,9 +183,9 @@ export class AppCodeEditor extends Vue {
...
@@ -183,9 +183,9 @@ export class AppCodeEditor extends Vue {
value
:
this
.
value
,
value
:
this
.
value
,
theme
:
this
.
theme
,
theme
:
this
.
theme
,
language
:
this
.
presentLanguage
,
language
:
this
.
presentLanguage
,
readOnly
:
this
.
isR
eadOnly
,
readOnly
:
this
.
r
eadOnly
,
lineNumbers
:
this
.
showLineNum
?
'on'
:
'off'
,
lineNumbers
:
this
.
showLineNum
?
'on'
:
'off'
,
minimap
:
{
enabled
:
this
.
is
Minimap
},
minimap
:
{
enabled
:
this
.
show
Minimap
},
});
});
this
.
registerEvent
();
this
.
registerEvent
();
window
.
addEventListener
(
'resize'
,
this
.
resize
);
window
.
addEventListener
(
'resize'
,
this
.
resize
);
...
@@ -199,7 +199,7 @@ export class AppCodeEditor extends Vue {
...
@@ -199,7 +199,7 @@ export class AppCodeEditor extends Vue {
* @memberof AppCodeEditor
* @memberof AppCodeEditor
*/
*/
registerEvent
()
{
registerEvent
()
{
if
(
!
this
.
isR
eadOnly
)
{
if
(
!
this
.
r
eadOnly
)
{
this
.
codeEditor
.
onDidBlurEditorText
(
this
.
codeEditor
.
onDidBlurEditorText
(
//数据发生改变
//数据发生改变
(
event
:
any
)
=>
{
(
event
:
any
)
=>
{
...
@@ -289,7 +289,7 @@ export class AppCodeEditor extends Vue {
...
@@ -289,7 +289,7 @@ export class AppCodeEditor extends Vue {
<
div
class=
'app-code-editor__header__left__toolbar'
>
<
div
class=
'app-code-editor__header__left__toolbar'
>
<
i
-
select
<
i
-
select
v
-
model=
{
this
.
presentLanguage
}
v
-
model=
{
this
.
presentLanguage
}
disabled=
{
!
this
.
isC
hangeLanguage
}
disabled=
{
!
this
.
c
hangeLanguage
}
on
-
on
-
change=
{
this
.
onLanguageChange
}
on
-
on
-
change=
{
this
.
onLanguageChange
}
>
>
{
this
.
languages
.
map
((
language
:
string
)
=>
{
{
this
.
languages
.
map
((
language
:
string
)
=>
{
...
...
app_Web/packages/ibiz-vue/src/components/editor/code-editor/code-editor.tsx
浏览文件 @
52a1bbcf
...
@@ -51,14 +51,11 @@ export default class CodeEditor extends EditorBase {
...
@@ -51,14 +51,11 @@ export default class CodeEditor extends EditorBase {
*/
*/
public
handleParams
(
params
:
any
)
{
public
handleParams
(
params
:
any
)
{
const
param
:
any
=
{};
const
param
:
any
=
{};
if
(
params
.
isR
eadOnly
)
{
if
(
params
.
r
eadOnly
)
{
param
.
isReadOnly
=
this
.
handleBoolean
(
params
.
isR
eadOnly
);
param
.
readOnly
=
this
.
handleBoolean
(
params
.
r
eadOnly
);
}
}
if
(
params
.
isMinimap
)
{
if
(
params
.
changeLanguage
)
{
param
.
isMinimap
=
this
.
handleBoolean
(
params
.
isMinimap
);
param
.
changeLanguage
=
this
.
handleBoolean
(
params
.
changeLanguage
);
}
if
(
params
.
isChangeLanguage
)
{
param
.
isChangeLanguage
=
this
.
handleBoolean
(
params
.
isChangeLanguage
);
}
}
if
(
params
.
LANGUAGE
)
{
if
(
params
.
LANGUAGE
)
{
param
.
language
=
params
.
LANGUAGE
;
param
.
language
=
params
.
LANGUAGE
;
...
@@ -69,6 +66,9 @@ export default class CodeEditor extends EditorBase {
...
@@ -69,6 +66,9 @@ export default class CodeEditor extends EditorBase {
if
(
params
.
showLineNum
)
{
if
(
params
.
showLineNum
)
{
param
.
showLineNum
=
this
.
handleBoolean
(
params
.
showLineNum
);
param
.
showLineNum
=
this
.
handleBoolean
(
params
.
showLineNum
);
}
}
if
(
params
.
showMinimap
)
{
param
.
showMinimap
=
this
.
handleBoolean
(
params
.
showMinimap
);
}
return
Object
.
assign
(
params
,
param
);
return
Object
.
assign
(
params
,
param
);
}
}
...
...
app_Web/packages/ibiz-vue/src/styles/components/common/app-panel-field.less
浏览文件 @
52a1bbcf
...
@@ -17,6 +17,14 @@
...
@@ -17,6 +17,14 @@
line-height: 22px;
line-height: 22px;
flex-shrink: 0;
flex-shrink: 0;
padding: 6px 10px 6px 0px;
padding: 6px 10px 6px 0px;
>span{
color: red;
}
}
.editorstyle {
.errorstyle {
color:red;
}
}
}
}
}
...
...
app_Web/packages/ibiz-vue/src/styles/components/common/app-simpleflex-container.less
浏览文件 @
52a1bbcf
...
@@ -2,12 +2,12 @@
...
@@ -2,12 +2,12 @@
width: 100%;
width: 100%;
height: 100%;
height: 100%;
display: flex;
display: flex;
.app-simpleflex-container__pos-container{
}
.app-simpleflex-container__pos-container{
.app-simpleflex-container__item{
.app-simpleflex-container__item{
display: flex;
display: flex;
>div{
>div{
width: 100%;
width: 100%;
}
}
}
}
}
}
}
\ No newline at end of file
app_Web/public/assets/theme/default.less
浏览文件 @
52a1bbcf
...
@@ -2088,18 +2088,6 @@ body {
...
@@ -2088,18 +2088,6 @@ body {
}
}
}
}
.app-panel-field {
.editorstyle {
.ivu-input.ivu-input-default {
// border-color: @border-color;
}
.errorstyle {
color: @app-text-color;
}
}
}
.app-theme__popper {
.app-theme__popper {
.app-theme-icon {
.app-theme-icon {
color: @app-text-color;
color: @app-text-color;
...
...
trainsys-core/src/main/resources/liquibase/h2_table.xml
浏览文件 @
52a1bbcf
...
@@ -169,7 +169,7 @@
...
@@ -169,7 +169,7 @@
</changeSet>
</changeSet>
<!--输出实体[PHONE]数据结构 -->
<!--输出实体[PHONE]数据结构 -->
<changeSet
author=
"root"
id=
"tab-phone-5
4
-6"
>
<changeSet
author=
"root"
id=
"tab-phone-5
6
-6"
>
<createTable
tableName=
"T_PHONE"
>
<createTable
tableName=
"T_PHONE"
>
<column
name=
"PHONEID"
remarks=
""
type=
"VARCHAR(100)"
>
<column
name=
"PHONEID"
remarks=
""
type=
"VARCHAR(100)"
>
<constraints
primaryKey=
"true"
primaryKeyName=
"PK_PHONE"
/>
<constraints
primaryKey=
"true"
primaryKeyName=
"PK_PHONE"
/>
...
...
trainsys-core/src/main/resources/model/cn/ibizlab/trainsys/PSSYSAPPS/Web/PSAPPDATAENTITIES/Phone/PSFORMS/Main.json
浏览文件 @
52a1bbcf
...
@@ -189,7 +189,7 @@
...
@@ -189,7 +189,7 @@
"detailStyle"
:
"DEFAULT"
,
"detailStyle"
:
"DEFAULT"
,
"detailType"
:
"FORMITEM"
,
"detailType"
:
"FORMITEM"
,
"enableCond"
:
3
,
"enableCond"
:
3
,
"ignoreInput"
:
0
,
"ignoreInput"
:
3
,
"labelPos"
:
"LEFT"
,
"labelPos"
:
"LEFT"
,
"labelWidth"
:
130
,
"labelWidth"
:
130
,
"name"
:
"phonetype"
,
"name"
:
"phonetype"
,
...
@@ -214,20 +214,16 @@
...
@@ -214,20 +214,16 @@
"notMode"
:
false
"notMode"
:
false
}
],
}
],
"getPSEditor"
:
{
"getPSEditor"
:
{
"editorType"
:
"DROPDOWNLIST"
,
"editorType"
:
"TEXTBOX"
,
"name"
:
"phonetype"
,
"maxLength"
:
100
,
"getPSAppCodeList"
:
{
"name"
:
"phonetype"
"modelref"
:
true
,
"path"
:
"PSSYSAPPS/Web/PSAPPCODELISTS/PhoneType.json"
},
"singleSelect"
:
true
},
},
"getPSLayoutPos"
:
{
"getPSLayoutPos"
:
{
"colMD"
:
24
,
"colMD"
:
24
,
"layout"
:
"TABLE_24COL"
"layout"
:
"TABLE_24COL"
},
},
"allowEmpty"
:
true
,
"allowEmpty"
:
true
,
"
needCodeListConfig
"
:
true
,
"
convertToCodeItemText
"
:
true
,
"showCaption"
:
true
"showCaption"
:
true
}
],
}
],
"getPSLayout"
:
{
"getPSLayout"
:
{
...
...
trainsys-core/src/main/resources/model/cn/ibizlab/trainsys/PSSYSAPPS/Web/PSAPPDATAENTITIES/Reginfo/PSGRIDS/Main.json
浏览文件 @
52a1bbcf
...
@@ -18,34 +18,34 @@
...
@@ -18,34 +18,34 @@
"getPSAppViewLogics"
:
[
{
"getPSAppViewLogics"
:
[
{
"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"
:
"表格界面_
编辑
操作"
}
}
},
{
},
{
"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"
:
"表格界面_
行编辑开关
操作"
}
}
}
],
}
],
"getPSAppViewUIActions"
:
[
{
"getPSAppViewUIActions"
:
[
{
"name"
:
"表格界面_
行编辑开关
操作"
,
"name"
:
"表格界面_
编辑
操作"
,
"getPSUIAction"
:
{
"getPSUIAction"
:
{
"modelref"
:
true
,
"modelref"
:
true
,
"id"
:
"
ToggleRow
Edit"
"id"
:
"Edit"
},
},
"uIActionTarget"
:
"SINGLEKEY"
,
"xDataControlName"
:
"grid"
"xDataControlName"
:
"grid"
},
{
},
{
"name"
:
"表格界面_
编辑
操作"
,
"name"
:
"表格界面_
行编辑开关
操作"
,
"getPSUIAction"
:
{
"getPSUIAction"
:
{
"modelref"
:
true
,
"modelref"
:
true
,
"id"
:
"Edit"
"id"
:
"
ToggleRow
Edit"
},
},
"uIActionTarget"
:
"SINGLEKEY"
,
"xDataControlName"
:
"grid"
"xDataControlName"
:
"grid"
}
],
}
],
"getPSControlLogics"
:
[
{
"getPSControlLogics"
:
[
{
...
@@ -175,28 +175,6 @@
...
@@ -175,28 +175,6 @@
"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"
:
{
...
@@ -224,6 +202,28 @@
...
@@ -224,6 +202,28 @@
"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
浏览文件 @
52a1bbcf
...
@@ -553,34 +553,34 @@
...
@@ -553,34 +553,34 @@
"getPSAppViewLogics"
:
[
{
"getPSAppViewLogics"
:
[
{
"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"
:
"表格界面_
编辑
操作"
}
}
},
{
},
{
"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"
:
"表格界面_
行编辑开关
操作"
}
}
}
],
}
],
"getPSAppViewUIActions"
:
[
{
"getPSAppViewUIActions"
:
[
{
"name"
:
"表格界面_
行编辑开关
操作"
,
"name"
:
"表格界面_
编辑
操作"
,
"getPSUIAction"
:
{
"getPSUIAction"
:
{
"modelref"
:
true
,
"modelref"
:
true
,
"id"
:
"
ToggleRow
Edit"
"id"
:
"Edit"
},
},
"uIActionTarget"
:
"SINGLEKEY"
,
"xDataControlName"
:
"grid"
"xDataControlName"
:
"grid"
},
{
},
{
"name"
:
"表格界面_
编辑
操作"
,
"name"
:
"表格界面_
行编辑开关
操作"
,
"getPSUIAction"
:
{
"getPSUIAction"
:
{
"modelref"
:
true
,
"modelref"
:
true
,
"id"
:
"Edit"
"id"
:
"
ToggleRow
Edit"
},
},
"uIActionTarget"
:
"SINGLEKEY"
,
"xDataControlName"
:
"grid"
"xDataControlName"
:
"grid"
}
],
}
],
"getPSControlHandler"
:
{
"getPSControlHandler"
:
{
...
@@ -797,28 +797,6 @@
...
@@ -797,28 +797,6 @@
"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"
:
{
...
@@ -846,6 +824,28 @@
...
@@ -846,6 +824,28 @@
"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
浏览文件 @
52a1bbcf
...
@@ -373,34 +373,34 @@
...
@@ -373,34 +373,34 @@
"getPSAppViewLogics"
:
[
{
"getPSAppViewLogics"
:
[
{
"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"
:
"表格界面_
编辑
操作"
}
}
},
{
},
{
"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"
:
"表格界面_
行编辑开关
操作"
}
}
}
],
}
],
"getPSAppViewUIActions"
:
[
{
"getPSAppViewUIActions"
:
[
{
"name"
:
"表格界面_
行编辑开关
操作"
,
"name"
:
"表格界面_
编辑
操作"
,
"getPSUIAction"
:
{
"getPSUIAction"
:
{
"modelref"
:
true
,
"modelref"
:
true
,
"id"
:
"
ToggleRow
Edit"
"id"
:
"Edit"
},
},
"uIActionTarget"
:
"SINGLEKEY"
,
"xDataControlName"
:
"grid"
"xDataControlName"
:
"grid"
},
{
},
{
"name"
:
"表格界面_
编辑
操作"
,
"name"
:
"表格界面_
行编辑开关
操作"
,
"getPSUIAction"
:
{
"getPSUIAction"
:
{
"modelref"
:
true
,
"modelref"
:
true
,
"id"
:
"Edit"
"id"
:
"
ToggleRow
Edit"
},
},
"uIActionTarget"
:
"SINGLEKEY"
,
"xDataControlName"
:
"grid"
"xDataControlName"
:
"grid"
}
],
}
],
"getPSControlHandler"
:
{
"getPSControlHandler"
:
{
...
@@ -617,28 +617,6 @@
...
@@ -617,28 +617,6 @@
"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"
:
{
...
@@ -666,6 +644,28 @@
...
@@ -666,6 +644,28 @@
"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
浏览文件 @
52a1bbcf
...
@@ -425,34 +425,34 @@
...
@@ -425,34 +425,34 @@
"getPSAppViewLogics"
:
[
{
"getPSAppViewLogics"
:
[
{
"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"
:
"表格界面_
编辑
操作"
}
}
},
{
},
{
"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"
:
"表格界面_
行编辑开关
操作"
}
}
}
],
}
],
"getPSAppViewUIActions"
:
[
{
"getPSAppViewUIActions"
:
[
{
"name"
:
"表格界面_
行编辑开关
操作"
,
"name"
:
"表格界面_
编辑
操作"
,
"getPSUIAction"
:
{
"getPSUIAction"
:
{
"modelref"
:
true
,
"modelref"
:
true
,
"id"
:
"
ToggleRow
Edit"
"id"
:
"Edit"
},
},
"uIActionTarget"
:
"SINGLEKEY"
,
"xDataControlName"
:
"grid"
"xDataControlName"
:
"grid"
},
{
},
{
"name"
:
"表格界面_
编辑
操作"
,
"name"
:
"表格界面_
行编辑开关
操作"
,
"getPSUIAction"
:
{
"getPSUIAction"
:
{
"modelref"
:
true
,
"modelref"
:
true
,
"id"
:
"Edit"
"id"
:
"
ToggleRow
Edit"
},
},
"uIActionTarget"
:
"SINGLEKEY"
,
"xDataControlName"
:
"grid"
"xDataControlName"
:
"grid"
}
],
}
],
"getPSControlHandler"
:
{
"getPSControlHandler"
:
{
...
@@ -669,28 +669,6 @@
...
@@ -669,28 +669,6 @@
"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"
:
{
...
@@ -718,6 +696,28 @@
...
@@ -718,6 +696,28 @@
"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/phoneEditView.json
浏览文件 @
52a1bbcf
...
@@ -1175,7 +1175,7 @@
...
@@ -1175,7 +1175,7 @@
"detailStyle"
:
"DEFAULT"
,
"detailStyle"
:
"DEFAULT"
,
"detailType"
:
"FORMITEM"
,
"detailType"
:
"FORMITEM"
,
"enableCond"
:
3
,
"enableCond"
:
3
,
"ignoreInput"
:
0
,
"ignoreInput"
:
3
,
"labelPos"
:
"LEFT"
,
"labelPos"
:
"LEFT"
,
"labelWidth"
:
130
,
"labelWidth"
:
130
,
"name"
:
"phonetype"
,
"name"
:
"phonetype"
,
...
@@ -1200,20 +1200,16 @@
...
@@ -1200,20 +1200,16 @@
"notMode"
:
false
"notMode"
:
false
}
],
}
],
"getPSEditor"
:
{
"getPSEditor"
:
{
"editorType"
:
"DROPDOWNLIST"
,
"editorType"
:
"TEXTBOX"
,
"name"
:
"phonetype"
,
"maxLength"
:
100
,
"getPSAppCodeList"
:
{
"name"
:
"phonetype"
"modelref"
:
true
,
"path"
:
"PSSYSAPPS/Web/PSAPPCODELISTS/PhoneType.json"
},
"singleSelect"
:
true
},
},
"getPSLayoutPos"
:
{
"getPSLayoutPos"
:
{
"colMD"
:
24
,
"colMD"
:
24
,
"layout"
:
"TABLE_24COL"
"layout"
:
"TABLE_24COL"
},
},
"allowEmpty"
:
true
,
"allowEmpty"
:
true
,
"
needCodeListConfig
"
:
true
,
"
convertToCodeItemText
"
:
true
,
"showCaption"
:
true
"showCaption"
:
true
}
],
}
],
"getPSLayout"
:
{
"getPSLayout"
:
{
...
...
trainsys-core/src/main/resources/model/cn/ibizlab/trainsys/PSSYSAPPS/Web/PSAPPDEVIEWS/studentEditView.json
浏览文件 @
52a1bbcf
...
@@ -1539,34 +1539,34 @@
...
@@ -1539,34 +1539,34 @@
"getPSAppViewLogics"
:
[
{
"getPSAppViewLogics"
:
[
{
"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"
:
"表格界面_
编辑
操作"
}
}
},
{
},
{
"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"
:
"表格界面_
行编辑开关
操作"
}
}
}
],
}
],
"getPSAppViewUIActions"
:
[
{
"getPSAppViewUIActions"
:
[
{
"name"
:
"表格界面_
行编辑开关
操作"
,
"name"
:
"表格界面_
编辑
操作"
,
"getPSUIAction"
:
{
"getPSUIAction"
:
{
"modelref"
:
true
,
"modelref"
:
true
,
"id"
:
"
ToggleRow
Edit"
"id"
:
"Edit"
},
},
"uIActionTarget"
:
"SINGLEKEY"
,
"xDataControlName"
:
"grid"
"xDataControlName"
:
"grid"
},
{
},
{
"name"
:
"表格界面_
编辑
操作"
,
"name"
:
"表格界面_
行编辑开关
操作"
,
"getPSUIAction"
:
{
"getPSUIAction"
:
{
"modelref"
:
true
,
"modelref"
:
true
,
"id"
:
"Edit"
"id"
:
"
ToggleRow
Edit"
},
},
"uIActionTarget"
:
"SINGLEKEY"
,
"xDataControlName"
:
"grid"
"xDataControlName"
:
"grid"
}
],
}
],
"getPSControlHandler"
:
{
"getPSControlHandler"
:
{
...
@@ -1783,28 +1783,6 @@
...
@@ -1783,28 +1783,6 @@
"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"
:
{
...
@@ -1832,6 +1810,28 @@
...
@@ -1832,6 +1810,28 @@
"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
浏览文件 @
52a1bbcf
...
@@ -1997,34 +1997,34 @@
...
@@ -1997,34 +1997,34 @@
"getPSAppViewLogics"
:
[
{
"getPSAppViewLogics"
:
[
{
"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"
:
"表格界面_
编辑
操作"
}
}
},
{
},
{
"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"
:
"表格界面_
行编辑开关
操作"
}
}
}
],
}
],
"getPSAppViewUIActions"
:
[
{
"getPSAppViewUIActions"
:
[
{
"name"
:
"表格界面_
行编辑开关
操作"
,
"name"
:
"表格界面_
编辑
操作"
,
"getPSUIAction"
:
{
"getPSUIAction"
:
{
"modelref"
:
true
,
"modelref"
:
true
,
"id"
:
"
ToggleRow
Edit"
"id"
:
"Edit"
},
},
"uIActionTarget"
:
"SINGLEKEY"
,
"xDataControlName"
:
"grid"
"xDataControlName"
:
"grid"
},
{
},
{
"name"
:
"表格界面_
编辑
操作"
,
"name"
:
"表格界面_
行编辑开关
操作"
,
"getPSUIAction"
:
{
"getPSUIAction"
:
{
"modelref"
:
true
,
"modelref"
:
true
,
"id"
:
"Edit"
"id"
:
"
ToggleRow
Edit"
},
},
"uIActionTarget"
:
"SINGLEKEY"
,
"xDataControlName"
:
"grid"
"xDataControlName"
:
"grid"
}
],
}
],
"getPSControlHandler"
:
{
"getPSControlHandler"
:
{
...
@@ -2241,28 +2241,6 @@
...
@@ -2241,28 +2241,6 @@
"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"
:
{
...
@@ -2290,6 +2268,28 @@
...
@@ -2290,6 +2268,28 @@
"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
,
...
...
编辑
预览
Markdown
格式
0%
请重试
or
添加新附件
添加附件
取消
您添加了
0
人
到此讨论。请谨慎行事。
先完成此消息的编辑!
取消
想要评论请
注册
或
登录