Skip to content
项目
群组
代码片段
帮助
正在加载...
帮助
提交反馈
为 GitLab 提交贡献
登录
切换导航
iBiz-Vue-R7-Res
项目
项目
详情
动态
版本
周期分析
仓库
仓库
文件
提交
分支
标签
贡献者
分支图
比较
统计图
议题
0
议题
0
列表
看板
标记
里程碑
合并请求
0
合并请求
0
CI / CD
CI / CD
流水线
作业
计划
统计图
Wiki
Wiki
代码片段
代码片段
成员
成员
收起侧边栏
关闭侧边栏
动态
分支图
统计图
创建新议题
作业
提交
议题看板
打开侧边栏
iBiz-R7前端标准模板
iBiz-Vue-R7-Res
提交
613952a6
提交
613952a6
编写于
6月 04, 2020
作者:
WodahsOrez
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
lxm--编辑器参数处理,判断context和viewparams非空
上级
e0a055e0
变更
10
隐藏空白字符变更
内嵌
并排
正在显示
10 个修改的文件
包含
20 行增加
和
20 行删除
+20
-20
app-autocomplete.vue
src/components/app-autocomplete/app-autocomplete.vue
+2
-2
app-checkbox-list.vue
src/components/app-checkbox-list/app-checkbox-list.vue
+2
-2
app-column-link.vue
src/components/app-column-link/app-column-link.vue
+2
-2
app-mpicker.vue
src/components/app-mpicker/app-mpicker.vue
+2
-2
app-picker-select-view.vue
...ponents/app-picker-select-view/app-picker-select-view.vue
+2
-2
app-radio-group.vue
src/components/app-radio-group/app-radio-group.vue
+2
-2
codelist.vue
src/components/codelist/codelist.vue
+2
-2
dropdown-list-dynamic.vue
...omponents/dropdown-list-dynamic/dropdown-list-dynamic.vue
+2
-2
dropdown-list-mpicker.vue
...omponents/dropdown-list-mpicker/dropdown-list-mpicker.vue
+2
-2
dropdown-list.vue
src/components/dropdown-list/dropdown-list.vue
+2
-2
未找到文件。
src/components/app-autocomplete/app-autocomplete.vue
浏览文件 @
613952a6
...
...
@@ -281,8 +281,8 @@ export default class AppAutocomplete extends Vue {
return
false
;
}
// 合并表单参数
arg
.
param
=
JSON
.
parse
(
JSON
.
stringify
(
this
.
viewparams
))
;
arg
.
context
=
JSON
.
parse
(
JSON
.
stringify
(
this
.
context
))
;
arg
.
param
=
this
.
viewparams
?
JSON
.
parse
(
JSON
.
stringify
(
this
.
viewparams
))
:
{}
;
arg
.
context
=
this
.
context
?
JSON
.
parse
(
JSON
.
stringify
(
this
.
context
))
:
{}
;
// 附加参数处理
if
(
this
.
itemParam
&&
this
.
itemParam
.
context
)
{
let
_context
=
this
.
$util
.
formatData
(
this
.
data
,
arg
.
context
,
this
.
itemParam
.
context
);
...
...
src/components/app-checkbox-list/app-checkbox-list.vue
浏览文件 @
613952a6
...
...
@@ -207,8 +207,8 @@ export default class AppCheckBox extends Vue {
*/
public
handlePublicParams
(
arg
:
any
)
{
// 合并表单参数
arg
.
param
=
JSON
.
parse
(
JSON
.
stringify
(
this
.
viewparams
))
;
arg
.
context
=
JSON
.
parse
(
JSON
.
stringify
(
this
.
context
))
;
arg
.
param
=
this
.
viewparams
?
JSON
.
parse
(
JSON
.
stringify
(
this
.
viewparams
))
:
{}
;
arg
.
context
=
this
.
context
?
JSON
.
parse
(
JSON
.
stringify
(
this
.
context
))
:
{}
;
// 附加参数处理
if
(
this
.
itemParam
&&
this
.
itemParam
.
context
)
{
let
_context
=
this
.
$util
.
formatData
(
this
.
data
,
arg
.
context
,
this
.
itemParam
.
context
);
...
...
src/components/app-column-link/app-column-link.vue
浏览文件 @
613952a6
...
...
@@ -279,8 +279,8 @@ export default class AppColumnLink extends Vue {
return
false
;
}
// 合并表单参数
arg
.
param
=
JSON
.
parse
(
JSON
.
stringify
(
this
.
viewparams
))
;
arg
.
context
=
JSON
.
parse
(
JSON
.
stringify
(
this
.
context
))
;
arg
.
param
=
this
.
viewparams
?
JSON
.
parse
(
JSON
.
stringify
(
this
.
viewparams
))
:
{}
;
arg
.
context
=
this
.
context
?
JSON
.
parse
(
JSON
.
stringify
(
this
.
context
))
:
{}
;
return
true
;
}
...
...
src/components/app-mpicker/app-mpicker.vue
浏览文件 @
613952a6
...
...
@@ -246,8 +246,8 @@ export default class AppMpicker extends Vue {
return
false
;
}
// 合并表单参数
arg
.
param
=
JSON
.
parse
(
JSON
.
stringify
(
this
.
viewparams
))
;
arg
.
context
=
JSON
.
parse
(
JSON
.
stringify
(
this
.
context
))
;
arg
.
param
=
this
.
viewparams
?
JSON
.
parse
(
JSON
.
stringify
(
this
.
viewparams
))
:
{}
;
arg
.
context
=
this
.
context
?
JSON
.
parse
(
JSON
.
stringify
(
this
.
context
))
:
{}
;
// 附加参数处理
if
(
this
.
itemParam
&&
this
.
itemParam
.
context
)
{
let
_context
=
this
.
$util
.
formatData
(
this
.
activeData
,
arg
.
context
,
this
.
itemParam
.
context
);
...
...
src/components/app-picker-select-view/app-picker-select-view.vue
浏览文件 @
613952a6
...
...
@@ -255,8 +255,8 @@ export default class AppPickerSelectView extends Vue {
return
false
;
}
// 合并表单参数
arg
.
param
=
JSON
.
parse
(
JSON
.
stringify
(
this
.
viewparams
))
;
arg
.
context
=
JSON
.
parse
(
JSON
.
stringify
(
this
.
context
))
;
arg
.
param
=
this
.
viewparams
?
JSON
.
parse
(
JSON
.
stringify
(
this
.
viewparams
))
:
{}
;
arg
.
context
=
this
.
context
?
JSON
.
parse
(
JSON
.
stringify
(
this
.
context
))
:
{}
;
// 附加参数处理
if
(
this
.
itemParam
.
context
)
{
let
_context
=
this
.
$util
.
formatData
(
this
.
data
,
arg
.
context
,
this
.
itemParam
.
context
);
...
...
src/components/app-radio-group/app-radio-group.vue
浏览文件 @
613952a6
...
...
@@ -165,8 +165,8 @@ export default class AppRadioGroup extends Vue {
*/
public
handlePublicParams
(
arg
:
any
)
{
// 合并表单参数
arg
.
param
=
JSON
.
parse
(
JSON
.
stringify
(
this
.
viewparams
))
;
arg
.
context
=
JSON
.
parse
(
JSON
.
stringify
(
this
.
context
))
;
arg
.
param
=
this
.
viewparams
?
JSON
.
parse
(
JSON
.
stringify
(
this
.
viewparams
))
:
{}
;
arg
.
context
=
this
.
context
?
JSON
.
parse
(
JSON
.
stringify
(
this
.
context
))
:
{}
;
// 附加参数处理
if
(
this
.
itemParam
&&
this
.
itemParam
.
context
)
{
let
_context
=
this
.
$util
.
formatData
(
this
.
data
,
arg
.
context
,
this
.
itemParam
.
context
);
...
...
src/components/codelist/codelist.vue
浏览文件 @
613952a6
...
...
@@ -267,8 +267,8 @@ export default class CodeList extends Vue {
*/
public
handlePublicParams
(
arg
:
any
)
{
// 合并表单参数
arg
.
param
=
JSON
.
parse
(
JSON
.
stringify
(
this
.
viewparams
))
;
arg
.
context
=
JSON
.
parse
(
JSON
.
stringify
(
this
.
context
))
;
arg
.
param
=
this
.
viewparams
?
JSON
.
parse
(
JSON
.
stringify
(
this
.
viewparams
))
:
{}
;
arg
.
context
=
this
.
context
?
JSON
.
parse
(
JSON
.
stringify
(
this
.
context
))
:
{}
;
// 附加参数处理
if
(
this
.
itemParam
&&
this
.
itemParam
.
context
)
{
let
_context
=
this
.
$util
.
formatData
(
this
.
data
,
arg
.
context
,
this
.
itemParam
.
context
);
...
...
src/components/dropdown-list-dynamic/dropdown-list-dynamic.vue
浏览文件 @
613952a6
...
...
@@ -169,8 +169,8 @@ export default class DropDownListDynamic extends Vue {
*/
public
handlePublicParams
(
arg
:
any
)
{
// 合并表单参数
arg
.
param
=
JSON
.
parse
(
JSON
.
stringify
(
this
.
viewparams
))
;
arg
.
context
=
JSON
.
parse
(
JSON
.
stringify
(
this
.
context
))
;
arg
.
param
=
this
.
viewparams
?
JSON
.
parse
(
JSON
.
stringify
(
this
.
viewparams
))
:
{}
;
arg
.
context
=
this
.
context
?
JSON
.
parse
(
JSON
.
stringify
(
this
.
context
))
:
{}
;
// 附加参数处理
if
(
this
.
itemParam
.
context
)
{
let
_context
=
this
.
$util
.
formatData
(
this
.
data
,
arg
.
context
,
this
.
itemParam
.
context
);
...
...
src/components/dropdown-list-mpicker/dropdown-list-mpicker.vue
浏览文件 @
613952a6
...
...
@@ -154,8 +154,8 @@ export default class DropDownListMpicker extends Vue {
*/
public
handlePublicParams
(
arg
:
any
)
{
// 合并表单参数
arg
.
param
=
JSON
.
parse
(
JSON
.
stringify
(
this
.
viewparams
))
;
arg
.
context
=
JSON
.
parse
(
JSON
.
stringify
(
this
.
context
))
;
arg
.
param
=
this
.
viewparams
?
JSON
.
parse
(
JSON
.
stringify
(
this
.
viewparams
))
:
{}
;
arg
.
context
=
this
.
context
?
JSON
.
parse
(
JSON
.
stringify
(
this
.
context
))
:
{}
;
// 附加参数处理
if
(
this
.
itemParam
.
context
)
{
let
_context
=
this
.
$util
.
formatData
(
this
.
data
,
arg
.
context
,
this
.
itemParam
.
context
);
...
...
src/components/dropdown-list/dropdown-list.vue
浏览文件 @
613952a6
...
...
@@ -169,8 +169,8 @@ export default class DropDownList extends Vue {
*/
public
handlePublicParams
(
arg
:
any
)
{
// 合并表单参数
arg
.
param
=
JSON
.
parse
(
JSON
.
stringify
(
this
.
viewparams
))
;
arg
.
context
=
JSON
.
parse
(
JSON
.
stringify
(
this
.
context
))
;
arg
.
param
=
this
.
viewparams
?
JSON
.
parse
(
JSON
.
stringify
(
this
.
viewparams
))
:
{}
;
arg
.
context
=
this
.
context
?
JSON
.
parse
(
JSON
.
stringify
(
this
.
context
))
:
{}
;
// 附加参数处理
if
(
this
.
itemParam
&&
this
.
itemParam
.
context
)
{
let
_context
=
this
.
$util
.
formatData
(
this
.
data
,
arg
.
context
,
this
.
itemParam
.
context
);
...
...
编辑
预览
Markdown
格式
0%
请重试
or
添加新附件
添加附件
取消
您添加了
0
人
到此讨论。请谨慎行事。
先完成此消息的编辑!
取消
想要评论请
注册
或
登录