2021-02-05 16:19:35 +08:00
|
|
|
import React from 'react';
|
|
|
|
|
import { WhiteBack , Banner } from '../../Component/layout';
|
|
|
|
|
import GroupItems from '../TeamGroupItems';
|
2020-06-24 10:10:47 +08:00
|
|
|
|
2021-02-01 15:20:38 +08:00
|
|
|
const limit = 8;
|
2021-02-01 16:43:25 +08:00
|
|
|
function TeamSettingGroup({organizeDetail,history}){
|
2020-06-24 10:10:47 +08:00
|
|
|
return(
|
|
|
|
|
<WhiteBack>
|
|
|
|
|
<Banner>组织团队管理</Banner>
|
2021-02-05 16:19:35 +08:00
|
|
|
<GroupItems limit={limit} organizeDetail={organizeDetail} count={4} history={history}/>
|
|
|
|
|
</WhiteBack>
|
2020-06-24 10:10:47 +08:00
|
|
|
)
|
2021-02-01 15:20:38 +08:00
|
|
|
}
|
|
|
|
|
export default TeamSettingGroup;
|