Skip to content
项目
群组
代码片段
帮助
正在加载...
帮助
提交反馈
为 GitLab 提交贡献
登录
切换导航
iBiz-Vue-Mob-R7-Res
项目
项目
详情
动态
版本
周期分析
仓库
仓库
文件
提交
分支
标签
贡献者
分支图
比较
统计图
议题
0
议题
0
列表
看板
标记
里程碑
合并请求
0
合并请求
0
CI / CD
CI / CD
流水线
作业
计划
统计图
Wiki
Wiki
代码片段
代码片段
成员
成员
收起侧边栏
关闭侧边栏
动态
分支图
统计图
创建新议题
作业
提交
议题看板
打开侧边栏
iBiz-R7前端标准模板
iBiz-Vue-Mob-R7-Res
提交
24931140
提交
24931140
编写于
6月 10, 2020
作者:
KK
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
update 编辑器 导航上下文、导航参数
上级
2f519bf9
变更
5
显示空白字符变更
内嵌
并排
正在显示
5 个修改的文件
包含
339 行增加
和
220 行删除
+339
-220
app-mob-check-list.vue
src/components/app-mob-check-list/app-mob-check-list.vue
+39
-1
app-mob-mpicker.vue
src/components/app-mob-mpicker/app-mob-mpicker.vue
+234
-214
app-mob-picker.vue
src/components/app-mob-picker/app-mob-picker.vue
+22
-2
app-mob-select-drop-down.vue
...nts/app-mob-select-drop-down/app-mob-select-drop-down.vue
+22
-2
app-mob-select.vue
src/components/app-mob-select/app-mob-select.vue
+22
-1
未找到文件。
src/components/app-mob-check-list/app-mob-check-list.vue
浏览文件 @
24931140
...
...
@@ -79,6 +79,39 @@
*/
@
Prop
()
public
type
!
:
string
;
/**
* 导航参数
*
* @type {*}
* @memberof AppSelect
*/
@
Prop
({
default
:
{}
})
protected
navigateParam
?:
any
;
/**
* 导航上下文
*
* @type {*}
* @memberof AppSelect
*/
@
Prop
({
default
:
{}
})
protected
navigateContext
?:
any
;
/**
* 应用上下文
*
* @type {*}
* @memberof AppSelect
*/
@
Prop
({
default
:
{}
})
protected
context
?:
any
;
/**
* 是否缓存
*
* @type {*}
* @memberof AppSelect
*/
@
Prop
({
default
:
true
})
protected
isCache
?:
boolean
;
public
created
()
{
if
(
this
.
tag
&&
this
.
type
)
{
if
(
Object
.
is
(
this
.
type
,
"dynamic"
))
{
...
...
@@ -91,7 +124,12 @@
this
.
options
=
[];
});
}
else
{
this
.
options
=
this
.
$store
.
getters
.
getCodeListItems
(
this
.
tag
);
// 处理导航参数、上下文参数
let
_context
:
any
=
{};
let
_queryParam
:
any
=
{};
Object
.
assign
(
_context
,
this
.
context
,
this
.
navigateContext
);
Object
.
assign
(
_queryParam
,
this
.
navigateParam
);
this
.
options
=
this
.
$store
.
getters
.
getCodeListItems
(
this
.
tag
,
this
.
isCache
,
{
...
_context
},
_queryParam
);
}
}
}
...
...
src/components/app-mob-mpicker/app-mob-mpicker.vue
浏览文件 @
24931140
...
...
@@ -83,6 +83,22 @@ export default class AppMobMpicker extends Vue {
*/
@
Prop
()
public
pickupView
?:
any
;
/**
* 导航参数
*
* @type {*}
* @memberof AppSelect
*/
@
Prop
({
default
:
{}
})
protected
navigateParam
?:
any
;
/**
* 导航上下文
*
* @type {*}
* @memberof AppSelect
*/
@
Prop
({
default
:
{}
})
protected
navigateContext
?:
any
;
/**
* 值
*
...
...
@@ -225,8 +241,12 @@ export default class AppMobMpicker extends Vue {
// return false;
// }
// 合并表单参数
arg
.
param
=
JSON
.
parse
(
JSON
.
stringify
(
this
.
viewparams
));
arg
.
context
=
JSON
.
parse
(
JSON
.
stringify
(
this
.
context
));
let
_context
:
any
=
{};
let
_params
:
any
=
{};
Object
.
assign
(
_context
,
this
.
context
,
this
.
navigateContext
);
Object
.
assign
(
_params
,
this
.
viewparams
,
this
.
navigateParam
);
arg
.
param
=
_params
;
arg
.
context
=
_context
;
// 附加参数处理
// if (this.itemParam.context) {
// let _context = this.$util.formatData(this.data,this.itemParam.context);
...
...
src/components/app-mob-picker/app-mob-picker.vue
浏览文件 @
24931140
...
...
@@ -168,6 +168,22 @@ export default class AppPicker extends Vue {
*/
@
Model
(
'change'
)
public
value
?:
any
;
/**
* 导航参数
*
* @type {*}
* @memberof AppSelect
*/
@
Prop
({
default
:
{}
})
protected
navigateParam
?:
any
;
/**
* 导航上下文
*
* @type {*}
* @memberof AppSelect
*/
@
Prop
({
default
:
{}
})
protected
navigateContext
?:
any
;
/**
* 当前值
*
...
...
@@ -686,8 +702,12 @@ export default class AppPicker extends Vue {
return
false
;
}
// 合并表单参数
arg
.
param
=
JSON
.
parse
(
JSON
.
stringify
(
this
.
viewparams
));
arg
.
context
=
JSON
.
parse
(
JSON
.
stringify
(
this
.
context
));
let
_context
:
any
=
{};
let
_params
:
any
=
{};
Object
.
assign
(
_context
,
this
.
context
,
this
.
navigateContext
);
Object
.
assign
(
_params
,
this
.
viewparams
,
this
.
navigateParam
);
arg
.
param
=
JSON
.
parse
(
JSON
.
stringify
(
_params
));
arg
.
context
=
JSON
.
parse
(
JSON
.
stringify
(
_context
));
// 附加参数处理
if
(
this
.
itemParam
.
context
)
{
// let _context = this.$util.formatData(this.data,this.itemParam.context);
...
...
src/components/app-mob-select-drop-down/app-mob-select-drop-down.vue
浏览文件 @
24931140
...
...
@@ -144,6 +144,22 @@ export default class AppSelectDropDown extends Vue {
*/
@
Model
(
'change'
)
public
value
?:
any
;
/**
* 导航参数
*
* @type {*}
* @memberof AppSelect
*/
@
Prop
({
default
:
{}
})
protected
navigateParam
?:
any
;
/**
* 导航上下文
*
* @type {*}
* @memberof AppSelect
*/
@
Prop
({
default
:
{}
})
protected
navigateContext
?:
any
;
/**
* 当前值
*
...
...
@@ -632,8 +648,12 @@ export default class AppSelectDropDown extends Vue {
return
false
;
}
// 合并表单参数
arg
.
param
=
JSON
.
parse
(
JSON
.
stringify
(
this
.
viewparams
));
arg
.
context
=
JSON
.
parse
(
JSON
.
stringify
(
this
.
context
));
let
_context
:
any
=
{};
let
_params
:
any
=
{};
Object
.
assign
(
_context
,
this
.
context
,
this
.
navigateContext
);
Object
.
assign
(
_params
,
this
.
viewparams
,
this
.
navigateParam
);
arg
.
param
=
JSON
.
parse
(
JSON
.
stringify
(
_params
));
arg
.
context
=
JSON
.
parse
(
JSON
.
stringify
(
_context
));
// 附加参数处理
if
(
this
.
itemParam
.
context
)
{
...
...
src/components/app-mob-select/app-mob-select.vue
浏览文件 @
24931140
...
...
@@ -118,6 +118,22 @@ export default class AppSelect extends Vue {
*/
@
Prop
({
default
:
{}
})
protected
context
?:
any
;
/**
* 导航参数
*
* @type {*}
* @memberof AppSelect
*/
@
Prop
({
default
:
{}
})
protected
navigateParam
?:
any
;
/**
* 导航上下文
*
* @type {*}
* @memberof AppSelect
*/
@
Prop
({
default
:
{}
})
protected
navigateContext
?:
any
;
/**
* 是否缓存
*
...
...
@@ -174,7 +190,12 @@ export default class AppSelect extends Vue {
if
(
!
this
.
isCached
)
{
Loading
.
show
(
this
.
$t
(
'app.loadding'
));
}
let
response
:
any
=
await
this
.
codeListService
.
getItems
(
this
.
tag
,
this
.
isCache
,
{
...
this
.
context
},
this
.
queryParam
);
// 处理导航参数、上下文参数
let
_context
:
any
=
{};
let
_queryParam
:
any
=
{};
Object
.
assign
(
_context
,
this
.
context
,
this
.
navigateContext
);
Object
.
assign
(
_queryParam
,
this
.
queryParam
,
this
.
navigateParam
);
let
response
:
any
=
await
this
.
codeListService
.
getItems
(
this
.
tag
,
this
.
isCache
,
{
...
_context
},
_queryParam
);
if
(
!
this
.
isCached
)
{
Loading
.
hidden
();
}
...
...
编辑
预览
Markdown
格式
0%
请重试
or
添加新附件
添加附件
取消
您添加了
0
人
到此讨论。请谨慎行事。
先完成此消息的编辑!
取消
想要评论请
注册
或
登录