From 78f1b2e2a35339ca18c13c2ff6cdaa0d3f2b0888 Mon Sep 17 00:00:00 2001 From: jl-zhoujl2 Date: Wed, 13 Apr 2022 16:51:43 +0800 Subject: [PATCH] =?UTF-8?q?4.13=20=E5=A2=9E=E5=8A=A0=E9=A1=B5=E9=9D=A2?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- config/ZhaoBiao/router_menucBid.config.ts | 5 ++ .../components/PublicPlatform.tsx | 87 +++++++++++++++++++ 2 files changed, 92 insertions(+) create mode 100644 src/pages/Bid/BiddingAnnouncement/components/PublicPlatform.tsx 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