12-23-上传master
This commit is contained in:
9
src/pages/Evaluation/BidReview/BidReviewConfirm/data.d.ts
vendored
Normal file
9
src/pages/Evaluation/BidReview/BidReviewConfirm/data.d.ts
vendored
Normal file
@ -0,0 +1,9 @@
|
||||
//需要包含筛选里的字段 筛选才能生效
|
||||
export interface TableListItem {
|
||||
key?: string;
|
||||
type?: string;
|
||||
factor?: string;
|
||||
company1?: string;
|
||||
company2?: string;
|
||||
company3?: string;
|
||||
}
|
39
src/pages/Evaluation/BidReview/BidReviewConfirm/index.tsx
Normal file
39
src/pages/Evaluation/BidReview/BidReviewConfirm/index.tsx
Normal file
@ -0,0 +1,39 @@
|
||||
import React, { useState } from 'react';
|
||||
import { Modal, Button, Space, Input } from 'antd';
|
||||
import { TableListItem } from './data';
|
||||
import '@/assets/ld_style.less'
|
||||
|
||||
const { TextArea } = Input;
|
||||
|
||||
const Index: React.FC<{}> = () => {
|
||||
const [visible, setVisible] = useState<boolean>(false);
|
||||
|
||||
return (
|
||||
<>
|
||||
<div className="bidContent">
|
||||
<div className="titName">
|
||||
<span className="f16">编辑评审报告</span>
|
||||
<Space className="fr">
|
||||
<Button type="primary" danger size="small" className="fr">确认无误</Button>
|
||||
<Button onClick={() => setVisible(true)} type="primary" danger size="small" className="fr">我有问题</Button>
|
||||
</Space>
|
||||
</div>
|
||||
<div>文档插件</div>
|
||||
<Modal // 专家确认
|
||||
title="评审专家确认"
|
||||
width={800}
|
||||
visible={visible}
|
||||
onCancel={() => setVisible(false)}
|
||||
footer={[
|
||||
<Button onClick={() => setVisible(false)}>取消</Button>,
|
||||
<Button danger type="primary" >保存</Button>,
|
||||
<Button danger type="primary" >发送问题</Button>,
|
||||
]}
|
||||
>
|
||||
<TextArea rows={4} />
|
||||
</Modal>
|
||||
</div>
|
||||
</>
|
||||
)
|
||||
}
|
||||
export default Index
|
9
src/pages/Evaluation/BidReview/BidReviewEdit/data.d.ts
vendored
Normal file
9
src/pages/Evaluation/BidReview/BidReviewEdit/data.d.ts
vendored
Normal file
@ -0,0 +1,9 @@
|
||||
//需要包含筛选里的字段 筛选才能生效
|
||||
export interface TableListItem {
|
||||
key?: string;
|
||||
type?: string;
|
||||
factor?: string;
|
||||
company1?: string;
|
||||
company2?: string;
|
||||
company3?: string;
|
||||
}
|
24
src/pages/Evaluation/BidReview/BidReviewEdit/index.tsx
Normal file
24
src/pages/Evaluation/BidReview/BidReviewEdit/index.tsx
Normal file
@ -0,0 +1,24 @@
|
||||
import React, { useState } from 'react';
|
||||
import { Button, Space } from 'antd';
|
||||
import { TableListItem } from './data';
|
||||
import '@/assets/ld_style.less'
|
||||
|
||||
const Index: React.FC<{}> = () => {
|
||||
|
||||
return (
|
||||
<>
|
||||
<div className="bidContent">
|
||||
<div className="titName">
|
||||
<span className="f16">编辑评审报告</span>
|
||||
<Space className="fr">
|
||||
<Button type="primary" danger size="small" className="fr">更换模板</Button>
|
||||
<Button type="primary" danger size="small" className="fr">发送专家确认</Button>
|
||||
</Space>
|
||||
</div>
|
||||
<div>文档插件</div>
|
||||
<Button type="primary" danger size="small" className="fr">保存</Button>
|
||||
</div>
|
||||
</>
|
||||
)
|
||||
}
|
||||
export default Index
|
Reference in New Issue
Block a user