import React, { useEffect } from 'react'; import '../Style/ld_style.less'; import { Input, List } from 'antd'; const { Search } = Input; const data = [ { title: '集团党支部', num: 987, }, { title: '北京分公司党支部', num: 127, }, { title: '山东分公司党支部', num: 110, }, { title: '吉林分公司党支部', num: 121, }, { title: '辽宁分公司党支部', num: 130, }, { title: '陕西分公司党支部', num: 105, }, { title: '山西分公司党支部', num: 104, }, { title: '湖北分公司党支部', num: 113, }, { title: '湖南分公司党支部', num: 111, }, { title: '江苏分公司党支部', num: 987, }, { title: '河南分公司党支部', num: 121, }, { title: '河北分公司党支部', num: 100, }, { title: '天津分公司党支部', num: 86, }, { title: '上海分公司党支部', num: 98, }, { title: '安徽分公司党支部', num: 105, }, { title: '江西分公司党支部', num: 121, }, ]; const PartyBranch: React.FC<{}> = () => { return (
返回首页
党员名录(当前共270条)
党员数量3451
党支部数量51
(
{item.title}
党员数量
{item.num}
)} />
) } export default PartyBranch;