|
@@ -5,9 +5,11 @@ import {
|
|
|
Table,
|
|
|
Modal,
|
|
|
Col,
|
|
|
- Input,
|
|
|
- Button, message,
|
|
|
- Row, Popconfirm, Radio,
|
|
|
+ Tag,
|
|
|
+ Button,
|
|
|
+ message,
|
|
|
+ Row,
|
|
|
+ Popconfirm,
|
|
|
} from 'antd'
|
|
|
import {getProjectStatus,} from '@/tools'
|
|
|
import { getMaterialStatus, getUrgentStatus } from '@/tools'
|
|
@@ -856,7 +858,7 @@ class CheckProject extends Component {
|
|
|
{
|
|
|
this.props.projectType === 1?
|
|
|
<div>
|
|
|
- <div style={{padding:'20px 0px 20px 20px',}}>
|
|
|
+ <div style={{padding:'0px 0px 20px 20px',}}>
|
|
|
专利类型:<span style={{marginLeft:'15px'}}>{this.props.patentType === 0 ? '专利申请/变更/转让' : '专利买卖'}</span>
|
|
|
</div>
|
|
|
<div style={{paddingBottom:'20px',paddingLeft:'20px'}}>
|
|
@@ -935,7 +937,7 @@ class CheckProject extends Component {
|
|
|
</div>
|
|
|
<div style={{paddingTop:'20px'}}>
|
|
|
<div className="title">合同/协议扫描件</div>
|
|
|
- <div style={{paddingTop:'10px',paddingBottom:'10px'}}>
|
|
|
+ <div style={{paddingBottom:'10px'}}>
|
|
|
<ImgList fileList={this.props.fileList} ItemWidth={'96px'}/>
|
|
|
</div>
|
|
|
{/*<Upload*/}
|
|
@@ -966,22 +968,27 @@ class CheckProject extends Component {
|
|
|
</div>
|
|
|
</div>
|
|
|
{parseInt(this.props.startType) !== 1 ? <div className="outsourceLogConent">
|
|
|
- <div className="title">外包状态</div>
|
|
|
+ <div className="title" style={{
|
|
|
+ paddingBottom: 0,
|
|
|
+ }}>外包状态</div>
|
|
|
<div className="outsourceLogList">
|
|
|
{
|
|
|
this.state.outsourceLogs.map((value,index)=>(
|
|
|
- <div key={index} className="outsourceLogItem">
|
|
|
- <Row gutter={16}>
|
|
|
+ <div key={index} className="outsourceLogItem outsource">
|
|
|
+ <Row gutter={16} style={{
|
|
|
+ paddingBottom: '8px',
|
|
|
+ paddingTop: '8px',
|
|
|
+ }}>
|
|
|
<Col className="gutter-row" span={6}>
|
|
|
- <div className="gutter-box">
|
|
|
+ <div>
|
|
|
{value.aname}
|
|
|
</div>
|
|
|
</Col>
|
|
|
<Col className="gutter-row" span={6}>
|
|
|
<div className="gutter-box">
|
|
|
{
|
|
|
- value.status === 0 ? '发起外包审核' :
|
|
|
- value.status === 1 ? '通过' : '驳回'
|
|
|
+ value.status === 0 ? <Tag color="#2db7f5">发起外包审核</Tag> :
|
|
|
+ value.status === 1 ? <Tag color="#87d068">通过</Tag> : <Tag color="#f50">驳回</Tag>
|
|
|
}
|
|
|
</div>
|
|
|
</Col>
|
|
@@ -1009,8 +1016,8 @@ class CheckProject extends Component {
|
|
|
fontWeight: 'bold',
|
|
|
}}>
|
|
|
<Row gutter={16}>
|
|
|
- <Col className="gutter-row" span={4}>
|
|
|
- <div className="gutter-box">
|
|
|
+ <Col className="gutter-row" span={2}>
|
|
|
+ <div>
|
|
|
编号
|
|
|
</div>
|
|
|
</Col>
|
|
@@ -1029,12 +1036,12 @@ class CheckProject extends Component {
|
|
|
申请支付金额(万元)
|
|
|
</div>
|
|
|
</Col>
|
|
|
- <Col className="gutter-row" span={5}>
|
|
|
+ <Col className="gutter-row" span={6}>
|
|
|
<div className="gutter-box">
|
|
|
申请时间
|
|
|
</div>
|
|
|
</Col>
|
|
|
- <Col className="gutter-row" span={5}>
|
|
|
+ <Col className="gutter-row" span={6}>
|
|
|
<div className="gutter-box">
|
|
|
状态
|
|
|
</div>
|
|
@@ -1044,10 +1051,15 @@ class CheckProject extends Component {
|
|
|
<div className="outsourceLogList" style={{paddingTop:'20px'}}>
|
|
|
{
|
|
|
this.state.selectOrderPayments.map((value,index)=>(
|
|
|
- <div key={index} className="orderPayItem">
|
|
|
+ <div key={index} className="orderPayItem" onClick={()=>{
|
|
|
+ this.setState({
|
|
|
+ payRecordVisible: true,
|
|
|
+ orderPaymentsId: value.id,
|
|
|
+ })
|
|
|
+ }}>
|
|
|
<Row gutter={16}>
|
|
|
- <Col className="gutter-row" span={4}>
|
|
|
- <div className="gutter-box">
|
|
|
+ <Col className="gutter-row" span={2}>
|
|
|
+ <div>
|
|
|
{value.id}
|
|
|
</div>
|
|
|
</Col>
|
|
@@ -1067,28 +1079,34 @@ class CheckProject extends Component {
|
|
|
{value.applicationAmount}
|
|
|
</div>
|
|
|
</Col>
|
|
|
- <Col className="gutter-row" span={5}>
|
|
|
+ <Col className="gutter-row" span={6}>
|
|
|
<div className="gutter-box">
|
|
|
{value.createTimes}
|
|
|
</div>
|
|
|
</Col>
|
|
|
- <Col className="operationItem" span={5}>
|
|
|
- <div className="operation">
|
|
|
- {
|
|
|
- value.status === 0 ? '审核中' :
|
|
|
- value.status === 1 ? '审核通过' :
|
|
|
- value.status === 2 ? '已驳回' :
|
|
|
- value.status === 3 ? '支付完成' : '已取消'
|
|
|
- }
|
|
|
- </div>
|
|
|
- <Button type="primary" size='small' onClick={()=>{
|
|
|
- this.setState({
|
|
|
- payRecordVisible: true,
|
|
|
- orderPaymentsId: value.id,
|
|
|
- })
|
|
|
+ <Col className="operationItem" span={6}>
|
|
|
+ <div className="gutter-box" style={{
|
|
|
+ width: '100%',
|
|
|
+ display: 'flex',
|
|
|
+ justifyContent: 'center',
|
|
|
}}>
|
|
|
- {this.operationJudgmentName(value.status)}
|
|
|
- </Button>
|
|
|
+ <div className="operation">
|
|
|
+ {
|
|
|
+ value.status === 0 ? '审核中' :
|
|
|
+ value.status === 1 ? '审核通过' :
|
|
|
+ value.status === 2 ? '已驳回' :
|
|
|
+ value.status === 3 ? '支付完成' : '已取消'
|
|
|
+ }
|
|
|
+ </div>
|
|
|
+ <Button type="primary" size='small' onClick={()=>{
|
|
|
+ this.setState({
|
|
|
+ payRecordVisible: true,
|
|
|
+ orderPaymentsId: value.id,
|
|
|
+ })
|
|
|
+ }}>
|
|
|
+ {this.operationJudgmentName(value.status)}
|
|
|
+ </Button>
|
|
|
+ </div>
|
|
|
</Col>
|
|
|
</Row>
|
|
|
</div>
|