Skip to content
项目
群组
代码片段
帮助
正在加载...
帮助
提交反馈
为 GitLab 提交贡献
登录
切换导航
I
ibizlab-generator
项目
项目
详情
动态
版本
周期分析
仓库
仓库
文件
提交
分支
标签
贡献者
分支图
比较
统计图
议题
0
议题
0
列表
看板
标记
里程碑
合并请求
0
合并请求
0
CI / CD
CI / CD
流水线
作业
计划
统计图
Wiki
Wiki
代码片段
代码片段
成员
成员
收起侧边栏
关闭侧边栏
动态
分支图
统计图
创建新议题
作业
提交
议题看板
打开侧边栏
ibiz4jteam
ibizlab-generator
提交
cc5faf56
提交
cc5faf56
编写于
12月 29, 2021
作者:
RedPig97
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
update: 更新
上级
b7922fe4
变更
4
隐藏空白字符变更
内嵌
并排
正在显示
4 个修改的文件
包含
65 行增加
和
6 行删除
+65
-6
index.ts
...mpl/r7/app_{{apps}}/src/ibiz-core/modules/common/index.ts
+33
-0
{{pages@DEEDITVIEW}}-config.ts.hbs
...}/{{pages@DEEDITVIEW}}/{{pages@DEEDITVIEW}}-config.ts.hbs
+1
-3
{{pages@DEEDITVIEW}}.vue.hbs
...dules}}/{{pages@DEEDITVIEW}}/{{pages@DEEDITVIEW}}.vue.hbs
+8
-2
{{ctrls@FORM}}-form-config.ts.hbs
...s}}/{{ctrls@FORM}}-form/{{ctrls@FORM}}-form-config.ts.hbs
+23
-1
未找到文件。
modules/ibizlab-generator-core/src/main/resources/templ/r7/app_{{apps}}/src/ibiz-core/modules/common/index.ts
浏览文件 @
cc5faf56
...
...
@@ -87,3 +87,36 @@ export function useContextParams(props: Record<any, any>) {
return
{
context
,
viewParams
};
}
/**
* @description 值规则校验
* @export
* @param {Record<any, any>} props
*/
export
async
function
verifyRules
(
_rule
:
any
,
value
:
any
,
condition
:
any
)
{
//常规规则
if
(
Object
.
is
(
condition
.
Type
,
'SIMPLE'
))
{
//todo
// 数值范围
}
else
if
(
Object
.
is
(
condition
.
Type
,
'VALUERANGE2'
))
{
if
(
!
value
)
{
return
;
}
if
(
!
Number
.
isInteger
(
value
))
{
return
Promise
.
reject
(
'请输入数值!'
);
}
else
{
if
(
condition
.
includeMinValue
&&
Object
.
is
(
value
,
condition
.
minValue
))
{
return
Promise
.
resolve
();
}
else
if
(
condition
.
includeMaxValue
&&
Object
.
is
(
value
,
condition
.
maxValue
))
{
return
Promise
.
resolve
();
}
else
if
(
value
>
condition
.
minValue
&&
value
<
condition
.
maxValue
)
{
return
Promise
.
resolve
();
}
}
// 正则式
}
else
if
(
Object
.
is
(
condition
.
Type
,
'REGEX'
))
{
// 长度
}
else
if
(
Object
.
is
(
condition
.
Type
,
'STRINGLENGTH'
))
{
// 系统值规则
}
else
if
(
Object
.
is
(
condition
.
Type
,
'SYSVALUERULE'
))
{
}
}
\ No newline at end of file
modules/ibizlab-generator-core/src/main/resources/templ/r7/app_{{apps}}/src/page/{{appModules}}/{{pages@DEEDITVIEW}}/{{pages@DEEDITVIEW}}-config.ts.hbs
浏览文件 @
cc5faf56
export const ViewConfig = {
viewCodeName: '
{{
page
.
codeName
}}
',
viewName: '
{{
page
.
name
}}
',
viewCaption: '
{{
page
.
caption
}}
',
{{>
@macro
/
front-end
/
view
/
common
/
viewBaseConfig
.
hbs
}}
{{#
page
.
ctrls
}}
{{#
eq
controlType
"TOOLBAR"
}}
{{
lowerCase
codeName
}}
:{
...
...
modules/ibizlab-generator-core/src/main/resources/templ/r7/app_{{apps}}/src/page/{{appModules}}/{{pages@DEEDITVIEW}}/{{pages@DEEDITVIEW}}.vue.hbs
浏览文件 @
cc5faf56
...
...
@@ -34,9 +34,15 @@ const { state, handleToolbarEvent } = new EditView(ViewConfig).moduleInstall(pro
</script>
<template>
<IbizDefaultViewLayout
class=
"ibiz-edit-view
"
>
<IbizDefaultViewLayout
:class=
"['ibiz-edit-view', state.viewSysCss]
"
>
<template
v-slot:header-left
>
<IbizIconText
class=
"ibiz-view__caption"
size=
"large"
:text=
"state.viewCaption"
/>
<IbizIconText
class=
"ibiz-view__caption"
size=
"large"
:subCaption=
"state.subCaption"
:showCaptionBar=
"state.showCaptionBar"
:text=
"state.viewCaption"
/>
</template>
{{#
page
.
ctrls
}}
{{#
eq
controlType
"TOOLBAR"
}}
...
...
modules/ibizlab-generator-core/src/main/resources/templ/r7/app_{{apps}}/src/widgets/{{appEntities}}/{{ctrls@FORM}}-form/{{ctrls@FORM}}-form-config.ts.hbs
浏览文件 @
cc5faf56
import { ControlVOBase } from '@ibiz-core';
import { ControlVOBase
, verifyRules
} from '@ibiz-core';
import { ControlService } from './
{{
spinalCase
ctrl
.
codeName
}}
-form-service';
export const CtrlConfig = {
...
...
@@ -6,6 +6,28 @@ export const CtrlConfig = {
controlName: '
{{
ctrl
.
name
}}
',
controlService: new ControlService(),
data: {},
rules: {
{{#
each
ctrl
.
psDEFormEditItemVRs
as
|
ruleItem
|
}}
{{#
neq
ruleItem
2
}}
{{#if
ruleItem
.
valueRuleType
'DEFVALUERULE'
}}
{{
psDEFormEditItemName
}}
: [
{{#
each
ruleItem
.
psDEFVRGroupCondition
as
|
condition
|
}}
{trigger: ['change', 'blur'],
validator: (_rule: RuleObject, value: string) => verifyRules(_rule,value,{
{{#
condition
.
condType
}}
'Type':
{{
condition
.
condType
}}
,
{{/
condition
.
condType
}}
{{#
condition
.
name
}}
'name':
{{
condition
.
name
}}
,
{{/
condition
.
name
}}
{{#
condition
.
maxValue
}}
'maxValue':
{{
condition
.
maxValue
}}
,
{{/
condition
.
maxValue
}}
{{#
condition
.
minValue
}}
'minValue':
{{
condition
.
minValue
}}
,
{{/
condition
.
minValue
}}
{{#
condition
.
ruleInfo
}}
'ruleInfo':
{{
condition
.
ruleInfo
}}
,
{{/
condition
.
ruleInfo
}}
{{#
condition
.
includeMaxValue
}}
'includeMaxValue':
{{
condition
.
includeMaxValue
}}
,
{{/
condition
.
includeMaxValue
}}
{{#
condition
.
includeMinValue
}}
'includeMinValue':
{{
condition
.
includeMinValue
}}
,
{{/
condition
.
includeMinValue
}}
}) }
{{/
each
}}
]
{{/if}}
{{/
neq
}}
{{/
each
}}
}
};
/**
...
...
编辑
预览
Markdown
格式
0%
请重试
or
添加新附件
添加附件
取消
您添加了
0
人
到此讨论。请谨慎行事。
先完成此消息的编辑!
取消
想要评论请
注册
或
登录