Skip to content
项目
群组
代码片段
帮助
正在加载...
帮助
提交反馈
为 GitLab 提交贡献
登录
切换导航
iBiz-Vue-R7-Res
项目
项目
详情
动态
版本
周期分析
仓库
仓库
文件
提交
分支
标签
贡献者
分支图
比较
统计图
议题
0
议题
0
列表
看板
标记
里程碑
合并请求
0
合并请求
0
CI / CD
CI / CD
流水线
作业
计划
统计图
Wiki
Wiki
代码片段
代码片段
成员
成员
收起侧边栏
关闭侧边栏
动态
分支图
统计图
创建新议题
作业
提交
议题看板
打开侧边栏
iBiz-R7前端标准模板
iBiz-Vue-R7-Res
提交
2f84ed85
提交
2f84ed85
编写于
5月 26, 2020
作者:
tony001
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
zpc --- 修改组件
上级
3783b3b6
变更
2
显示空白字符变更
内嵌
并排
正在显示
2 个修改的文件
包含
11 行增加
和
11 行删除
+11
-11
app-department-select.vue
...omponents/app-department-select/app-department-select.vue
+2
-2
app-org-select.vue
src/components/app-org-select/app-org-select.vue
+9
-9
未找到文件。
src/components/app-department-select/app-department-select.vue
浏览文件 @
2f84ed85
...
@@ -17,7 +17,7 @@ export default class AppDepartmentSelect extends Vue {
...
@@ -17,7 +17,7 @@ export default class AppDepartmentSelect extends Vue {
* @type {*}
* @type {*}
* @memberof AppDepartmentSelect
* @memberof AppDepartmentSelect
*/
*/
@
Prop
(
{
default
:
'/ibzorganizations/{orgid}/ibzdepartments/picker'
}
)
public
url
?:
any
;
@
Prop
()
public
url
?:
any
;
/**
/**
* 过滤项
* 过滤项
...
@@ -108,7 +108,7 @@ export default class AppDepartmentSelect extends Vue {
...
@@ -108,7 +108,7 @@ export default class AppDepartmentSelect extends Vue {
public
searchNodesData
(){
public
searchNodesData
(){
// 处理过滤参数,生成url
// 处理过滤参数,生成url
let
param
=
this
.
handleFilter
();
let
param
=
this
.
handleFilter
();
let
_url
=
this
.
url
.
replace
(
/{orgid}/
,
param
)
let
_url
=
this
.
url
.
replace
(
'${orgid}'
,
param
)
if
(
this
.
oldurl
===
_url
){
if
(
this
.
oldurl
===
_url
){
return
;
return
;
}
}
...
...
src/components/app-org-select/app-org-select.vue
浏览文件 @
2f84ed85
...
@@ -44,6 +44,13 @@ export default class AppOrgSelect extends Vue {
...
@@ -44,6 +44,13 @@ export default class AppOrgSelect extends Vue {
*/
*/
@
Prop
({
default
:
false
})
public
multiple
?:
boolean
;
@
Prop
({
default
:
false
})
public
multiple
?:
boolean
;
/**
* 查询单位路径
*
* @memberof AppOrgSelect
*/
@
Prop
()
public
url
!
:
string
;
/**
/**
* 监听表单数据变化
* 监听表单数据变化
*
*
...
@@ -57,20 +64,13 @@ export default class AppOrgSelect extends Vue {
...
@@ -57,20 +64,13 @@ export default class AppOrgSelect extends Vue {
let
tempFilterValue
:
any
=
this
.
initBasicData
();
let
tempFilterValue
:
any
=
this
.
initBasicData
();
// filter值变化才去请求数据
// filter值变化才去请求数据
if
(
tempFilterValue
&&
(
this
.
copyFilterValue
!==
tempFilterValue
)){
if
(
tempFilterValue
&&
(
this
.
copyFilterValue
!==
tempFilterValue
)){
this
.
loadTreeData
(
this
.
orgDataU
rl
.
replace
(
'${orgid}'
,
tempFilterValue
));
this
.
loadTreeData
(
this
.
u
rl
.
replace
(
'${orgid}'
,
tempFilterValue
));
this
.
copyFilterValue
=
tempFilterValue
;
this
.
copyFilterValue
=
tempFilterValue
;
}
}
}
}
}
}
}
}
/**
* 查询单位路径
*
* @memberof AppOrgSelect
*/
public
orgDataUrl
:
string
=
"/ibzorganizations/${orgid}/suborg/picker"
;
/**
/**
* 选择值
* 选择值
*
*
...
@@ -99,7 +99,7 @@ export default class AppOrgSelect extends Vue {
...
@@ -99,7 +99,7 @@ export default class AppOrgSelect extends Vue {
*/
*/
public
created
(){
public
created
(){
if
(
!
this
.
filter
){
if
(
!
this
.
filter
){
this
.
loadTreeData
(
this
.
orgDataUrl
.
replace
(
'${orgid}'
,
'alls'
)
);
this
.
loadTreeData
(
this
.
url
);
}
}
}
}
...
...
编辑
预览
Markdown
格式
0%
请重试
or
添加新附件
添加附件
取消
您添加了
0
人
到此讨论。请谨慎行事。
先完成此消息的编辑!
取消
想要评论请
注册
或
登录