Skip to content
项目
群组
代码片段
帮助
正在加载...
帮助
提交反馈
为 GitLab 提交贡献
登录
切换导航
iBiz-Vue-R7-Res
项目
项目
详情
动态
版本
周期分析
仓库
仓库
文件
提交
分支
标签
贡献者
分支图
比较
统计图
议题
0
议题
0
列表
看板
标记
里程碑
合并请求
0
合并请求
0
CI / CD
CI / CD
流水线
作业
计划
统计图
Wiki
Wiki
代码片段
代码片段
成员
成员
收起侧边栏
关闭侧边栏
动态
分支图
统计图
创建新议题
作业
提交
议题看板
打开侧边栏
iBiz-R7前端标准模板
iBiz-Vue-R7-Res
提交
ad6f5e95
提交
ad6f5e95
编写于
5月 22, 2020
作者:
tony001
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
zpc --- 更新
上级
7dfd5d2d
变更
4
显示空白字符变更
内嵌
并排
正在显示
4 个修改的文件
包含
70 行增加
和
5 行删除
+70
-5
app-org-select.vue
src/components/app-org-select/app-org-select.vue
+46
-4
getters.ts
src/store/getters.ts
+10
-0
mutations.ts
src/store/mutations.ts
+13
-1
state.ts
src/store/state.ts
+1
-0
未找到文件。
src/components/app-org-select/app-org-select.vue
浏览文件 @
ad6f5e95
<
template
>
<
template
>
<div
class=
"app-org-select"
>
<div
class=
"app-org-select"
>
<ibiz-select-tree
:NodesData=
"NodesData"
v-model=
"selectTreeValue"
:multiple=
"
fals
e"
@
select=
"treeSelectChange"
></ibiz-select-tree>
<ibiz-select-tree
:NodesData=
"NodesData"
v-model=
"selectTreeValue"
:multiple=
"
multipl
e"
@
select=
"treeSelectChange"
></ibiz-select-tree>
</div>
</div>
</
template
>
</
template
>
<
script
lang =
'ts'
>
<
script
lang =
'ts'
>
...
@@ -140,7 +140,23 @@ export default class AppOrgSelect extends Vue {
...
@@ -140,7 +140,23 @@ export default class AppOrgSelect extends Vue {
}
}
}
else
{
}
else
{
// 多选
// 多选
if
(
this
.
fillMap
&&
Object
.
keys
(
this
.
fillMap
).
length
>
0
){
let
tempArray
:
Array
<
any
>
=
[];
Object
.
keys
(
this
.
fillMap
).
forEach
((
item
:
any
)
=>
{
if
(
this
.
data
&&
this
.
data
[
this
.
fillMap
[
item
]]){
let
tempDataArray
:
Array
<
any
>
=
(
this
.
data
[
this
.
fillMap
[
item
]]).
split
(
","
);
tempDataArray
.
forEach
((
tempData
:
any
,
index
:
number
)
=>
{
if
(
tempArray
.
length
<
tempDataArray
.
length
){
let
singleData
:
any
=
{[
item
]:
tempData
};
tempArray
.
push
(
singleData
);
}
else
{
Object
.
assign
(
tempArray
[
index
],{[
item
]:
tempData
});
}
})
}
})
this
.
selectTreeValue
=
JSON
.
stringify
(
tempArray
);
}
}
}
}
}
...
@@ -150,13 +166,22 @@ export default class AppOrgSelect extends Vue {
...
@@ -150,13 +166,22 @@ export default class AppOrgSelect extends Vue {
* @memberof AppOrgSelect
* @memberof AppOrgSelect
*/
*/
public
loadTreeData
(
requestUrl
:
string
){
public
loadTreeData
(
requestUrl
:
string
){
if
(
this
.
filter
){
const
result
:
any
=
this
.
$store
.
getters
.
getCopyData
(
this
.
filter
);
if
(
result
){
this
.
NodesData
=
result
;
return
;
}
}
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
(
"加载数据失败"
);
return
;
return
;
}
}
this
.
NodesData
=
res
.
data
;
this
.
NodesData
=
res
.
data
;
console
.
log
(
this
.
NodesData
);
if
(
this
.
filter
){
this
.
$store
.
commit
(
'addOrgData'
,
{
srfkey
:
this
.
filter
,
orgData
:
res
.
data
});
}
})
})
}
}
...
@@ -168,7 +193,24 @@ export default class AppOrgSelect extends Vue {
...
@@ -168,7 +193,24 @@ export default class AppOrgSelect extends Vue {
public
treeSelectChange
(
$event
:
any
){
public
treeSelectChange
(
$event
:
any
){
// 多选
// 多选
if
(
this
.
multiple
){
if
(
this
.
multiple
){
if
(
$event
){
const
tempValue
:
any
=
JSON
.
parse
(
$event
);
if
(
this
.
fillMap
&&
Object
.
keys
(
this
.
fillMap
).
length
>
0
){
Object
.
keys
(
this
.
fillMap
).
forEach
((
item
:
any
)
=>
{
let
tempResult
:
any
=
""
;
tempValue
.
forEach
((
value
:
any
,
index
:
number
)
=>
{
tempResult
+=
index
>
0
?
`,
${
value
[
item
]}
`
:
`
${
value
[
item
]}
`
;
})
this
.
emitValue
(
this
.
fillMap
[
item
],
tempResult
);
})
}
}
else
{
if
(
this
.
fillMap
&&
Object
.
keys
(
this
.
fillMap
).
length
>
0
){
Object
.
keys
(
this
.
fillMap
).
forEach
((
item
:
any
)
=>
{
this
.
emitValue
(
this
.
fillMap
[
item
],
null
);
})
}
}
}
else
{
}
else
{
// 单选
// 单选
if
(
$event
){
if
(
$event
){
...
...
src/store/getters.ts
浏览文件 @
ad6f5e95
...
@@ -89,3 +89,13 @@ export const getCopyData = (state: any) => (srfkey: string) => {
...
@@ -89,3 +89,13 @@ export const getCopyData = (state: any) => (srfkey: string) => {
}
}
return
copyData
;
return
copyData
;
}
}
/**
* 获取单位数据
*
* @param state
*/
export
const
getOrgData
=
(
state
:
any
)
=>
(
srfkey
:
string
)
=>
{
let
orgData
=
state
.
orgDataMap
[
srfkey
];
return
orgData
;
}
\ No newline at end of file
src/store/mutations.ts
浏览文件 @
ad6f5e95
...
@@ -266,3 +266,15 @@ export const addCopyData = (state: any, args: {srfkey: string,copyData: any}) =>
...
@@ -266,3 +266,15 @@ export const addCopyData = (state: any, args: {srfkey: string,copyData: any}) =>
state
.
copyDataMap
[
args
.
srfkey
]
=
JSON
.
parse
(
JSON
.
stringify
(
args
.
copyData
));
state
.
copyDataMap
[
args
.
srfkey
]
=
JSON
.
parse
(
JSON
.
stringify
(
args
.
copyData
));
}
}
}
}
/**
* 添加单位数据
*
* @param state
* @param args
*/
export
const
addOrgData
=
(
state
:
any
,
args
:
{
srfkey
:
string
,
orgData
:
any
})
=>
{
if
(
args
&&
args
.
srfkey
&&
args
.
orgData
){
state
.
orgDataMap
[
args
.
srfkey
]
=
JSON
.
parse
(
JSON
.
stringify
(
args
.
orgData
));
}
}
\ No newline at end of file
src/store/state.ts
浏览文件 @
ad6f5e95
...
@@ -14,4 +14,5 @@ export const rootstate: any = {
...
@@ -14,4 +14,5 @@ export const rootstate: any = {
zIndex
:
300
,
zIndex
:
300
,
viewSplit
:
{},
viewSplit
:
{},
copyDataMap
:{},
copyDataMap
:{},
orgDataMap
:{},
}
}
\ No newline at end of file
编辑
预览
Markdown
格式
0%
请重试
or
添加新附件
添加附件
取消
您添加了
0
人
到此讨论。请谨慎行事。
先完成此消息的编辑!
取消
想要评论请
注册
或
登录