Skip to content
项目
群组
代码片段
帮助
当前项目
正在载入...
登录 / 注册
切换导航面板
W
WebPublic
项目
项目
详情
活动
周期分析
仓库
仓库
文件
提交
分支
标签
贡献者
图表
比较
统计图
议题
0
议题
0
列表
看板
标记
里程碑
合并请求
0
合并请求
0
CI / CD
CI / CD
流水线
作业
日程
统计图
Wiki
Wiki
代码片段
代码片段
成员
成员
折叠边栏
关闭边栏
活动
图像
聊天
创建新问题
作业
提交
问题看板
Open sidebar
前端开发小组
WebPublic
Commits
423e6466
提交
423e6466
authored
10月 12, 2022
作者:
钟是志
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
28974 辅导员考核相关需求,有疑问联系我
上级
e28fea6f
隐藏空白字符变更
内嵌
并排
正在显示
2 个修改的文件
包含
147 行增加
和
87 行删除
+147
-87
Index.js
FormInsertDiy/ExportComponent/SelectPerson/Index.js
+70
-45
lowCodeProps.js
FormInsertDiy/ExportComponent/SelectPerson/lowCodeProps.js
+77
-42
没有找到文件。
FormInsertDiy/ExportComponent/SelectPerson/Index.js
浏览文件 @
423e6466
...
...
@@ -28,33 +28,40 @@ export default function SelectPerson(props) {
const
[
jqpp
,
setJqpp
]
=
useState
(
false
);
// 是否精确匹配
function
changeShow
()
{
setShow
(
!
show
);
setCheckedList
([]);
setSgUserIds
([]);
// setSelectUsers([]);
setSearchKey
(
''
);
setSearchResult
([]);
setDetailList
([]);
}
function
initShowData
(
stateList
=
{})
{
setCheckedList
(
stateList
.
checkedList
||
[]);
setSgUserIds
(
stateList
.
sgUserIds
||
[]);
setSelectUsers
(
stateList
.
sgUsers
||
[]);
setSearchKey
(
stateList
.
searchKey
||
''
);
setSearchResult
(
stateList
.
searchResult
||
[]);
setDetailList
(
stateList
.
detailList
||
[]);
}
useEffect
(()
=>
{
window
.
smartFormSelectPersonComponent
=
{
changeShow
,
setSelectUsers
,
initShowData
,
lowCodeProps
:
lowCodeProps
(),
callback
:
(
selectUsers
)
=>
{
console
.
log
(
selectUsers
);
callback
:
({
value
,
componentState
,
})
=>
{
console
.
log
(
value
,
componentState
);
},
};
},
[]);
// 第二栏树形数据
const
getTreeList
=
()
=>
{
requestData
({},
apis
.
findTree
).
then
(
res
=>
{
if
(
res
)
{
res
=
formatTreeData
(
res
);
setAuthInstitutionInfo
(
res
);
}
});
requestData
({},
apis
.
findTree
)
.
then
(
res
=>
{
if
(
res
)
{
res
=
formatTreeData
(
res
);
setAuthInstitutionInfo
(
res
);
}
});
};
//根据关键字搜索
...
...
@@ -62,7 +69,7 @@ export default function SelectPerson(props) {
if
(
searchKey
===
''
)
{
setSearchResult
([]);
}
else
{
if
(
searchKey
.
length
<
2
)
{
if
(
searchKey
.
length
<
2
)
{
message
.
warning
(
'请至少输入2个字符'
);
return
false
;
}
...
...
@@ -72,11 +79,12 @@ export default function SelectPerson(props) {
isExact
:
jqpp
,
},
apis
.
search
,
).
then
(
res
=>
{
if
(
res
)
{
setSearchResult
(
res
);
}
});
)
.
then
(
res
=>
{
if
(
res
)
{
setSearchResult
(
res
);
}
});
}
};
...
...
@@ -88,7 +96,10 @@ export default function SelectPerson(props) {
//根据id进行搜索
const
searchById
=
(
selectedKeys
,
e
)
=>
{
const
{
businessKey
,
selectType
}
=
e
.
node
.
props
;
const
{
businessKey
,
selectType
}
=
e
.
node
.
props
;
let
bKey
=
businessKey
;
requestData
(
{
...
...
@@ -96,11 +107,12 @@ export default function SelectPerson(props) {
selectType
,
},
apis
.
findList
,
).
then
(
res
=>
{
if
(
res
)
{
setDetailList
(
res
);
}
});
)
.
then
(
res
=>
{
if
(
res
)
{
setDetailList
(
res
);
}
});
};
//选中的人
...
...
@@ -143,16 +155,27 @@ export default function SelectPerson(props) {
return
false
;
}
message
.
info
(
propsDiy
.
getResultProps
.
message
);
requestData
(
data
,
apis
.
getData
).
then
(
res
=>
{
if
(
res
)
{
message
.
success
(
'操作成功'
);
if
(
window
.
smartFormSelectPersonComponent
.
callback
){
window
.
smartFormSelectPersonComponent
.
callback
(
res
);
requestData
(
data
,
apis
.
getData
)
.
then
(
res
=>
{
if
(
res
)
{
message
.
success
(
'操作成功'
);
if
(
window
.
smartFormSelectPersonComponent
.
callback
)
{
window
.
smartFormSelectPersonComponent
.
callback
({
value
:
res
,
componentState
:
{
checkedList
,
sgUserIds
,
sgUsers
,
searchKey
,
searchResult
,
// detailList,
},
});
}
changeShow
();
// props.getData();
}
changeShow
();
// props.getData();
}
});
});
};
const
changeJqpp
=
e
=>
{
...
...
@@ -160,7 +183,6 @@ export default function SelectPerson(props) {
};
useEffect
(()
=>
{
if
(
show
)
{
getTreeList
();
...
...
@@ -209,12 +231,12 @@ export default function SelectPerson(props) {
}
arr
=
[...
map
.
values
()];
arr
.
sort
((
a
,
b
)
=>
{
// 排序解决 多层子级的问题。
if
(
a
.
businessKey
&&
b
.
businessKey
)
{
if
(
a
.
businessKey
&&
b
.
businessKey
)
{
return
a
.
businessKey
.
length
-
b
.
businessKey
.
length
;
}
return
0
;
});
const
distnctBusinessKey
=
arr
.
reduce
(
function
(
response
,
current
,
index
)
{
const
distnctBusinessKey
=
arr
.
reduce
(
function
(
response
,
current
,
index
)
{
// 删除子级 key 保证数据唯一性
let
add
=
true
;
for
(
let
item
of
response
)
{
...
...
@@ -286,7 +308,7 @@ export default function SelectPerson(props) {
:
()
=>
selectUser
(
x
)
}
>
<
span
style
=
{{
c
olor
:
sgUserIds
.
includes
(
x
.
businessKey
)
&&
'red'
}}
>
<
span
style
=
{{
backgroundC
olor
:
sgUserIds
.
includes
(
x
.
businessKey
)
&&
'red'
}}
>
{
x
.
businessName
}
<
/span
>
<
/div
>
...
...
@@ -314,7 +336,8 @@ export default function SelectPerson(props) {
/
>
)
:
(
<
div
className
=
{
styles
.
no_result
}
>
<
Spin
spinning
=
{
true
}
tip
=
{
propsDiy
.
secondTreeProps
.
loadingTreeDataMessage
}
size
=
"large"
/>
<
Spin
spinning
=
{
true
}
tip
=
{
propsDiy
.
secondTreeProps
.
loadingTreeDataMessage
}
size
=
"large"
/>
<
/div
>
)}
<
/div
>
...
...
@@ -327,7 +350,8 @@ export default function SelectPerson(props) {
<
div
className
=
{
styles
.
search_result
}
>
{
detailList
?.
filter
(
g
=>
{
return
g
.
isSelect
;
}).
map
(
x
=>
{
})
.
map
(
x
=>
{
return
(
<
div
key
=
{
x
.
businessKey
}
...
...
@@ -341,7 +365,7 @@ export default function SelectPerson(props) {
fontWeight
:
'normal'
,
}
:
{
c
olor
:
sgUserIds
.
includes
(
x
.
businessKey
)
&&
'red'
,
backgroundC
olor
:
sgUserIds
.
includes
(
x
.
businessKey
)
&&
'red'
,
}
}
>
...
...
@@ -352,7 +376,8 @@ export default function SelectPerson(props) {
})}
<
/div
>
)
:
(
<
div
className
=
{
styles
.
no_result
}
>
{
propsDiy
.
thirdDetailListProps
.
emptyMessage
}
<
/div
>
<
div
className
=
{
styles
.
no_result
}
>
{
propsDiy
.
thirdDetailListProps
.
emptyMessage
}
<
/div
>
)}
<
/div
>
<
/div
>
...
...
@@ -377,7 +402,7 @@ export default function SelectPerson(props) {
onClick
=
{
e
=>
deleteSg
(
x
,
index
,
e
)}
/
>
<
Tooltip
title
=
{
x
.
businessName
}
>
{
x
.
businessName
}
{
x
.
businessName
}
<
/Tooltip
>
<
/div
>
<
/div
>
...
...
FormInsertDiy/ExportComponent/SelectPerson/lowCodeProps.js
浏览文件 @
423e6466
export
default
function
lowCodeProps
(
info
)
{
return
{
searchType
:
'instructorSearch'
,
// teacherSearch || studentSearch || instructorSearch
ModalProps
:
{
// 弹窗的属性
title
:
'选择辅导员'
,
},
firstSearchProps
:
{
// 最左侧搜索栏的属性
inputProps
:
{
placeholder
:
'输入辅导员姓名/工号搜索'
,
},
searchResultTitle
:
'搜索结果'
,
},
secondTreeProps
:
{
// 树形
title
:
'部门'
,
loadingTreeDataMessage
:
'正在加载数据'
,
},
thirdDetailListProps
:
{
// 第三栏
title
:
'详细辅导员列表'
,
emptyMessage
:
'暂无详细辅导员列表数据'
,
},
fourRangeProps
:
{
// 第四栏
title
:
'所选择的辅导员范围'
,
emptyMessage
:
'暂无选中的辅导员'
,
},
getResultProps
:
{
emptySelectMessage
:
'请至少选择一个辅导员'
,
message
:
'正在查询中,请耐心等待'
,
},
};
return
{
searchType
:
'instructorSearch'
,
// teacherSearch || studentSearch || instructorSearch
ModalProps
:
{
// 弹窗的属性
title
:
'选择辅导员'
,
},
firstSearchProps
:
{
// 最左侧搜索栏的属性
inputProps
:
{
placeholder
:
'输入辅导员姓名/工号搜索'
,
},
searchResultTitle
:
'搜索结果'
,
},
secondTreeProps
:
{
// 树形
title
:
'部门'
,
loadingTreeDataMessage
:
'正在加载数据'
,
},
thirdDetailListProps
:
{
// 第三栏
title
:
'详细辅导员列表'
,
emptyMessage
:
'暂无详细辅导员列表数据'
,
},
fourRangeProps
:
{
// 第四栏
title
:
'所选择的辅导员范围'
,
emptyMessage
:
'暂无选中的辅导员'
,
},
getResultProps
:
{
emptySelectMessage
:
'请至少选择一个辅导员'
,
message
:
'正在查询中,请耐心等待'
,
},
};
}
/**
...
...
@@ -35,11 +39,12 @@ export default function lowCodeProps(info) {
return {
before: [
{
{
children: "选择辅导员", type: "primary", onClick: () => {
if (window.smartFormSelectPersonComponent) {
// window.smartFormSelectPersonComponent.lowCodeProps =
// 钟是志
// 2022年10月12日
// 解决按部门选择 辅导员, 选择老师, 选择学生的需求
// window.smartFormSelectPersonComponent.lowCodeProps =
// {
// searchType: 'instructorSearch', // teacherSearch || studentSearch || instructorSearch
// ModalProps: { // 弹窗的属性
...
...
@@ -68,13 +73,43 @@ export default function lowCodeProps(info) {
// message: '正在查询中,请耐心等待',
// },
// };
window.smartFormSelectPersonComponent.setSelectUsers([{ // 设置已经选中的用户
businessKey: "71-1300",
businessName: '钟是志',
isSelect: true,
}]);
window.smartFormSelectPersonComponent.callback = (selectUsers) => { // 回调函数
console.log(selectUsers);
if (window.smartFormSelectPersonComponent) {
// window.smartFormSelectPersonComponent.initShowData({
// 初始化显示的选中数据 从 callback 的componentState读取
// "checkedList": [],
// "sgUserIds": ['40-1723", "40-1470", "40-971'],
// "sgUsers": [{
// "businessKey": "40-1723",
// "businessMemo": "",
// "businessName": "丁心",
// "children": [],
// "ext": null,
// "isSelect": true,
// "level": 1
// }, {
// "businessKey": "40-1470",
// "businessMemo": "",
// "businessName": "程丽娜",
// "children": [],
// "ext": null,
// "isSelect": true,
// "level": 1
// }, {
// "businessKey": "40-971",
// "businessMemo": "",
// "businessName": "石头",
// "children": [],
// "ext": null,
// "isSelect": true,
// "level": 1
// }],
// "searchKey": "",
// "searchResult": []
// });
window.smartFormSelectPersonComponent.callback = ({ value, componentState }) => { // 回调函数
console.log(value, JSON.stringify(componentState));
// componentState 用于组件数据回显,
};
window.smartFormSelectPersonComponent.changeShow(); // 打开弹窗
}
...
...
@@ -83,5 +118,5 @@ export default function lowCodeProps(info) {
]
}
** 使用方法
* */
** 使用方法
* */
编写
预览
Markdown
格式
0%
重试
或
添加新文件
添加附件
取消
您添加了
0
人
到此讨论。请谨慎行事。
请先完成此评论的编辑!
取消
请
注册
或者
登录
后发表评论