Skip to content
项目
群组
代码片段
帮助
正在加载...
帮助
提交反馈
为 GitLab 提交贡献
登录
切换导航
T
TrainSys
项目
项目
详情
动态
版本
周期分析
仓库
仓库
文件
提交
分支
标签
贡献者
分支图
比较
统计图
议题
0
议题
0
列表
看板
标记
里程碑
合并请求
0
合并请求
0
CI / CD
CI / CD
流水线
作业
计划
统计图
Wiki
Wiki
代码片段
代码片段
成员
成员
收起侧边栏
关闭侧边栏
动态
分支图
统计图
创建新议题
作业
提交
议题看板
打开侧边栏
苏州培训方案
TrainSys
提交
9329e944
提交
9329e944
编写于
3月 30, 2023
作者:
ibizdev
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
zhujiamin 发布系统代码 [TrainSys,网页端]
上级
b508711f
变更
9
展开全部
显示空白字符变更
内嵌
并排
正在显示
9 个修改的文件
包含
537 行增加
和
456 行删除
+537
-456
app-register.ts
app_Web/src/app-register.ts
+2
-0
code-list.scss
app_Web/src/components/common/code-list/code-list.scss
+5
-0
code-list.tsx
app_Web/src/components/common/code-list/code-list.tsx
+77
-0
index.ts
app_Web/src/components/common/index.ts
+1
-0
grid-field-column.tsx
...gets/grid-control/grid-field-column/grid-field-column.tsx
+16
-27
TestRules.json
...SYSAPPS/Web/PSAPPDATAENTITIES/TEST/PSFORMS/TestRules.json
+143
-143
TESTTestRulesEditView.json
...sys/PSSYSAPPS/Web/PSAPPDEVIEWS/TESTTestRulesEditView.json
+143
-143
PSSYSAPP.json
...ces/model/cn/ibizlab/trainsys/PSSYSAPPS/Web/PSSYSAPP.json
+143
-143
PSSYSTEM.json
...rc/main/resources/model/cn/ibizlab/trainsys/PSSYSTEM.json
+7
-0
未找到文件。
app_Web/src/app-register.ts
浏览文件 @
9329e944
...
...
@@ -76,6 +76,7 @@ import {
DataImport
,
DataExport
,
ImagePreview
,
CodeList
,
}
from
'./components/common'
;
// 编辑器组件
import
{
...
...
@@ -180,6 +181,7 @@ export const AppRegister = {
v
.
component
(
'DataImport'
,
DataImport
);
v
.
component
(
'DataExport'
,
DataExport
);
v
.
component
(
'ImagePreview'
,
ImagePreview
);
v
.
component
(
'CodeList'
,
CodeList
);
// 注册编辑器组件
v
.
component
(
'GridEditor'
,
GridEditor
);
v
.
component
(
'IBizSpan'
,
IBizSpan
);
...
...
app_Web/src/components/common/code-list/code-list.scss
0 → 100644
浏览文件 @
9329e944
@include
b
(
code-list
)
{
@include
e
(
item
){
color
:
getCssVar
(
'code-list'
,
'item-color'
);
}
}
\ No newline at end of file
app_Web/src/components/common/code-list/code-list.tsx
0 → 100644
浏览文件 @
9329e944
import
{
ref
,
watch
,
defineComponent
}
from
'vue'
;
import
{
useNamespace
}
from
'@ibiz-template/vue-util'
;
import
{
isNil
}
from
'ramda'
;
import
'./code-list.scss'
;
export
const
CodeList
=
defineComponent
({
props
:
{
codeListItems
:
{
type
:
Array
<
IData
>
,
},
codeList
:
{
type
:
Object
,
required
:
true
,
},
value
:
{
type
:
[
String
,
Number
],
},
},
setup
(
props
)
{
const
ns
=
useNamespace
(
'code-list'
);
const
items
=
ref
<
IData
[]
>
([]);
watch
(
()
=>
props
.
value
,
(
newVal
,
oldVal
)
=>
{
if
(
newVal
!==
oldVal
)
{
if
(
isNil
(
newVal
)
||
newVal
===
''
)
{
// 空值置空
items
.
value
=
[];
}
else
{
// 非空值解析代码表
let
values
:
string
[]
|
number
[];
if
(
typeof
newVal
===
'string'
)
{
values
=
newVal
.
split
(
','
);
}
else
{
values
=
[
newVal
];
}
items
.
value
=
values
.
map
(
val
=>
{
const
findItem
=
props
.
codeListItems
?.
find
(
item
=>
item
.
value
===
val
,
);
return
{
text
:
findItem
?.
text
||
val
,
color
:
findItem
?.
color
,
};
});
}
}
},
{
immediate
:
true
},
);
return
{
items
,
ns
};
},
render
()
{
if
(
this
.
items
.
length
===
0
)
{
return
this
.
codeList
.
emptyText
;
}
return
(
<
span
class=
{
this
.
ns
.
b
()
}
>
{
this
.
items
.
map
((
item
,
index
)
=>
{
return
[
index
!==
0
?
this
.
codeList
?.
textSeparator
:
null
,
<
span
class=
{
this
.
ns
.
e
(
'item'
)
}
style=
{
this
.
ns
.
cssVarBlock
({
'item-color'
:
`${item.color}`
,
})
}
>
{
item
.
text
}
</
span
>,
];
})
}
</
span
>
);
},
});
app_Web/src/components/common/index.ts
浏览文件 @
9329e944
...
...
@@ -17,6 +17,7 @@ export { ImagePreview } from './image-preview/image-preview';
export
{
DataImport
}
from
'./data-import/data-import'
;
export
{
DataExport
}
from
'./data-export/data-export'
;
export
{
AppSelectTree
}
from
'../common/app-select-tree/app-select-tree'
;
export
{
CodeList
}
from
'../common/code-list/code-list'
;
export
{
AppIcon
,
...
...
app_Web/src/components/widgets/grid-control/grid-field-column/grid-field-column.tsx
浏览文件 @
9329e944
import
{
formatToCodeListText
,
GridFieldColumnController
,
GridRowController
,
}
from
'@ibiz-template/controller'
;
...
...
@@ -22,21 +21,7 @@ export const GridFieldColumn = defineComponent({
setup
(
props
)
{
const
ns
=
useNamespace
(
'grid-field-column'
);
// 代码表转换文本,如果不转换则为null
const
codeListText
=
computed
(()
=>
{
// 非前台处理,不做值转换
if
(
props
.
controller
.
model
.
source
.
cLConvertMode
!==
'FRONT'
)
{
return
null
;
}
const
fieldValue
=
props
.
row
.
data
[
props
.
controller
.
model
.
codeName
];
if
(
props
.
controller
.
codeListItems
?.
length
&&
fieldValue
)
{
return
formatToCodeListText
(
fieldValue
,
props
.
controller
.
codeListItems
!
,
);
}
return
null
;
});
const
codeList
=
props
.
controller
.
model
.
source
.
getPSAppCodeList
();
/**
* 单元格点击事件
...
...
@@ -73,26 +58,30 @@ export const GridFieldColumn = defineComponent({
return
ns
.
cssVarBlock
({
'justify-content'
:
justContent
});
});
const
showText
=
computed
(()
=>
{
return
(
codeListText
.
value
||
props
.
row
.
data
[
props
.
controller
.
model
.
codeName
]
);
});
return
{
ns
,
alignStyle
,
showText
,
onCellClick
};
return
{
ns
,
alignStyle
,
codeList
,
onCellClick
};
},
render
()
{
const
c
=
this
.
controller
;
const
fieldValue
=
this
.
row
.
data
[
this
.
controller
.
model
.
codeName
];
return
(
<
div
class=
{
[
this
.
ns
.
b
(),
c
.
clickable
&&
this
.
ns
.
m
(
'clickable'
)]
}
style=
{
this
.
alignStyle
}
onClick=
{
this
.
onCellClick
}
>
{
this
.
codeList
?
(
<
code
-
list
class=
{
this
.
ns
.
e
(
'text'
)
}
codeListItems=
{
c
.
codeListItems
}
codeList=
{
this
.
codeList
}
value=
{
fieldValue
}
></
code
-
list
>
)
:
(
<
span
class=
{
this
.
ns
.
e
(
'text'
)
}
>
{
this
.
showText
}
{
this
.
showText
&&
c
.
model
.
unitName
}
{
fieldValue
}
{
fieldValue
&&
c
.
model
.
unitName
}
</
span
>
)
}
</
div
>
);
},
...
...
trainsys-core/src/main/resources/model/cn/ibizlab/trainsys/PSSYSAPPS/Web/PSAPPDATAENTITIES/TEST/PSFORMS/TestRules.json
浏览文件 @
9329e944
此差异已折叠。
点击以展开。
trainsys-core/src/main/resources/model/cn/ibizlab/trainsys/PSSYSAPPS/Web/PSAPPDEVIEWS/TESTTestRulesEditView.json
浏览文件 @
9329e944
此差异已折叠。
点击以展开。
trainsys-core/src/main/resources/model/cn/ibizlab/trainsys/PSSYSAPPS/Web/PSSYSAPP.json
浏览文件 @
9329e944
此差异已折叠。
点击以展开。
trainsys-core/src/main/resources/model/cn/ibizlab/trainsys/PSSYSTEM.json
浏览文件 @
9329e944
...
...
@@ -690,6 +690,13 @@
"name"
:
"预置处理1"
,
"rTMOSFilePath"
:
"pssysdelogicnodes/preLogic1"
}
],
"getAllPSSysModelGroups"
:
[
{
"codeName"
:
"load"
,
"dynaModelFilePath"
:
"PSSYSMODELGROUPS/load.json"
,
"mOSFilePath"
:
"pssysmodelgroups/load"
,
"name"
:
"入驻"
,
"rTMOSFilePath"
:
"pssysmodelgroups/load"
}
],
"getAllPSSysPDTViews"
:
[
{
"caption"
:
"流程回退操作视图"
,
"codeName"
:
"Auto6"
,
...
...
编辑
预览
Markdown
格式
0%
请重试
or
添加新附件
添加附件
取消
您添加了
0
人
到此讨论。请谨慎行事。
先完成此消息的编辑!
取消
想要评论请
注册
或
登录