Skip to content
项目
群组
代码片段
帮助
正在加载...
帮助
提交反馈
为 GitLab 提交贡献
登录
切换导航
功
功能演示系统
项目
项目
详情
动态
版本
周期分析
仓库
仓库
文件
提交
分支
标签
贡献者
分支图
比较
统计图
议题
0
议题
0
列表
看板
标记
里程碑
合并请求
0
合并请求
0
CI / CD
CI / CD
流水线
作业
计划
统计图
Wiki
Wiki
代码片段
代码片段
成员
成员
收起侧边栏
关闭侧边栏
动态
分支图
统计图
创建新议题
作业
提交
议题看板
打开侧边栏
示例
功能演示系统
提交
007e4955
提交
007e4955
编写于
4年前
作者:
ibizdev
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
ShineKOT 发布系统代码 [后台服务,演示应用]
上级
7143e4c8
变更
3
隐藏空白字符变更
内嵌
并排
正在显示
3 个修改的文件
包含
38 行增加
和
23 行删除
+38
-23
ibizbookusr6-grid-view-base.vue
...le/ibizbookusr6-grid-view/ibizbookusr6-grid-view-base.vue
+18
-5
main-menu-appmenu-base.vue
.../widgets/app/main-menu-appmenu/main-menu-appmenu-base.vue
+10
-8
rules-form-form-base.vue
...widgets/ibizbook/rules-form-form/rules-form-form-base.vue
+10
-10
未找到文件。
app_Web/src/pages/sample/ibizbookusr6-grid-view/ibizbookusr6-grid-view-base.vue
浏览文件 @
007e4955
...
...
@@ -803,17 +803,30 @@ export default class IBIZBOOKUsr6GridViewBase extends Vue {
const
deResParameters
:
any
[]
=
[];
const
parameters
:
any
[]
=
[
{
pathName
:
'ibizbooks'
,
parameterName
:
'ibizbook'
},
{
pathName
:
'optionview'
,
parameterName
:
'optionview'
},
];
const
_this
:
any
=
this
;
if
(
fullargs
&&
fullargs
.
copymode
){
Object
.
assign
(
data
,{
copymode
:
true
});
}
const
openIndexViewTab
=
(
data
:
any
)
=>
{
const
routePath
=
this
.
$viewTool
.
buildUpRoutePath
(
this
.
$route
,
tempContext
,
deResParameters
,
parameters
,
args
,
data
);
this
.
$router
.
push
(
routePath
);
const
openPopupModal
=
(
view
:
any
,
data
:
any
)
=>
{
let
container
:
Subject
<
any
>
=
this
.
$appmodal
.
openModal
(
view
,
tempContext
,
data
);
container
.
subscribe
((
result
:
any
)
=>
{
if
(
!
result
||
!
Object
.
is
(
result
.
ret
,
'OK'
))
{
return
;
}
if
(
!
xData
||
!
(
xData
.
refresh
instanceof
Function
))
{
return
;
}
xData
.
refresh
(
result
.
datas
);
});
}
openIndexViewTab
(
data
);
const
view
:
any
=
{
viewname
:
'ibizbookoption-view'
,
height
:
1000
,
width
:
1000
,
title
:
this
.
$t
(
'entities.ibizbook.views.optionview.title'
),
};
openPopupModal
(
view
,
data
);
}
...
...
This diff is collapsed.
Click to expand it.
app_Web/src/widgets/app/main-menu-appmenu/main-menu-appmenu-base.vue
浏览文件 @
007e4955
...
...
@@ -2130,15 +2130,17 @@ export default class MainMenuBase extends Vue implements ControlInterface {
const
deResParameters
:
any
[]
=
[];
const
parameters
:
any
[]
=
[
{
pathName
:
'ibizbooks'
,
parameterName
:
'ibizbook'
},
{
pathName
:
'optionview'
,
parameterName
:
'optionview'
},
];
const
path
:
string
=
this
.
$viewTool
.
buildUpRoutePath
(
this
.
$route
,
{},
deResParameters
,
parameters
,
[],
viewparam
);
if
(
Object
.
is
(
this
.
$route
.
fullPath
,
path
)){
return
;
}
this
.
$nextTick
(
function
(){
this
.
$router
.
push
(
path
);
})
const
view
=
{
viewname
:
'ibizbookoption-view'
,
title
:
(
this
.
$t
(
'entities.ibizbook.views.optionview.title'
)
as
any
),
height
:
1000
,
width
:
1000
,
};
const
appmodal
=
this
.
$appmodal
.
openModal
(
view
,
JSON
.
parse
(
JSON
.
stringify
(
this
.
context
)),
viewparam
);
appmodal
.
subscribe
((
result
:
any
)
=>
{
console
.
log
(
result
);
});
}
/**
...
...
This diff is collapsed.
Click to expand it.
app_Web/src/widgets/ibizbook/rules-form-form/rules-form-form-base.vue
浏览文件 @
007e4955
...
...
@@ -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
,
},
...
...
This diff is collapsed.
Click to expand it.
编辑
预览
Markdown
格式
0%
请重试
or
添加新附件
添加附件
取消
您添加了
0
人
到此讨论。请谨慎行事。
先完成此消息的编辑!
取消
想要评论请
注册
或
登录