|  | @@ -902,7 +902,8 @@ class CheckProject extends Component {
 | 
	
		
			
				|  |  |              </Spin>
 | 
	
		
			
				|  |  |            </div>
 | 
	
		
			
				|  |  |          </div>
 | 
	
		
			
				|  |  | -        <div className="thirdParty">
 | 
	
		
			
				|  |  | +        {/*如果是软著类或者专利类的专利申请,隐藏付款节点*/}
 | 
	
		
			
				|  |  | +        {!((this.props.projectType === 1 && this.props.patentType === 0) || this.props.projectType === 2) ? <div className="thirdParty">
 | 
	
		
			
				|  |  |            <div>
 | 
	
		
			
				|  |  |              <span className="title">
 | 
	
		
			
				|  |  |                付款节点
 | 
	
	
		
			
				|  | @@ -926,7 +927,7 @@ class CheckProject extends Component {
 | 
	
		
			
				|  |  |                </Form>
 | 
	
		
			
				|  |  |              </Spin>
 | 
	
		
			
				|  |  |            </div>
 | 
	
		
			
				|  |  | -        </div>
 | 
	
		
			
				|  |  | +        </div> : <div/>}
 | 
	
		
			
				|  |  |          <div
 | 
	
		
			
				|  |  |            style={{
 | 
	
		
			
				|  |  |              borderTop: '1px #000000 dashed',
 | 
	
	
		
			
				|  | @@ -1033,9 +1034,9 @@ class CheckProject extends Component {
 | 
	
		
			
				|  |  |                  </div>
 | 
	
		
			
				|  |  |                </Col>
 | 
	
		
			
				|  |  |                <Col className="gutter-row" span={4}>
 | 
	
		
			
				|  |  | -                <div className="gutter-box">
 | 
	
		
			
				|  |  | -                  申请支付金额(万元)
 | 
	
		
			
				|  |  | -                </div>
 | 
	
		
			
				|  |  | +                    <div className="gutter-box">
 | 
	
		
			
				|  |  | +                      {this.props.projectType === 2 || (this.props.projectType === 1 && this.props.patentType === 0) ? '申请支付数量' : '申请支付金额(万元)'}
 | 
	
		
			
				|  |  | +                    </div>
 | 
	
		
			
				|  |  |                </Col>
 | 
	
		
			
				|  |  |                <Col className="gutter-row" span={4}>
 | 
	
		
			
				|  |  |                  <div className="gutter-box">
 | 
	
	
		
			
				|  | @@ -1081,7 +1082,11 @@ class CheckProject extends Component {
 | 
	
		
			
				|  |  |                        </Col>
 | 
	
		
			
				|  |  |                        <Col className="gutter-row" span={4}>
 | 
	
		
			
				|  |  |                          <div className="gutter-box">
 | 
	
		
			
				|  |  | -                          {value.applicationAmount}
 | 
	
		
			
				|  |  | +                          {
 | 
	
		
			
				|  |  | +                            this.props.projectType === 2 || (this.props.projectType === 1 && this.props.patentType === 0) ?
 | 
	
		
			
				|  |  | +                                value.quantity:
 | 
	
		
			
				|  |  | +                                value.applicationAmount
 | 
	
		
			
				|  |  | +                          }
 | 
	
		
			
				|  |  |                          </div>
 | 
	
		
			
				|  |  |                        </Col>
 | 
	
		
			
				|  |  |                        <Col className="gutter-row" span={4}>
 |