Skip to content
项目
群组
代码片段
帮助
正在加载...
帮助
提交反馈
为 GitLab 提交贡献
登录
切换导航
T
TrainSys
项目
项目
详情
动态
版本
周期分析
仓库
仓库
文件
提交
分支
标签
贡献者
分支图
比较
统计图
议题
0
议题
0
列表
看板
标记
里程碑
合并请求
0
合并请求
0
CI / CD
CI / CD
流水线
作业
计划
统计图
Wiki
Wiki
代码片段
代码片段
成员
成员
收起侧边栏
关闭侧边栏
动态
分支图
统计图
创建新议题
作业
提交
议题看板
打开侧边栏
苏州培训方案
TrainSys
提交
31c72e16
提交
31c72e16
编写于
9月 07, 2022
作者:
ibizdev
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
lxm1993 发布系统代码 [TrainSys,网页端]
上级
36c14e08
变更
13
显示空白字符变更
内嵌
并排
正在显示
13 个修改的文件
包含
390 行增加
和
19 行删除
+390
-19
package.json
app_Web/package.json
+1
-1
panel-detail.ts
...packages/ibiz-core/src/model/panel-detail/panel-detail.ts
+6
-5
app-export-excel.less
.../components/common/app-export-excel/app-export-excel.less
+26
-0
app-export-excel.vue
...c/components/common/app-export-excel/app-export-excel.vue
+24
-2
app-panel-base.tsx
.../components/control/app-common-control/app-panel-base.tsx
+7
-0
view-toolbar.less
...vue/src/components/control/view-toolbar/view-toolbar.less
+5
-1
view-toolbar.tsx
...-vue/src/components/control/view-toolbar/view-toolbar.tsx
+17
-4
app-default-view-layout.tsx
...ayout/app-default-view-layout/app-default-view-layout.tsx
+7
-0
pom.xml
pom.xml
+5
-5
h2_table.xml
trainsys-core/src/main/resources/liquibase/h2_table.xml
+1
-1
Main.json
...PSSYSAPPS/Web/PSAPPDATAENTITIES/Reginfo/PSGRIDS/Main.json
+97
-0
ReginfoStuInfoList.json
...ainsys/PSSYSAPPS/Web/PSAPPDEVIEWS/ReginfoStuInfoList.json
+97
-0
PSSYSAPP.json
...ces/model/cn/ibizlab/trainsys/PSSYSAPPS/Web/PSSYSAPP.json
+97
-0
未找到文件。
app_Web/package.json
浏览文件 @
31c72e16
...
...
@@ -72,7 +72,7 @@
"@interactjs/actions"
:
"^1.10.11"
,
"@interactjs/modifiers"
:
"^1.10.11"
,
"@interactjs/dev-tools"
:
"^1.10.11"
,
"@ibiz/dynamic-model-api"
:
"1.0.
6
"
,
"@ibiz/dynamic-model-api"
:
"1.0.
7
"
,
"@ibiz/model-location"
:
"^0.0.4"
,
"xgplayer"
:
"2.31.4"
,
"xlsx"
:
"^0.16.9"
...
...
app_Web/packages/ibiz-core/src/model/panel-detail/panel-detail.ts
浏览文件 @
31c72e16
...
...
@@ -266,17 +266,18 @@ export class PanelDetailModel {
* @memberof PanelDetailModel
*/
public
getDetailClass
()
{
let
detailClass
=
`app-
${
this
.
panelType
.
toLowerCase
()}
-
${
this
.
panelItemModel
?.
itemType
.
toLowerCase
()}
`;
detailClass += `
$
{
this
.
panelType
.
toLowerCase
()}
-
$
{
this
.
panelItemModel
?.
itemType
.
toLowerCase
()}
-
$
{
this
.
panelItemModel
?.
name
.
toLowerCase
()}
`;
let
detailClass
=
[];
detailClass
.
push
({[
`app-
${
this
.
panelType
.
toLowerCase
()}
-
${
this
.
panelItemModel
?.
itemType
.
toLowerCase
()}
`]:true});
detailClass.push({[`
$
{
this
.
panelType
.
toLowerCase
()}
-
$
{
this
.
panelItemModel
?.
itemType
.
toLowerCase
()}
-
$
{
this
.
panelItemModel
?.
name
.
toLowerCase
()}
`]:true});
if (this.panelType !== 'VIEWLAYOUTPANEL') {
detailClass
+= `
panel
-
$
{
this
.
panelItemModel
?.
itemType
.
toLowerCase
()}
`
;
detailClass
.push({[`
panel
-
$
{
this
.
panelItemModel
?.
itemType
.
toLowerCase
()}
`]:true})
;
}
if (this.panelItemModel?.getPSSysCss?.()) {
detailClass
+= `
$
{
this
.
panelItemModel
?.
getPSSysCss
?.()?.
cssName
}
`
;
detailClass
.push({[`
$
{
this
.
panelItemModel
?.
getPSSysCss
?.()?.
cssName
}
`]:true})
;
}
// 容器类型面板
if (this.panelItemModel?.showCaption) {
detailClass
+= `
show
-
caption
`
;
detailClass
.push({'show-caption':true})
;
}
return detailClass;
}
...
...
app_Web/packages/ibiz-vue/src/components/common/app-export-excel/app-export-excel.less
浏览文件 @
31c72e16
...
...
@@ -21,3 +21,29 @@
cursor: initial;
}
.more-dropdown {
.more-dropdown-content {
&:hover {
background-color: #ecf5ff;
color: #66b1ff;
}
padding: 4px 16px;
line-height: 36px;
i {
margin-right: 6px;
}
}
.ivu-select-dropdown {
width: 270px;
top: 90px !important;
left: -270px !important;
p {
height: auto;
line-height: 36px;
color: inherit;
}
}
}
\ No newline at end of file
app_Web/packages/ibiz-vue/src/components/common/app-export-excel/app-export-excel.vue
浏览文件 @
31c72e16
<
template
>
<dropdown
v-if=
"itemLevel === 0"
:transfer=
"tru
e"
trigger=
'click'
>
<dropdown
:class=
"
{'more-dropdown': isMore}" v-if="itemLevel === 0" :visible="visible" :transfer="!isMor
e" trigger='click'>
<app-button
v-if=
"!isMore"
:disabled=
"item.disabled"
:loading=
"loading"
iconcls=
'fa fa-file-excel-o'
:caption=
"caption"
>
</app-button>
<div
class=
"more-dropdown-content"
v-else
@
click=
"clickVisible"
>
<menu-icon
v-if=
"item.showIcon"
:item=
'item'
/>
<span
v-if=
"item.showCaption"
class=
'caption'
>
{{
item
.
caption
}}
</span>
</div>
<dropdown-menu
slot=
'list'
>
<dropdown-item>
<p
@
click=
"exportExcel($event, 'maxRowCount')"
>
...
...
@@ -46,6 +51,23 @@ import { Vue, Component, Prop, Watch } from 'vue-property-decorator';
})
export
default
class
AppExportExcel
extends
Vue
{
/**
* 工具栏显示类型
*
* @type {string}
* @memberof AppExportExcel
*/
@
Prop
({
default
:
'button'
})
showType
!
:
string
;
/**
* 是否是存在多个下拉选项的工具栏
*
* @type {boolean}
* @memberof AppExportExcel
*/
isMore
:
boolean
=
this
.
showType
===
'more'
/**
* 工具栏项
*
...
...
app_Web/packages/ibiz-vue/src/components/control/app-common-control/app-panel-base.tsx
浏览文件 @
31c72e16
...
...
@@ -217,6 +217,13 @@ export class AppPanelBase extends PanelControlBase {
Object
.
assign
(
detailStyle
,
boxLayoutStyle
);
// 获取盒子样式表
let
detailClass
=
this
.
layoutDetailsModel
[
name
]?.
getDetailClass
();
// 合并盒子动态样式表
if
(
container
.
dynaClass
){
const
context
=
this
.
context
;
const
viewparams
=
this
.
viewparams
;
const
data
=
this
.
data
;
detailClass
.
push
(...
eval
(
container
.
dynaClass
))
}
if
(
layout
&&
Object
.
is
(
layout
,
'BORDER'
))
{
// 存在三种情况(1:该容器为多数据容器; 2: 父容器为多数据容器; 3: 正常容器)
return
(
...
...
app_Web/packages/ibiz-vue/src/components/control/view-toolbar/view-toolbar.less
浏览文件 @
31c72e16
...
...
@@ -16,7 +16,7 @@
}
}
.view-toolbar-transfer.ivu-select-dropdown.ivu-dropdown-transfer {
.view-toolbar-transfer.ivu-select-dropdown.ivu-dropdown-transfer
, .view-toolbar-transfer
{
padding: 10px 0;
.ivu-dropdown-menu {
...
...
@@ -44,3 +44,7 @@
}
}
}
.view-toolbar-transfer {
padding-right: 4px;
}
\ No newline at end of file
app_Web/packages/ibiz-vue/src/components/control/view-toolbar/view-toolbar.tsx
浏览文件 @
31c72e16
...
...
@@ -97,9 +97,7 @@ export class ViewToolbar extends Vue {
* @memberof ViewToolbar
*/
@
Emit
(
'item-click'
)
public
itemClick
(
uiAction
:
any
,
e
?:
MouseEvent
):
void
{
e
?.
stopPropagation
();
}
public
itemClick
(
uiAction
:
any
,
e
?:
MouseEvent
):
void
{
}
/**
* @description span按钮点击
...
...
@@ -145,6 +143,21 @@ export class ViewToolbar extends Vue {
if
(
item
.
items
&&
item
.
items
.
length
>
0
)
{
return
this
.
renderMenuGroup
(
item
);
}
// 当在分组中时,ui 呈现异常 无法放在 el-tooltip 中
if
(
item
.
uiaction
&&
item
.
uiaction
.
uIActionTag
===
'ExportExcel'
)
{
if
(
item
.
visabled
)
{
return
(
<
app
-
export
-
excel
item=
{
item
}
caption=
{
item
.
caption
}
on
-
exportexcel=
{
(
e
:
MouseEvent
)
=>
this
.
spanClick
(
item
,
e
)
}
showType=
'more'
>
</
app
-
export
-
excel
>
)
}
else
{
return
null
}
}
return
<
dropdown
-
item
disabled=
{
item
.
disabled
}
name=
{
item
.
name
}
>
{
this
.
renderMenuItem
(
item
,
false
)
}
</
dropdown
-
item
>;
});
}
...
...
@@ -306,7 +319,7 @@ export class ViewToolbar extends Vue {
}
if
(
Object
.
is
(
item
.
itemType
,
'ITEMS'
)
&&
item
.
items
&&
item
.
items
.
length
>
0
)
{
return
(
<
dropdown
transfer
transfer
-
class
-
name=
"view-toolbar-transfer"
v
-
show=
{
item
.
visabled
}
trigger=
'click'
on
-
on
-
click=
{
(
name
:
string
)
=>
throttle
(
this
.
itemClick
,[{
tag
:
name
}],
this
)
}
>
<
dropdown
class=
"view-toolbar-transfer"
placement=
"bottom-end"
v
-
show=
{
item
.
visabled
}
trigger=
'click'
>
<
el
-
tooltip
disabled=
{
!
item
.
tooltip
}
>
<
app
-
button
showCaption=
{
item
.
showCaption
}
...
...
app_Web/packages/ibiz-vue/src/components/layout/app-default-layout/app-default-view-layout/app-default-view-layout.tsx
浏览文件 @
31c72e16
...
...
@@ -740,6 +740,13 @@ export class AppDefaultViewLayout extends ControlContainer {
Object
.
assign
(
detailStyle
,
boxStyle
);
// 获取盒子样式表
const
detailClass
=
this
.
layoutDetailsModel
[
name
]?.
getDetailClass
();
// 合并盒子动态样式表
if
(
container
.
dynaClass
){
const
context
=
this
.
context
;
const
viewparams
=
this
.
viewparams
;
const
data
=
this
.
layoutData
[
name
];
detailClass
.
push
(...
eval
(
container
.
dynaClass
))
}
if
(
layout
&&
Object
.
is
(
layout
,
'BORDER'
))
{
// 存在三种情况(1:该容器为多数据容器; 2: 父容器为多数据容器; 3: 正常容器)
return
(
...
...
pom.xml
浏览文件 @
31c72e16
...
...
@@ -29,31 +29,31 @@
<dependency>
<groupId>
net.ibizsys.plugin
</groupId>
<artifactId>
ibiz-plugin-cloud
</artifactId>
<version>
8.1.0.1
88
</version>
<version>
8.1.0.1
96
</version>
</dependency>
<dependency>
<groupId>
net.ibizsys.plugin
</groupId>
<artifactId>
ibiz-plugin-redis
</artifactId>
<version>
8.1.0.1
88
</version>
<version>
8.1.0.1
96
</version>
</dependency>
<dependency>
<groupId>
net.ibizsys.plugin
</groupId>
<artifactId>
ibiz-plugin-mybatisplus-spring-boot-starter
</artifactId>
<version>
8.1.0.1
88
</version>
<version>
8.1.0.1
96
</version>
</dependency>
<dependency>
<groupId>
net.ibizsys.plugin
</groupId>
<artifactId>
ibiz-plugin-zookeeper
</artifactId>
<version>
8.1.0.1
88
</version>
<version>
8.1.0.1
96
</version>
</dependency>
<dependency>
<groupId>
net.ibizsys.plugin
</groupId>
<artifactId>
ibiz-plugin-poi
</artifactId>
<version>
8.1.0.1
88
</version>
<version>
8.1.0.1
96
</version>
</dependency>
</dependencies>
...
...
trainsys-core/src/main/resources/liquibase/h2_table.xml
浏览文件 @
31c72e16
...
...
@@ -194,7 +194,7 @@
</changeSet>
<!--输出实体[REGINFO]数据结构 -->
<changeSet
author=
"root"
id=
"tab-reginfo-6
2
-8"
>
<changeSet
author=
"root"
id=
"tab-reginfo-6
5
-8"
>
<createTable
tableName=
"T_REGINFO"
>
<column
name=
"UPDATEDATE"
remarks=
""
type=
"DATETIME"
>
</column>
...
...
trainsys-core/src/main/resources/model/cn/ibizlab/trainsys/PSSYSAPPS/Web/PSAPPDATAENTITIES/Reginfo/PSGRIDS/Main.json
浏览文件 @
31c72e16
...
...
@@ -57,6 +57,39 @@
"modelref"
:
true
,
"path"
:
"PSSYSAPPS/Web/PSAPPDATAENTITIES/Reginfo.json"
},
"getPSAppViewLogics"
:
[
{
"logicTrigger"
:
"CUSTOM"
,
"logicType"
:
"APPVIEWUIACTION"
,
"name"
:
"grid_uagridcolumn1_ua98d563_click"
,
"getPSAppViewUIAction"
:
{
"modelref"
:
true
,
"id"
:
"表格界面_行编辑开关操作"
}
},
{
"logicTrigger"
:
"CUSTOM"
,
"logicType"
:
"APPVIEWUIACTION"
,
"name"
:
"grid_uagridcolumn1_u479f517_click"
,
"getPSAppViewUIAction"
:
{
"modelref"
:
true
,
"id"
:
"表格界面_编辑操作"
}
}
],
"getPSAppViewUIActions"
:
[
{
"name"
:
"表格界面_行编辑开关操作"
,
"getPSUIAction"
:
{
"modelref"
:
true
,
"id"
:
"ToggleRowEdit"
},
"xDataControlName"
:
"grid"
},
{
"name"
:
"表格界面_编辑操作"
,
"getPSUIAction"
:
{
"modelref"
:
true
,
"id"
:
"Edit"
},
"uIActionTarget"
:
"SINGLEKEY"
,
"xDataControlName"
:
"grid"
}
],
"getPSControlLogics"
:
[
{
"eventNames"
:
"ROWDBLCLICK;SELECTIONCHANGE;REMOVE;LOAD;BEFORELOAD"
,
"logicTag"
:
"grid"
,
...
...
@@ -174,6 +207,70 @@
"widthUnit"
:
"PX"
,
"enableRowEdit"
:
true
,
"enableSort"
:
true
},
{
"align"
:
"RIGHT"
,
"caption"
:
"操作"
,
"codeName"
:
"uagridcolumn1"
,
"columnType"
:
"UAGRIDCOLUMN"
,
"name"
:
"uagridcolumn1"
,
"noPrivDisplayMode"
:
1
,
"getPSDEUIActionGroup"
:
{
"name"
:
"操作列"
,
"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"
,
"name"
:
"u479f517"
,
"getPSUIAction"
:
{
"actionTarget"
:
"SINGLEKEY"
,
"getCapPSLanguageRes"
:
{
"lanResTag"
:
"TBB.TEXT.*.EDIT"
},
"caption"
:
"编辑"
,
"codeName"
:
"Edit"
,
"fullCodeName"
:
"Edit"
,
"name"
:
"表格界面_编辑操作"
,
"getPSSysImage"
:
{
"glyph"
:
"xf044@FontAwesome"
,
"cssClass"
:
"fa fa-edit"
},
"predefinedType"
:
"GRIDVIEW_EDITACTION"
,
"timeout"
:
60000
,
"getTooltipPSLanguageRes"
:
{
"lanResTag"
:
"TBB.TOOLTIP.*.EDIT"
},
"uIActionMode"
:
"SYS"
,
"uIActionTag"
:
"Edit"
,
"uIActionType"
:
"DEUIACTION"
},
"addSeparator"
:
true
,
"showCaption"
:
true
,
"showIcon"
:
true
}
]
},
"width"
:
100
,
"widthUnit"
:
"PX"
,
"enableSort"
:
false
}
],
"getPSDEGridDataItems"
:
[
{
"dataType"
:
25
,
...
...
trainsys-core/src/main/resources/model/cn/ibizlab/trainsys/PSSYSAPPS/Web/PSAPPDEVIEWS/ReginfoStuInfoList.json
浏览文件 @
31c72e16
...
...
@@ -399,6 +399,39 @@
"modelref"
:
true
,
"path"
:
"PSSYSAPPS/Web/PSAPPDATAENTITIES/Reginfo.json"
},
"getPSAppViewLogics"
:
[
{
"logicTrigger"
:
"CUSTOM"
,
"logicType"
:
"APPVIEWUIACTION"
,
"name"
:
"grid_uagridcolumn1_ua98d563_click"
,
"getPSAppViewUIAction"
:
{
"modelref"
:
true
,
"id"
:
"表格界面_行编辑开关操作"
}
},
{
"logicTrigger"
:
"CUSTOM"
,
"logicType"
:
"APPVIEWUIACTION"
,
"name"
:
"grid_uagridcolumn1_u479f517_click"
,
"getPSAppViewUIAction"
:
{
"modelref"
:
true
,
"id"
:
"表格界面_编辑操作"
}
}
],
"getPSAppViewUIActions"
:
[
{
"name"
:
"表格界面_行编辑开关操作"
,
"getPSUIAction"
:
{
"modelref"
:
true
,
"id"
:
"ToggleRowEdit"
},
"xDataControlName"
:
"grid"
},
{
"name"
:
"表格界面_编辑操作"
,
"getPSUIAction"
:
{
"modelref"
:
true
,
"id"
:
"Edit"
},
"uIActionTarget"
:
"SINGLEKEY"
,
"xDataControlName"
:
"grid"
}
],
"getPSControlHandler"
:
{
"getPSHandlerActions"
:
[
{
"actionName"
:
"Get"
,
...
...
@@ -603,6 +636,70 @@
"widthUnit"
:
"PX"
,
"enableRowEdit"
:
true
,
"enableSort"
:
true
},
{
"align"
:
"RIGHT"
,
"caption"
:
"操作"
,
"codeName"
:
"uagridcolumn1"
,
"columnType"
:
"UAGRIDCOLUMN"
,
"name"
:
"uagridcolumn1"
,
"noPrivDisplayMode"
:
1
,
"getPSDEUIActionGroup"
:
{
"name"
:
"操作列"
,
"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"
,
"name"
:
"u479f517"
,
"getPSUIAction"
:
{
"actionTarget"
:
"SINGLEKEY"
,
"getCapPSLanguageRes"
:
{
"lanResTag"
:
"TBB.TEXT.*.EDIT"
},
"caption"
:
"编辑"
,
"codeName"
:
"Edit"
,
"fullCodeName"
:
"Edit"
,
"name"
:
"表格界面_编辑操作"
,
"getPSSysImage"
:
{
"glyph"
:
"xf044@FontAwesome"
,
"cssClass"
:
"fa fa-edit"
},
"predefinedType"
:
"GRIDVIEW_EDITACTION"
,
"timeout"
:
60000
,
"getTooltipPSLanguageRes"
:
{
"lanResTag"
:
"TBB.TOOLTIP.*.EDIT"
},
"uIActionMode"
:
"SYS"
,
"uIActionTag"
:
"Edit"
,
"uIActionType"
:
"DEUIACTION"
},
"addSeparator"
:
true
,
"showCaption"
:
true
,
"showIcon"
:
true
}
]
},
"width"
:
100
,
"widthUnit"
:
"PX"
,
"enableSort"
:
false
}
],
"getPSDEGridDataItems"
:
[
{
"dataType"
:
25
,
...
...
trainsys-core/src/main/resources/model/cn/ibizlab/trainsys/PSSYSAPPS/Web/PSSYSAPP.json
浏览文件 @
31c72e16
...
...
@@ -1857,6 +1857,39 @@
"modelref"
:
true
,
"path"
:
"PSSYSAPPS/Web/PSAPPDATAENTITIES/Reginfo.json"
},
"getPSAppViewLogics"
:
[
{
"logicTrigger"
:
"CUSTOM"
,
"logicType"
:
"APPVIEWUIACTION"
,
"name"
:
"grid_uagridcolumn1_ua98d563_click"
,
"getPSAppViewUIAction"
:
{
"modelref"
:
true
,
"id"
:
"表格界面_行编辑开关操作"
}
},
{
"logicTrigger"
:
"CUSTOM"
,
"logicType"
:
"APPVIEWUIACTION"
,
"name"
:
"grid_uagridcolumn1_u479f517_click"
,
"getPSAppViewUIAction"
:
{
"modelref"
:
true
,
"id"
:
"表格界面_编辑操作"
}
}
],
"getPSAppViewUIActions"
:
[
{
"name"
:
"表格界面_行编辑开关操作"
,
"getPSUIAction"
:
{
"modelref"
:
true
,
"id"
:
"ToggleRowEdit"
},
"xDataControlName"
:
"grid"
},
{
"name"
:
"表格界面_编辑操作"
,
"getPSUIAction"
:
{
"modelref"
:
true
,
"id"
:
"Edit"
},
"uIActionTarget"
:
"SINGLEKEY"
,
"xDataControlName"
:
"grid"
}
],
"getPSControlHandler"
:
{
"getPSHandlerActions"
:
[
{
"actionName"
:
"Get"
,
...
...
@@ -2061,6 +2094,70 @@
"widthUnit"
:
"PX"
,
"enableRowEdit"
:
true
,
"enableSort"
:
true
},
{
"align"
:
"RIGHT"
,
"caption"
:
"操作"
,
"codeName"
:
"uagridcolumn1"
,
"columnType"
:
"UAGRIDCOLUMN"
,
"name"
:
"uagridcolumn1"
,
"noPrivDisplayMode"
:
1
,
"getPSDEUIActionGroup"
:
{
"name"
:
"操作列"
,
"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"
,
"name"
:
"u479f517"
,
"getPSUIAction"
:
{
"actionTarget"
:
"SINGLEKEY"
,
"getCapPSLanguageRes"
:
{
"lanResTag"
:
"TBB.TEXT.*.EDIT"
},
"caption"
:
"编辑"
,
"codeName"
:
"Edit"
,
"fullCodeName"
:
"Edit"
,
"name"
:
"表格界面_编辑操作"
,
"getPSSysImage"
:
{
"glyph"
:
"xf044@FontAwesome"
,
"cssClass"
:
"fa fa-edit"
},
"predefinedType"
:
"GRIDVIEW_EDITACTION"
,
"timeout"
:
60000
,
"getTooltipPSLanguageRes"
:
{
"lanResTag"
:
"TBB.TOOLTIP.*.EDIT"
},
"uIActionMode"
:
"SYS"
,
"uIActionTag"
:
"Edit"
,
"uIActionType"
:
"DEUIACTION"
},
"addSeparator"
:
true
,
"showCaption"
:
true
,
"showIcon"
:
true
}
]
},
"width"
:
100
,
"widthUnit"
:
"PX"
,
"enableSort"
:
false
}
],
"getPSDEGridDataItems"
:
[
{
"dataType"
:
25
,
...
...
编辑
预览
Markdown
格式
0%
请重试
or
添加新附件
添加附件
取消
您添加了
0
人
到此讨论。请谨慎行事。
先完成此消息的编辑!
取消
想要评论请
注册
或
登录