diff --git a/config/ZhaoBiao/router_menucBid.config.ts b/config/ZhaoBiao/router_menucBid.config.ts index 39ee12f..410da96 100644 --- a/config/ZhaoBiao/router_menucBid.config.ts +++ b/config/ZhaoBiao/router_menucBid.config.ts @@ -24,6 +24,11 @@ export default [//招标 投标邀请 path: '/ProjectLayout/NoticeFileStruct/List', component: './Bid/NoticeFileStruct/list', }, + //公共服务平台 + { + path: '/ProjectLayout/PublicPlatform', + component: './Bid/BiddingAnnouncement/components/PublicPlatform', + }, //应答格式开始 { diff --git a/src/pages/Bid/BiddingAnnouncement/components/PublicPlatform.tsx b/src/pages/Bid/BiddingAnnouncement/components/PublicPlatform.tsx new file mode 100644 index 0000000..90135e4 --- /dev/null +++ b/src/pages/Bid/BiddingAnnouncement/components/PublicPlatform.tsx @@ -0,0 +1,87 @@ +import { Form, Input, InputNumber, Button, Card } from 'antd'; +import React from 'react'; + +interface PublicPlatformProps { + modalVisible: boolean; + onCancel: () => void; +} + +const layout = { + labelCol: { + span: 6, + }, + wrapperCol: { + span: 16, + }, +}; +/* eslint-disable no-template-curly-in-string */ + +const validateMessages = { + required: '${label} is required!', + types: { + email: '${label} is not a valid email!', + number: '${label} is not a valid number!', + }, + number: { + range: '${label} must be between ${min} and ${max}', + }, +}; +/* eslint-enable no-template-curly-in-string */ + +const PublicPlatform: React.FC = (props) => { + // const { modalVisible, onCancel } = props; + + const onFinish = (values: any) => { + console.log(values); + }; + + return ( + +
+

项目信息

+ + + + + + +

标段信息

+ + + + + + +

中标候选人信息

+ + + + + + + + + + + + + + + + + + + + + + {/* + + */} +
+
+ ); +}; + +export default PublicPlatform \ No newline at end of file