Skip to content
项目
群组
代码片段
帮助
正在加载...
帮助
提交反馈
为 GitLab 提交贡献
登录
切换导航
iBiz-Vue-R7-Res
项目
项目
详情
动态
版本
周期分析
仓库
仓库
文件
提交
分支
标签
贡献者
分支图
比较
统计图
议题
0
议题
0
列表
看板
标记
里程碑
合并请求
0
合并请求
0
CI / CD
CI / CD
流水线
作业
计划
统计图
Wiki
Wiki
代码片段
代码片段
成员
成员
收起侧边栏
关闭侧边栏
动态
分支图
统计图
创建新议题
作业
提交
议题看板
打开侧边栏
iBiz-R7前端标准模板
iBiz-Vue-R7-Res
提交
74c1fa20
提交
74c1fa20
编写于
6月 11, 2020
作者:
lijinyang
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
穿梭框本地文件
上级
1fe185e3
变更
1
隐藏空白字符变更
内嵌
并排
正在显示
1 个修改的文件
包含
29 行增加
和
16 行删除
+29
-16
app-transfer.vue
src/components/app-transfer/app-transfer.vue
+29
-16
未找到文件。
src/components/app-transfer/app-transfer.vue
浏览文件 @
74c1fa20
...
@@ -30,7 +30,7 @@ export default class AppTransfer extends Vue {
...
@@ -30,7 +30,7 @@ export default class AppTransfer extends Vue {
/**
/**
* 穿梭框宽度
* 穿梭框宽度
*/
*/
@
Prop
()
public
width
:
any
;
@
Prop
()
public
width
:
any
;
/**
/**
* 代码表服务对象
* 代码表服务对象
...
@@ -77,6 +77,22 @@ export default class AppTransfer extends Vue {
...
@@ -77,6 +77,22 @@ export default class AppTransfer extends Vue {
*/
*/
@
Prop
()
public
codelistType
?:
string
;
@
Prop
()
public
codelistType
?:
string
;
/**
* 局部上下文导航参数
*
* @type {*}
* @memberof AppTransfer
*/
@
Prop
()
public
localContext
!
:
any
;
/**
* 局部导航参数
*
* @type {*}
* @memberof AppTransfer
*/
@
Prop
()
public
localParam
!
:
any
;
/**
/**
* 组件change事件,右侧框数据变化时
* 组件change事件,右侧框数据变化时
* @memberof AppTransfer
* @memberof AppTransfer
...
@@ -103,13 +119,6 @@ export default class AppTransfer extends Vue {
...
@@ -103,13 +119,6 @@ export default class AppTransfer extends Vue {
}
}
}
}
/**
* 传入额外参数
*
* @type {*}
* @memberof AppTransfer
*/
@
Prop
()
public
itemParam
?:
any
;
/**
/**
* 视图上下文
* 视图上下文
...
@@ -202,6 +211,7 @@ export default class AppTransfer extends Vue {
...
@@ -202,6 +211,7 @@ export default class AppTransfer extends Vue {
* @returns
* @returns
* @memberof AppTransfer
* @memberof AppTransfer
*/
*/
public
handlePublicParams
(
arg
:
any
)
{
public
handlePublicParams
(
arg
:
any
)
{
// 合并表单参数
// 合并表单参数
arg
.
param
=
this
.
viewparams
arg
.
param
=
this
.
viewparams
...
@@ -209,19 +219,21 @@ export default class AppTransfer extends Vue {
...
@@ -209,19 +219,21 @@ export default class AppTransfer extends Vue {
:
{};
:
{};
arg
.
context
=
this
.
context
?
JSON
.
parse
(
JSON
.
stringify
(
this
.
context
))
:
{};
arg
.
context
=
this
.
context
?
JSON
.
parse
(
JSON
.
stringify
(
this
.
context
))
:
{};
// 附加参数处理
// 附加参数处理
if
(
this
.
itemParam
&&
this
.
itemParam
.
context
)
{
if
(
this
.
localContext
&&
Object
.
keys
(
this
.
localContext
).
length
>
0
)
{
let
_context
=
this
.
$util
.
format
Data
(
let
_context
=
this
.
$util
.
computedNav
Data
(
this
.
itemValue
,
this
.
itemValue
,
arg
.
context
,
arg
.
context
,
this
.
itemParam
.
context
arg
.
param
,
this
.
localContext
);
);
Object
.
assign
(
arg
.
context
,
_context
);
Object
.
assign
(
arg
.
context
,
_context
);
}
}
if
(
this
.
itemParam
&&
this
.
itemParam
.
param
)
{
if
(
this
.
localParam
&&
Object
.
keys
(
this
.
localParam
).
length
>
0
)
{
let
_param
=
this
.
$util
.
format
Data
(
let
_param
=
this
.
$util
.
computedNav
Data
(
this
.
itemValue
,
this
.
itemValue
,
arg
.
context
,
arg
.
param
,
arg
.
param
,
this
.
itemParam
.
p
aram
this
.
localP
aram
);
);
Object
.
assign
(
arg
.
param
,
_param
);
Object
.
assign
(
arg
.
param
,
_param
);
}
}
...
@@ -250,14 +262,16 @@ export default class AppTransfer extends Vue {
...
@@ -250,14 +262,16 @@ export default class AppTransfer extends Vue {
_valueSeparator
=
this
.
initValueSeparator
(
_valueSeparator
);
_valueSeparator
=
this
.
initValueSeparator
(
_valueSeparator
);
let
_data
:
any
=
this
.
itemValue
;
let
_data
:
any
=
this
.
itemValue
;
if
(
_data
)
{
if
(
_data
)
{
let
_dataRight
:
any
=
[];
let
newData
:
any
[]
=
_data
.
split
(
`
${
_valueSeparator
}
`
);
let
newData
:
any
[]
=
_data
.
split
(
`
${
_valueSeparator
}
`
);
this
.
dataLeft
.
forEach
((
elem
:
any
)
=>
{
this
.
dataLeft
.
forEach
((
elem
:
any
)
=>
{
newData
.
forEach
((
item
:
any
)
=>
{
newData
.
forEach
((
item
:
any
)
=>
{
if
(
item
===
elem
.
value
)
{
if
(
item
===
elem
.
value
)
{
this
.
dataRight
.
push
(
elem
.
key
);
_
dataRight
.
push
(
elem
.
key
);
}
}
});
});
});
});
this
.
dataRight
=
_dataRight
;
}
}
}
}
/**
/**
...
@@ -266,7 +280,6 @@ export default class AppTransfer extends Vue {
...
@@ -266,7 +280,6 @@ export default class AppTransfer extends Vue {
public
transferRefresh
(
e
:
any
)
{
public
transferRefresh
(
e
:
any
)
{
if
(
e
&&
this
.
codelistType
===
"DYNAMIC"
)
{
if
(
e
&&
this
.
codelistType
===
"DYNAMIC"
)
{
this
.
dataLeft
=
[];
this
.
dataLeft
=
[];
this
.
dataRight
=
[];
this
.
dataHandle
();
this
.
dataHandle
();
}
}
}
}
...
...
编辑
预览
Markdown
格式
0%
请重试
or
添加新附件
添加附件
取消
您添加了
0
人
到此讨论。请谨慎行事。
先完成此消息的编辑!
取消
想要评论请
注册
或
登录