Skip to content
项目
群组
代码片段
帮助
正在加载...
帮助
提交反馈
为 GitLab 提交贡献
登录
切换导航
功
功能演示系统
项目
项目
详情
动态
版本
周期分析
仓库
仓库
文件
提交
分支
标签
贡献者
分支图
比较
统计图
议题
0
议题
0
列表
看板
标记
里程碑
合并请求
0
合并请求
0
CI / CD
CI / CD
流水线
作业
计划
统计图
Wiki
Wiki
代码片段
代码片段
成员
成员
收起侧边栏
关闭侧边栏
动态
分支图
统计图
创建新议题
作业
提交
议题看板
打开侧边栏
示例
功能演示系统
提交
6604543c
提交
6604543c
编写于
11月 30, 2020
作者:
ibizdev
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
kuaikuai 发布系统代码 [后台服务,演示应用]
上级
128c4b41
变更
5
隐藏空白字符变更
内嵌
并排
正在显示
5 个修改的文件
包含
54 行增加
和
10 行删除
+54
-10
ibizsample0001_en_US.ts
...le/lanres/entities/ibizsample0001/ibizsample0001_en_US.ts
+1
-0
ibizsample0001_zh_CN.ts
...le/lanres/entities/ibizsample0001/ibizsample0001_zh_CN.ts
+1
-0
rules-form-form-base.vue
...widgets/ibizbook/rules-form-form/rules-form-form-base.vue
+10
-10
main-form-base.vue
...b/src/widgets/ibizsample0001/main-form/main-form-base.vue
+37
-0
main-form-model.ts
...b/src/widgets/ibizsample0001/main-form/main-form-model.ts
+5
-0
未找到文件。
app_Web/src/locale/lanres/entities/ibizsample0001/ibizsample0001_en_US.ts
浏览文件 @
6604543c
...
...
@@ -185,6 +185,7 @@ export default {
formitem1
:
"更新时间-多久之前"
,
formitem2
:
"名称-穿梭框"
,
formitem3
:
"日期型-cron"
,
formitem4
:
"日期时间型"
,
ibizsample0001id
:
"IBIZSAMPLE0001标识"
,
},
uiactions
:
{
...
...
app_Web/src/locale/lanres/entities/ibizsample0001/ibizsample0001_zh_CN.ts
浏览文件 @
6604543c
...
...
@@ -184,6 +184,7 @@ export default {
formitem1
:
"更新时间-多久之前"
,
formitem2
:
"名称-穿梭框"
,
formitem3
:
"日期型-cron"
,
formitem4
:
"日期时间型"
,
ibizsample0001id
:
"IBIZSAMPLE0001标识"
,
},
uiactions
:
{
...
...
app_Web/src/widgets/ibizbook/rules-form-form/rules-form-form-base.vue
浏览文件 @
6604543c
...
...
@@ -709,30 +709,30 @@ export default class RulesFormBase extends Vue implements ControlInterface {
]
},
],
pric
e
:[
typ
e
:[
{
type
:
"
VALUERANGE2
"
,
type
:
"
STRINGLENGTH
"
,
condOP
:
""
,
ruleInfo
:
"
数值必须大于[0.0]且小于等于[100.0
]"
,
ruleInfo
:
"
内容长度必须大于[0]且小于等于[6
]"
,
isKeyCond
:
false
,
isNotMode
:
false
,
maxValue
:
100
,
maxValue
:
6
,
minValue
:
0
,
deName
:
"
pric
e"
,
deName
:
"
typ
e"
,
isIncludeMaxValue
:
true
,
isIncludeMinValue
:
false
,
},
],
typ
e
:[
pric
e
:[
{
type
:
"
STRINGLENGTH
"
,
type
:
"
VALUERANGE2
"
,
condOP
:
""
,
ruleInfo
:
"
内容长度必须大于[0]且小于等于[6
]"
,
ruleInfo
:
"
数值必须大于[0.0]且小于等于[100.0
]"
,
isKeyCond
:
false
,
isNotMode
:
false
,
maxValue
:
6
,
maxValue
:
100
,
minValue
:
0
,
deName
:
"
typ
e"
,
deName
:
"
pric
e"
,
isIncludeMaxValue
:
true
,
isIncludeMinValue
:
false
,
},
...
...
app_Web/src/widgets/ibizsample0001/main-form/main-form-base.vue
浏览文件 @
6604543c
...
...
@@ -406,6 +406,23 @@
placeholder=
'请选择...'
/>
</app-form-item>
</i-col>
<i-col
v-show=
"detailsModel.formitem4.visible"
:style=
"
{}" :lg="{ span: 24, offset: 0 }">
<app-form-item
name=
'formitem4'
:itemRules=
"this.rules().formitem4"
class=
''
:caption=
"$t('entities.ibizsample0001.main_form.details.formitem4')"
uiStyle=
"DEFAULT"
:labelWidth=
"150"
:isShowCaption=
"true"
:error=
"detailsModel.formitem4.error"
:isEmptyCaption=
"false"
labelPos=
"LEFT"
>
<dropdown-list-dynamic
v-model=
"data.formitem4"
:data=
"data"
:context=
"context"
:viewparams=
"viewparams"
:localContext =
'
{ }'
:localParam ='{ }'
:disabled="detailsModel.formitem4.disabled"
valueType="string"
placeholder='请选择...' style="">
</dropdown-list-dynamic>
</app-form-item>
</i-col>
</row>
...
...
@@ -836,6 +853,7 @@ export default class MainBase extends Vue implements ControlInterface {
formitem1
:
null
,
formitem2
:
null
,
formitem3
:
null
,
formitem4
:
null
,
ibizsample0001id
:
null
,
ibizsample0001
:
null
,
};
...
...
@@ -1004,6 +1022,10 @@ export default class MainBase extends Vue implements ControlInterface {
{
required
:
this
.
detailsModel
.
formitem3
.
required
,
type
:
'string'
,
message
:
'日期型-cron 值不能为空'
,
trigger
:
'change'
},
{
required
:
this
.
detailsModel
.
formitem3
.
required
,
type
:
'string'
,
message
:
'日期型-cron 值不能为空'
,
trigger
:
'blur'
},
],
formitem4
:
[
{
required
:
this
.
detailsModel
.
formitem4
.
required
,
type
:
'string'
,
message
:
'日期时间型 值不能为空'
,
trigger
:
'change'
},
{
required
:
this
.
detailsModel
.
formitem4
.
required
,
type
:
'string'
,
message
:
'日期时间型 值不能为空'
,
trigger
:
'blur'
},
],
}
}
...
...
@@ -1186,6 +1208,8 @@ export default class MainBase extends Vue implements ControlInterface {
formitem2
:
new
FormItemModel
({
caption
:
'名称-穿梭框'
,
detailType
:
'FORMITEM'
,
name
:
'formitem2'
,
visible
:
true
,
isShowCaption
:
true
,
form
:
this
,
isControlledContent
:
false
,
required
:
false
,
disabled
:
false
,
enableCond
:
3
})
,
formitem3
:
new
FormItemModel
({
caption
:
'日期型-cron'
,
detailType
:
'FORMITEM'
,
name
:
'formitem3'
,
visible
:
true
,
isShowCaption
:
true
,
form
:
this
,
isControlledContent
:
false
,
required
:
false
,
disabled
:
false
,
enableCond
:
3
})
,
formitem4
:
new
FormItemModel
({
caption
:
'日期时间型'
,
detailType
:
'FORMITEM'
,
name
:
'formitem4'
,
visible
:
true
,
isShowCaption
:
true
,
form
:
this
,
isControlledContent
:
false
,
required
:
false
,
disabled
:
false
,
enableCond
:
3
})
,
ibizsample0001id
:
new
FormItemModel
({
caption
:
'IBIZSAMPLE0001标识'
,
detailType
:
'FORMITEM'
,
name
:
'ibizsample0001id'
,
visible
:
true
,
isShowCaption
:
true
,
form
:
this
,
isControlledContent
:
false
,
required
:
false
,
disabled
:
false
,
enableCond
:
3
})
,
...
...
@@ -1635,6 +1659,18 @@ export default class MainBase extends Vue implements ControlInterface {
this
.
formDataChange
({
name
:
'formitem3'
,
newVal
:
newVal
,
oldVal
:
oldVal
});
}
/**
* 监控表单属性 formitem4 值
*
* @param {*} newVal
* @param {*} oldVal
* @memberof MainBase
*/
@
Watch
(
'data.formitem4'
)
onFormitem4Change
(
newVal
:
any
,
oldVal
:
any
)
{
this
.
formDataChange
({
name
:
'formitem4'
,
newVal
:
newVal
,
oldVal
:
oldVal
});
}
/**
* 监控表单属性 ibizsample0001id 值
*
...
...
@@ -1739,6 +1775,7 @@ export default class MainBase extends Vue implements ControlInterface {
}
...
...
app_Web/src/widgets/ibizsample0001/main-form/main-form-model.ts
浏览文件 @
6604543c
...
...
@@ -200,6 +200,11 @@ export default class MainModel {
prop
:
'field09'
,
dataType
:
'DATE'
,
},
{
name
:
'formitem4'
,
prop
:
'field08'
,
dataType
:
'DATETIME'
,
},
{
name
:
'ibizsample0001id'
,
prop
:
'ibizsample0001id'
,
...
...
编辑
预览
Markdown
格式
0%
请重试
or
添加新附件
添加附件
取消
您添加了
0
人
到此讨论。请谨慎行事。
先完成此消息的编辑!
取消
想要评论请
注册
或
登录