projecCount.jsx 31 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651
  1. import React,{ Component } from 'react';
  2. import {AutoComplete, Button, DatePicker, Input, message, Modal, Select, Spin, Table, Tabs} from "antd";
  3. import {
  4. ShowModal,
  5. getNewDiccityArr
  6. } from "@/tools";
  7. import { citySelect } from '../../../NewDicProvinceList';
  8. import {ChooseList} from "../../order/orderNew/chooseList";
  9. import $ from "jquery/src/ajax";
  10. import moment from "moment";
  11. import {
  12. highTechColumns,
  13. invention,
  14. utilityModel,
  15. softWriting,
  16. otherTrademarks,
  17. currency,
  18. } from './projecCountConfig';
  19. import HighTech from './highTech';
  20. import './index.less';
  21. const {TabPane} = Tabs;
  22. const { RangePicker } = DatePicker;
  23. const { Option } = Select;
  24. class ProjecCount extends Component{
  25. constructor(props) {
  26. super(props);
  27. this.state={
  28. loading:false,
  29. changeList:[],
  30. columns: currency((v,screen)=>{this.openProjectSummary(v,screen)}),
  31. pagination: {
  32. defaultCurrent: 1,
  33. defaultPageSize: 10,
  34. showQuickJumper: true,
  35. pageSize: 10,
  36. onChange: function(page) {
  37. this.loadData(page);
  38. }.bind(this),
  39. showTotal: function(total) {
  40. return "共" + total + "条数据";
  41. }
  42. },
  43. dataSource: [],
  44. releaseDate:[],
  45. searchOrderNo: '',
  46. searchContractNo: '',
  47. searchEnterpriseName: '',
  48. declarationBatch: '',
  49. projectType: '',
  50. projectStatus: '',
  51. province: '',
  52. depId: '',
  53. departmentArr:[],
  54. contactsOption: [],
  55. contactsOptionData: [],
  56. customerArr: [],
  57. commodityName: '',
  58. kid: '',
  59. status: 0,
  60. }
  61. this.loadData = this.loadData.bind(this);
  62. this.resetAll = this.resetAll.bind(this);
  63. this.changeList = this.changeList.bind(this);
  64. this.departmentList = this.departmentList.bind(this);
  65. this.exportPending = this.exportPending.bind(this);
  66. this.selectSuperId = this.selectSuperId.bind(this);
  67. this.supervisorCui = this.supervisorCui.bind(this);
  68. this.httpChangeCui = this.httpChangeCui.bind(this);
  69. this.selectAuto = this.selectAuto.bind(this);
  70. this.openProjectSummary = this.openProjectSummary.bind(this);
  71. }
  72. changeList(arr) {
  73. const newArr = [];
  74. this.state.columns.forEach(item => {
  75. arr.forEach(val => {
  76. if (val === item.title) {
  77. newArr.push(item);
  78. }
  79. });
  80. });
  81. this.setState({
  82. changeList: newArr
  83. });
  84. }
  85. loadData(pageNo) {
  86. this.setState({
  87. page: pageNo,
  88. loading: true
  89. });
  90. $.ajax({
  91. method: "get",
  92. dataType: "json",
  93. crossDomain: false,
  94. url: globalConfig.context + "/api/admin/statistis/selectProvincialStatistics",
  95. data: {
  96. pageNo: pageNo || 1,
  97. pageSize: this.state.pagination.pageSize,
  98. startDate: this.state.releaseDate.length > 0 ? this.state.releaseDate[0]: undefined, //开始时间
  99. endDate: this.state.releaseDate.length > 0 ? this.state.releaseDate[1]: undefined, //结束时间
  100. province: this.state.province || undefined,
  101. projectStatus: this.state.projectStatus || undefined,//项目类别
  102. projectType: typeof this.state.projectType === 'number' ? this.state.projectType : undefined,//项目分类
  103. status: this.state.status,
  104. thchDepId: this.state.depId || undefined,
  105. projectId: this.state.kid || undefined,
  106. },
  107. success: function(data) {
  108. ShowModal(this);
  109. let theArr = [];
  110. if (!data.data || !data.data.list) {
  111. if (data.error && data.error.length) {
  112. message.warning(data.error[0].message);
  113. }
  114. } else {
  115. for (let i = 0; i < data.data.list.length; i++) {
  116. let thisdata = data.data.list[i];
  117. thisdata.key=(data.data.pageNo - 1) * data.data.pageSize + i + 1;
  118. theArr.push(thisdata);
  119. }
  120. }
  121. this.state.pagination.current = data.data.pageNo;
  122. this.state.pagination.total = data.data.totalCount;
  123. if (data.data && data.data.list && !data.data.list.length) {
  124. this.state.pagination.current = 0;
  125. this.state.pagination.total = 0;
  126. }
  127. this.setState({
  128. dataSource: theArr,
  129. pagination: this.state.pagination
  130. });
  131. }.bind(this)
  132. }).always(
  133. function() {
  134. this.setState({
  135. loading: false
  136. });
  137. }.bind(this)
  138. );
  139. }
  140. //部门
  141. departmentList() {
  142. $.ajax({
  143. method: "get",
  144. dataType: "json",
  145. crossDomain: false,
  146. url: globalConfig.context + "/api/admin/organization/selectSuperId",
  147. data: {},
  148. success: function (data) {
  149. let thedata = data.data;
  150. let theArr = [];
  151. if (!thedata) {
  152. if (data.error && data.error.length) {
  153. message.warning(data.error[0].message);
  154. }
  155. } else {
  156. thedata.map(function (item, index) {
  157. theArr.push({
  158. key: index,
  159. name: item.name,
  160. id: item.id,
  161. });
  162. });
  163. }
  164. this.setState({
  165. departmentArr: theArr,
  166. });
  167. }.bind(this),
  168. })
  169. }
  170. resetAll() {
  171. this.setState({
  172. releaseDate: [],
  173. searchOrderNo: '',
  174. searchContractNo: '',
  175. searchEnterpriseName: '',
  176. declarationBatch: '',
  177. province: '',
  178. depId: '',
  179. projectType: '',
  180. projectStatus: '',
  181. columns: currency((v,screen)=>{this.openProjectSummary(v,screen)}),
  182. commodityName: '',
  183. kid:'',
  184. status: 0,
  185. },()=>{
  186. this.loadData();
  187. })
  188. }
  189. exportPending() {
  190. let url = `/api/admin/statistis/exporProvincialList?status=${this.state.status}`;
  191. let dep = this.state.departmentArr.filter((e)=> e.id === this.state.depId);//责任部门名称
  192. let option = this.state.contactsOptionData.filter((e)=> e.id === this.state.projectStatus); //项目类别名称
  193. if(dep.length > 0){url = url+`&thchDepName=${dep[0].name}`;}
  194. if(option.length > 0){url = url+`&projectStatusName=${option[0].cname}`;}
  195. if(typeof this.state.projectType === 'number'){url = url+`&projectTypeName=${
  196. this.state.projectType === 0? '通用' :
  197. this.state.projectType === 1? '专利' :
  198. this.state.projectType === 2? '软著' :
  199. this.state.projectType === 3? '审计' :
  200. this.state.projectType === 4? '双软' :
  201. this.state.projectType === 5? '高新' :
  202. this.state.projectType === 6? '商标' :''
  203. }`;}
  204. if(this.state.commodityName){url = url+`&projectName=${this.state.commodityName}`;}
  205. if(this.state.province){url = url+`&provinceName=${getNewDiccityArr(this.state.province)}`;}
  206. let data ={
  207. startDate: this.state.releaseDate.length > 0 ? this.state.releaseDate[0]: undefined, //开始时间
  208. endDate: this.state.releaseDate.length > 0 ? this.state.releaseDate[1]: undefined, //结束时间
  209. thchDepId: this.state.depId || undefined,//责任部门ID
  210. projectStatus: this.state.projectStatus || undefined,//项目类别
  211. projectType: typeof this.state.projectType === 'number' ? this.state.projectType : undefined,//项目分类
  212. province: this.state.province || undefined,
  213. projectId: this.state.kid || undefined,
  214. }
  215. for(let key in data){
  216. if(data[key]){
  217. url = url+`&${key}=${data[key]}`;
  218. }
  219. }
  220. window.open(globalConfig.context +url);
  221. }
  222. //项目类别
  223. selectSuperId() {
  224. $.ajax({
  225. method: "get",
  226. dataType: "json",
  227. crossDomain: false,
  228. url: globalConfig.context + "/api/admin/ProjectSize/getAllCname",
  229. data: {
  230. flag: 0
  231. },
  232. success: function(data) {
  233. let theArr = [];
  234. let thedata = data.data;
  235. if (!thedata) {
  236. if (data.error && data.error.length) {
  237. message.warning(data.error[0].message);
  238. }
  239. }
  240. for (let i = 0; i < data.data.length; i++) {
  241. let theData = data.data[i];
  242. theArr.push(
  243. <Select.Option value={theData.id} key={theData.cname}>
  244. {theData.cname}
  245. </Select.Option>
  246. );
  247. }
  248. this.setState({
  249. contactsOption: theArr,
  250. contactsOptionData: data.data,
  251. });
  252. }.bind(this)
  253. }).always(
  254. );
  255. }
  256. supervisorCui(e) {
  257. //客户名称与服务名称自动补全
  258. let api = "/api/admin/order/getBusinessProjectByName";
  259. $.ajax({
  260. method: "get",
  261. dataType: "json",
  262. crossDomain: false,
  263. url: globalConfig.context + api,
  264. data: {
  265. businessName: e,
  266. },
  267. success: function (data) {
  268. let thedata = data.data;
  269. if (!thedata) {
  270. if (data.error && data.error.length) {
  271. message.warning(data.error[0].message);
  272. }
  273. thedata = {};
  274. }
  275. this.setState({
  276. customerArr: thedata,
  277. });
  278. }.bind(this),
  279. }).always(
  280. function () {
  281. this.setState({
  282. loading: false,
  283. });
  284. }.bind(this)
  285. );
  286. }
  287. httpChangeCui(e) {
  288. if (e.length >= 1) {
  289. this.supervisorCui(e, false);
  290. }
  291. this.setState({
  292. commodityName: e,
  293. });
  294. }
  295. //上级主管输入框失去焦点是判断客户是否存在
  296. selectAuto(value){
  297. let kid=[];
  298. let fwList=this.state.customerArr;
  299. fwList.map(function(item){
  300. if(value===item.bname){
  301. kid=item.id
  302. }
  303. })
  304. this.setState({
  305. kid:kid,
  306. commodityName:value,
  307. })
  308. }
  309. componentWillMount() {
  310. this.loadData();
  311. this.departmentList();
  312. this.selectSuperId();
  313. }
  314. openProjectSummary(record,screen){
  315. this.setState({
  316. projectSummary: true,
  317. taberProvince: record.province,
  318. taberProjectStatus: record.bpId,//项目类别
  319. taberdepId: record.thchDepId,
  320. screen: screen,
  321. })
  322. }
  323. render() {
  324. const dataSources=this.state.customerArr || [];
  325. const options = dataSources.map((group,index) =>
  326. <Select.Option key={index} value={group.bname}>{group.bname}</Select.Option>
  327. )
  328. return (
  329. <div className="user-content">
  330. <div className="content-title">
  331. <span>
  332. 项目统计
  333. (
  334. {
  335. this.state.status === 2 ? '专利' :
  336. this.state.status === 4 ? '软著' :
  337. this.state.status === 1 ? '高新' :
  338. this.state.status === 5 ? '商标' : '通用'
  339. }
  340. )
  341. </span>
  342. </div>
  343. <Tabs defaultActiveKey="1" className="test">
  344. <TabPane tab="搜索" key="1">
  345. <div className="user-search" style={{
  346. marginTop:'10px',
  347. marginLeft:'10px',
  348. marginRight:'10px'
  349. }}>
  350. <span style={{display: "inline-block",marginRight:'10px',marginBottom:'10px'}}>
  351. <span>项目名称:</span>
  352. <AutoComplete
  353. className="certain-category-search"
  354. dropdownClassName="certain-category-search-dropdown"
  355. dropdownMatchSelectWidth={false}
  356. dropdownStyle={{ width: 200 }}
  357. style={{ width: 100,marginLeft:'10px' }}
  358. dataSource={options}
  359. placeholder="输入服务名称"
  360. value={this.state.commodityName}
  361. onChange={this.httpChangeCui}
  362. filterOption={true}
  363. onSelect={this.selectAuto}
  364. >
  365. <Input/>
  366. </AutoComplete>
  367. </span>
  368. <span style={{display:"inline-block"}}>
  369. <span style={{marginRight:'10px',marginBottom:'10px'}}>项目类别 :</span>
  370. <Select
  371. value={this.state.projectStatus || undefined}
  372. placeholder="请选择项目类别"
  373. notFoundContent="未获取到上级品类列表"
  374. style={{ width: 100,marginRight:'10px',marginBottom:'10px' }}
  375. onChange={(e) => {
  376. let infor = this.state.contactsOptionData.filter((v)=>v.id === e);
  377. this.setState({
  378. projectStatus: e,
  379. },()=>{
  380. if(infor.length && infor[0].cname === '高新' && typeof this.state.projectType !== 'number'){
  381. this.setState({
  382. columns: highTechColumns((v,screen)=>{this.openProjectSummary(v,screen)}),
  383. changeList: [],
  384. status: 1,
  385. },()=>{
  386. this.loadData();
  387. })
  388. }else if (typeof this.state.projectType !== 'number'){
  389. this.setState({
  390. columns: currency((v,screen)=>{this.openProjectSummary(v,screen)}),
  391. changeList: [],
  392. status: 0,
  393. },()=>{
  394. this.loadData();
  395. })
  396. }else{
  397. this.loadData();
  398. }
  399. })
  400. }}
  401. >
  402. {this.state.contactsOption}
  403. </Select>
  404. </span>
  405. <span style={{display:"inline-block"}}>
  406. <span style={{marginRight:'10px',marginBottom:'10px'}}>项目分类 :</span>
  407. <Select
  408. value={typeof this.state.projectType === 'number' ? this.state.projectType : undefined}
  409. placeholder="请选择项目分类"
  410. style={{ width: 100,marginRight:'10px',marginBottom:'10px' }}
  411. onChange={(e) => {
  412. this.setState({
  413. columns:
  414. e === 0 ? currency((v,screen)=>{this.openProjectSummary(v,screen)}) :
  415. e === 1 ? invention((v,screen)=>{this.openProjectSummary(v,screen)}) :
  416. e === 2 ? softWriting((v,screen)=>{this.openProjectSummary(v,screen)}) :
  417. e === 3 ? currency((v,screen)=>{this.openProjectSummary(v,screen)}) :
  418. e === 4 ? currency((v,screen)=>{this.openProjectSummary(v,screen)}):
  419. e === 5 ? highTechColumns((v,screen)=>{this.openProjectSummary(v,screen)}) :
  420. e === 6 ? otherTrademarks((v,screen)=>{this.openProjectSummary(v,screen)}) :[],
  421. changeList: [],
  422. projectType: e,
  423. status: e === 1 ? 2 : e === 2 ? 4 : e === 5 ? 1 : e === 6 ? 5 : 0, // 0通用 1高新 2发明专利 3实用新型 4软著 5商标
  424. },()=>{
  425. this.loadData();
  426. })
  427. }}
  428. >
  429. <Option value={0}>通用</Option>
  430. <Option value={1}>专利</Option>
  431. <Option value={2}>软著</Option>
  432. <Option value={3}>审计</Option>
  433. <Option value={4}>双软</Option>
  434. <Option value={5}>高新</Option>
  435. <Option value={6}>商标</Option>
  436. </Select>
  437. </span>
  438. <span style={{display: "inline-block",marginRight:'10px',marginBottom:'10px'}}>
  439. <span>派单省份:</span>
  440. <Select
  441. placeholder="请选择省份"
  442. style={{ width: 100,marginRight:'10px',marginLeft:'10px',marginBottom:'10px' }}
  443. value={getNewDiccityArr(this.state.province)}
  444. onChange={e => {
  445. this.setState({ province: e });
  446. }}
  447. >
  448. {citySelect().map(function(item) {
  449. return (
  450. <Select.Option key={item.value} value={item.value}>{item.label}</Select.Option>
  451. );
  452. })}
  453. </Select>
  454. </span>
  455. <span style={{display: "inline-block",marginRight:'10px',marginBottom:'10px'}}>
  456. <span>负责部门:</span>
  457. <Select
  458. placeholder="请选择部门"
  459. style={{ width: 200,marginRight:'10px',marginLeft:'10px',marginBottom:'10px' }}
  460. value={this.state.depId || undefined}
  461. onChange={e => {
  462. this.setState({ depId: e });
  463. }}
  464. >
  465. {
  466. this.state.departmentArr.map(function (item) {
  467. return <Select.Option key={item.id} value={item.id}>{item.name}</Select.Option>
  468. })
  469. }
  470. </Select>
  471. </span>
  472. <span style={{display:"inline-block"}}>
  473. <span style={{marginRight:'10px',marginBottom:'10px'}}>派单时间 :</span>
  474. <RangePicker
  475. style={{marginRight:'10px',marginBottom:'10px'}}
  476. value={[
  477. this.state.releaseDate[0]
  478. ? moment(this.state.releaseDate[0])
  479. : null,
  480. this.state.releaseDate[1]
  481. ? moment(this.state.releaseDate[1])
  482. : null,
  483. ]}
  484. onChange={(data, dataString) => {
  485. this.setState({ releaseDate: dataString });
  486. }}
  487. />
  488. </span>
  489. <Button type="primary" onClick={()=>{
  490. if(this.state.commodityName.length === 0){
  491. this.setState({
  492. kid: ''
  493. },()=>{
  494. this.loadData();
  495. })
  496. }else{
  497. this.loadData();
  498. }
  499. }} style={{marginRight:'10px',marginBottom:'10px'}}>搜索</Button>
  500. <Button onClick={this.resetAll} style={{marginRight:'10px',marginBottom:'10px'}}>重置</Button>
  501. </div>
  502. </TabPane>
  503. <TabPane tab="更改表格显示数据" key="2">
  504. <div style={{ marginLeft: 10 }}>
  505. <ChooseList
  506. columns={this.state.columns}
  507. changeFn={this.changeList}
  508. changeList={this.state.changeList}
  509. top={55}
  510. margin={11}
  511. />
  512. </div>
  513. </TabPane>
  514. <TabPane tab="导出EXCEL" key="3">
  515. <Button type="primary" style={{margin: '10px'}} onClick={this.exportPending}>导出</Button>
  516. </TabPane>
  517. </Tabs>
  518. <div className="patent-table">
  519. <Spin spinning={this.state.loading}>
  520. <Table
  521. bordered
  522. size="middle"
  523. scroll={{ x: 800, y: 0 }}
  524. columns={
  525. this.state.changeList.length > 0
  526. ? this.state.changeList
  527. : this.state.columns
  528. }
  529. dataSource={this.state.dataSource}
  530. pagination={this.state.pagination}
  531. />
  532. </Spin>
  533. </div>
  534. {this.state.projectSummary ? <Modal
  535. className="customeDetails"
  536. footer=""
  537. title=""
  538. width="1800px"
  539. visible={this.state.projectSummary}
  540. onOk={()=>{
  541. this.setState({
  542. projectSummary: false
  543. })
  544. }}
  545. onCancel={()=>{
  546. this.setState({
  547. projectSummary: false
  548. })
  549. }}
  550. >
  551. <HighTech
  552. searchData={{
  553. startDate: this.state.releaseDate.length > 0 ? this.state.releaseDate[0]: undefined, //开始时间
  554. endDate: this.state.releaseDate.length > 0 ? this.state.releaseDate[1]: undefined, //结束时间
  555. projectType: typeof this.state.projectType === 'number' ? this.state.projectType : undefined,//项目分类
  556. projectId: this.state.kid || undefined,
  557. province: this.state.taberProvince || undefined,
  558. projectStatus: this.state.taberProjectStatus || undefined,//项目类别
  559. thchDepId: this.state.taberdepId || undefined,
  560. status: this.state.projectType === 4 ? 2 :
  561. this.state.projectType === 2 ? 3 :
  562. this.state.projectType === 1 ? 4 :
  563. this.state.projectType === 5 ? 1 :
  564. this.state.contactsOptionData.filter((v)=>v.id === this.state.taberProjectStatus).length > 0 ?
  565. (this.state.contactsOptionData.filter((v)=>v.id === this.state.taberProjectStatus)[0].cname === '高新' ? 1 : 0) : 0,
  566. screen: this.state.screen,//筛选项 0库存 1派单 2完成 3立项 4抽查 5未通过 6受理 7完结 8授权 9驳回 10下证 11申请
  567. }}
  568. introduce={()=>(
  569. <div className="user-search" style={{
  570. marginTop:'10px',
  571. marginLeft:'10px',
  572. marginRight:'10px'
  573. }}>
  574. {this.state.commodityName ? <span style={{display: "inline-block",marginBottom:'10px'}}>
  575. <span>项目名称:</span>
  576. <span style={{ width: 100,marginLeft:'10px' }}>{this.state.commodityName}</span>
  577. </span> : null}
  578. {this.state.projectStatus ? <span style={{display:"inline-block"}}>
  579. <span style={{marginRight:'20px',marginBottom:'10px'}}>项目类别 :</span>
  580. <span style={{ width: 100,marginRight:'20px',marginBottom:'10px' }}>
  581. {
  582. this.state.contactsOptionData.filter((v)=>v.id === this.state.projectStatus)[0].cname
  583. }
  584. </span>
  585. </span> : null}
  586. {typeof this.state.projectType === 'number'?<span style={{display:"inline-block"}}>
  587. <span style={{marginRight:'10px',marginBottom:'10px'}}>项目分类 :</span>
  588. <span style={{ width: 100,marginRight:'20px',marginBottom:'10px' }}>
  589. {
  590. this.state.projectType === 0 ? '通用' :
  591. this.state.projectType === 1 ? '专利' :
  592. this.state.projectType === 2 ? '软著' :
  593. this.state.projectType === 3 ? '审计' :
  594. this.state.projectType === 4 ? '双软':
  595. this.state.projectType === 5 ? '高新' :
  596. this.state.projectType === 6 ? '商标' : ''
  597. }
  598. </span>
  599. </span> : null}
  600. {this.state.province ? <span style={{display: "inline-block",marginRight:'20px',marginBottom:'10px'}}>
  601. <span>派单省份:</span>
  602. <span style={{ width: 100,marginRight:'10px',marginLeft:'10px',marginBottom:'10px' }}>{getNewDiccityArr(this.state.province)}</span>
  603. </span> : null}
  604. {this.state.depId ? <span style={{display: "inline-block",marginRight:'20px',marginBottom:'10px'}}>
  605. <span>负责部门:</span>
  606. <span style={{ width: 200,marginRight:'10px',marginLeft:'10px',marginBottom:'10px' }}>
  607. {
  608. this.state.departmentArr.filter((v)=>v.id === this.state.depId)[0].name
  609. }
  610. </span>
  611. </span> : null}
  612. {this.state.releaseDate.length > 0 ? <span style={{display:"inline-block"}}>
  613. <span style={{marginRight:'10px',marginBottom:'10px'}}>派单时间 :</span>
  614. <span style={{marginRight:'10px',marginBottom:'10px'}}>
  615. {this.state.releaseDate[0]+'~'+this.state.releaseDate[1]}
  616. </span>
  617. </span> : null}
  618. </div>
  619. )}
  620. />
  621. </Modal> : null}
  622. </div>
  623. )
  624. }
  625. }
  626. export default ProjecCount;