diff --git a/src/pages/Bid/BiddingAnnouncement/components/PublicPlatform.tsx b/src/pages/Bid/BiddingAnnouncement/components/PublicPlatform.tsx index 90135e4..56caedc 100644 --- a/src/pages/Bid/BiddingAnnouncement/components/PublicPlatform.tsx +++ b/src/pages/Bid/BiddingAnnouncement/components/PublicPlatform.tsx @@ -1,5 +1,7 @@ -import { Form, Input, InputNumber, Button, Card } from 'antd'; -import React from 'react'; +import { scrollToAnchor } from '@/utils/CommonUtils'; +import ProCard from '@ant-design/pro-card'; +import { Form, Input, InputNumber, Button, Card, Row, Col, Typography, Tooltip, Space, Radio, Affix, List, Tag } from 'antd'; +import React, { useState } from 'react'; interface PublicPlatformProps { modalVisible: boolean; @@ -11,9 +13,44 @@ const layout = { span: 6, }, wrapperCol: { - span: 16, + span: 17, }, }; +const bidLayout = { + labelCol: { + span: 4, + }, + wrapperCol: { + span: 20, + }, +}; +const candidateLayout = { + labelCol: { + span: 7, + }, + wrapperCol: { + span: 17, + }, +}; + +const data = [ + { + title: '标段一', + description: 'XY92632011202', + }, + { + title: '标段二', + description: 'XY92632011202', + }, + { + title: '标段三', + description: 'XY92632011202', + }, + { + title: '标段四', + description: 'XY92632011202', + }, +]; /* eslint-disable no-template-curly-in-string */ const validateMessages = { @@ -30,57 +67,144 @@ const validateMessages = { const PublicPlatform: React.FC = (props) => { // const { modalVisible, onCancel } = props; + const { Text } = Typography; + const { TextArea } = Input; + const [container, setContainer] = useState(null); const onFinish = (values: any) => { console.log(values); }; return ( - -
+
+

项目信息

- +