|  | @@ -241,8 +241,8 @@ const ApplyManage = React.createClass({
 | 
	
		
			
				|  |  |          let deletedIds = [];
 | 
	
		
			
				|  |  |          for (let idx = 0; idx < this.state.selectedRows.length; idx++) {
 | 
	
		
			
				|  |  |              let rowItem = this.state.selectedRows[idx];
 | 
	
		
			
				|  |  | -            if (rowItem.id) {
 | 
	
		
			
				|  |  | -                deletedIds.push(rowItem.id)
 | 
	
		
			
				|  |  | +            if (rowItem.pid) {
 | 
	
		
			
				|  |  | +                deletedIds.push(rowItem.pid)
 | 
	
		
			
				|  |  |              }
 | 
	
		
			
				|  |  |          }
 | 
	
		
			
				|  |  |          this.setState({
 | 
	
	
		
			
				|  | @@ -327,6 +327,9 @@ const ApplyManage = React.createClass({
 | 
	
		
			
				|  |  |                      </Select>
 | 
	
		
			
				|  |  |                      <Button type="primary" onClick={this.search}>搜索</Button>
 | 
	
		
			
				|  |  |                      <Button onClick={this.reset}>重置</Button>
 | 
	
		
			
				|  |  | +                    <Button style={{ background: "#3fcf9e", border: "none", color: "#fff" }}
 | 
	
		
			
				|  |  | +                            disabled={!hasSelected}
 | 
	
		
			
				|  |  | +                            onClick={this.delectRow}>删除<Icon type="minus" /></Button>
 | 
	
		
			
				|  |  |                  </div>
 | 
	
		
			
				|  |  |                  
 | 
	
		
			
				|  |  |                  <div className="patent-table">
 |