import React, { useState } from 'react'; import { Card, Row, Col, Tabs, Table } from 'antd'; import { useIntl, Link } from 'umi'; import './index.less'; import IconFont from '@/components/IconFont/IconFont'; import LinkComponent from './Link'; const IndexPage: React.FC = () => { const intl = useIntl(); const [noticeLoading, setNoticeLoading] = useState(false); const [noticeList, setNoticeList] = useState([ { title: 'CA使用通知', id: '1', content: '系统将于2022年5月27日期开始对全流程使用CA服务,届时全部投标供应商需办理CA。', }, { title: '5月27日系统优化升级通知', id: '2', content: '系统将于2022年5月27日(周五)22:00--2022年5月28日(周六)6:00进行系统优化升级,届时系统将暂停服务。', }, { title: '测试标题123123', id: '3', content: '测试内容124145', }, { title: '测试标题45435', id: '4', content: '测试内容6666', }, ]); const tabList = [ { key: '1', label: intl.formatMessage({ id: '采购需求公示' }), }, { key: '2', label: intl.formatMessage({ id: '招标采购公告' }), }, { key: '3', label: intl.formatMessage({ id: '非招标采购公告' }), }, { key: '4', label: intl.formatMessage({ id: '资格预审公告' }), }, { key: '5', label: intl.formatMessage({ id: '招募公告' }), }, { key: '6', label: intl.formatMessage({ id: '变更公告' }), }, { key: '7', label: intl.formatMessage({ id: '中标(中选)候选人公示' }), }, { key: '8', label: intl.formatMessage({ id: '中标(中选)结果公示' }), }, { key: '9', label: intl.formatMessage({ id: '采购失败(流标)公告' }), }, ]; //tab 切换事件 const tabChange = (key: string) => { console.log(key); }; const [tableLoading, setTableLoading] = useState(false); const dataSource = [ { key: '1', title: '中远海运空运北方物流基地标识制作及安装服务', address: '西湖区湖底公园1号', date: '2025年01月23日', lastDate: '剩余3天4小时', }, { key: '2', title: '中远海运空运北方物流基地标识制作及安装服务', address: '西湖区湖底公园1号', date: '2025年01月23日', lastDate: '剩余3天4小时', }, { key: '2', title: '中远海运空运北方物流基地标识制作及安装服务', address: '西湖区湖底公园1号', date: '2025年01月23日', lastDate: '剩余3天4小时', }, { key: '2', title: '中远海运空运北方物流基地标识制作及安装服务', address: '西湖区湖底公园1号', date: '2025年01月23日', lastDate: '剩余3天4小时', }, { key: '2', title: '中远海运空运北方物流基地标识制作及安装服务', address: '西湖区湖底公园1号', date: '2025年01月23日', lastDate: '剩余3天4小时', }, { key: '2', title: '中远海运空运北方物流基地标识制作及安装服务', address: '西湖区湖底公园1号', date: '2025年01月23日', lastDate: '剩余3天4小时', }, ]; const columns = [ { title: '项目所在地', dataIndex: 'address', key: 'address', }, { title: '公告标题', dataIndex: 'title', key: 'title', render: (text: string, record) => ( {text}, }, ]; return (
{/* 通知列表 */} {noticeList.map((item) => ( } >

{item.content}

))}
{tabList.map((item) => ( ))}
{intl.formatMessage({ id: '加载更多' })}
紧急问题咨询
北京市前门大街173号
17676373746
i723648723@383.com
CA服务
CA办理CA客服
联系方式

客服1: 400-300-9989

客服1: 400-300-9989

客服1: 400-300-9989

客服1: 400-300-9989

); }; export default IndexPage;