|  | @@ -159,6 +159,7 @@ function FlowModal(props) {
 | 
	
		
			
				|  |  |          title: '状态',
 | 
	
		
			
				|  |  |          width: '30%',
 | 
	
		
			
				|  |  |          render: item => {
 | 
	
		
			
				|  |  | +          if (item.isParent) return;
 | 
	
		
			
				|  |  |            let style = { color: getColor(item) };
 | 
	
		
			
				|  |  |            let txt = '';
 | 
	
		
			
				|  |  |            switch (item.audit_status) {
 | 
	
	
		
			
				|  | @@ -190,6 +191,7 @@ function FlowModal(props) {
 | 
	
		
			
				|  |  |          title: '操作',
 | 
	
		
			
				|  |  |          width: '20%',
 | 
	
		
			
				|  |  |          render: item =>
 | 
	
		
			
				|  |  | +          !item.isParent &&
 | 
	
		
			
				|  |  |            item.id != version.id && (
 | 
	
		
			
				|  |  |              <a
 | 
	
		
			
				|  |  |                onClick={() => {
 |