Skip to content
项目
群组
代码片段
帮助
正在加载...
帮助
提交反馈
为 GitLab 提交贡献
登录
切换导航
iBiz-Vue-R7-Res
项目
项目
详情
动态
版本
周期分析
仓库
仓库
文件
提交
分支
标签
贡献者
分支图
比较
统计图
议题
0
议题
0
列表
看板
标记
里程碑
合并请求
0
合并请求
0
CI / CD
CI / CD
流水线
作业
计划
统计图
Wiki
Wiki
代码片段
代码片段
成员
成员
收起侧边栏
关闭侧边栏
动态
分支图
统计图
创建新议题
作业
提交
议题看板
打开侧边栏
iBiz-R7前端标准模板
iBiz-Vue-R7-Res
提交
e21c7e17
提交
e21c7e17
编写于
5月 22, 2020
作者:
tony001
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
Update app-org-select.vue
上级
9b42502d
变更
1
显示空白字符变更
内嵌
并排
正在显示
1 个修改的文件
包含
40 行增加
和
25 行删除
+40
-25
app-org-select.vue
src/components/app-org-select/app-org-select.vue
+40
-25
未找到文件。
src/components/app-org-select/app-org-select.vue
浏览文件 @
e21c7e17
...
...
@@ -51,21 +51,16 @@ export default class AppOrgSelect extends Vue {
*/
@
Watch
(
'data'
,{
immediate
:
true
,
deep
:
true
})
onDataChange
(
newVal
:
any
,
oldVal
:
any
)
{
// 计算出选中值
// 单选
if
(
!
this
.
multiple
){
if
(
this
.
fillMap
&&
Object
.
keys
(
this
.
fillMap
).
length
>
0
){
let
templateValue
=
{};
Object
.
keys
(
this
.
fillMap
).
forEach
((
item
:
any
)
=>
{
if
(
this
.
data
&&
this
.
data
[
this
.
fillMap
[
item
]]){
Object
.
assign
(
templateValue
,{[
item
]:
this
.
data
[
this
.
fillMap
[
item
]]})
;
if
(
newVal
){
this
.
computedSelectedData
();
if
(
this
.
filter
){
let
tempFilterValue
:
any
=
this
.
initBasicData
();
// filter值变化才去请求数据
if
(
tempFilterValue
&&
(
this
.
copyFilterValue
!==
tempFilterValue
))
{
this
.
loadTreeData
(
this
.
orgDataUrl
.
replace
(
'${orgid}'
,
tempFilterValue
));
this
.
copyFilterValue
=
tempFilterValue
;
}
})
this
.
selectTreeValue
=
JSON
.
stringify
([
templateValue
]);
}
}
else
{
// 多选
}
}
...
...
@@ -91,11 +86,11 @@ export default class AppOrgSelect extends Vue {
public
NodesData
:
any
=
[];
/**
* 过滤值
*
备份
过滤值
*
* @memberof AppOrgSelect
*/
public
f
ilterValue
:
any
;
public
copyF
ilterValue
:
any
;
/**
* vue生命周期
...
...
@@ -103,8 +98,9 @@ export default class AppOrgSelect extends Vue {
* @memberof AppOrgSelect
*/
public
created
(){
this
.
initBasicData
();
this
.
loadTreeData
();
if
(
!
this
.
filter
){
this
.
loadTreeData
(
this
.
orgDataUrl
.
replace
(
'${orgid}'
,
'alls'
));
}
}
/**
...
...
@@ -116,25 +112,44 @@ export default class AppOrgSelect extends Vue {
// 计算出过滤值
if
(
this
.
filter
){
if
(
this
.
data
&&
this
.
data
[
this
.
filter
]){
this
.
filterValue
=
this
.
data
[
this
.
filter
];
return
this
.
data
[
this
.
filter
];
}
else
if
(
this
.
context
&&
this
.
context
[
this
.
filter
]){
this
.
filterValue
=
this
.
context
[
this
.
filter
];
return
this
.
context
[
this
.
filter
];
}
else
{
return
null
;
}
}
}
/**
*
加载树数据
*
计算选中值
*
* @memberof AppOrgSelect
*/
public
loadTreeData
(){
let
requestUrl
:
string
=
""
;
if
(
!
this
.
filter
){
requestUrl
=
this
.
orgDataUrl
.
replace
(
'${orgid}'
,
'alls'
);
public
computedSelectedData
(){
// 单选
if
(
!
this
.
multiple
){
if
(
this
.
fillMap
&&
Object
.
keys
(
this
.
fillMap
).
length
>
0
){
let
templateValue
=
{};
Object
.
keys
(
this
.
fillMap
).
forEach
((
item
:
any
)
=>
{
if
(
this
.
data
&&
this
.
data
[
this
.
fillMap
[
item
]]){
Object
.
assign
(
templateValue
,{[
item
]:
this
.
data
[
this
.
fillMap
[
item
]]});
}
})
this
.
selectTreeValue
=
JSON
.
stringify
([
templateValue
]);
}
}
else
{
requestUrl
=
this
.
orgDataUrl
.
replace
(
'${orgid}'
,
this
.
filterValue
);
// 多选
}
}
/**
* 加载树数据
*
* @memberof AppOrgSelect
*/
public
loadTreeData
(
requestUrl
:
string
){
Http
.
getInstance
().
get
(
requestUrl
).
then
((
res
:
any
)
=>
{
if
(
!
res
.
status
&&
res
.
status
!==
200
){
console
.
error
(
"加载数据失败"
);
...
...
编辑
预览
Markdown
格式
0%
请重试
or
添加新附件
添加附件
取消
您添加了
0
人
到此讨论。请谨慎行事。
先完成此消息的编辑!
取消
想要评论请
注册
或
登录