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