|  | @@ -137,7 +137,7 @@ const FlowList = () => {
 | 
	
		
			
				|  |  |              配置流程
 | 
	
		
			
				|  |  |            </span>
 | 
	
		
			
				|  |  |            <Popconfirm
 | 
	
		
			
				|  |  | -            disabled={record?.canDel}
 | 
	
		
			
				|  |  | +            disabled={!record?.canDel}
 | 
	
		
			
				|  |  |              title="是否删除此流程模板?"
 | 
	
		
			
				|  |  |              okText="确定"
 | 
	
		
			
				|  |  |              cancelText="取消"
 | 
	
	
		
			
				|  | @@ -145,7 +145,7 @@ const FlowList = () => {
 | 
	
		
			
				|  |  |              <span
 | 
	
		
			
				|  |  |                className={classNames(
 | 
	
		
			
				|  |  |                  'pl-2',
 | 
	
		
			
				|  |  | -                record?.canDel ? 'text-gray-500' : 'text-red-500 cursor-pointer hover:text-red-600'
 | 
	
		
			
				|  |  | +                record?.canDel ? 'text-red-500 cursor-pointer hover:text-red-600' : 'text-gray-500'
 | 
	
		
			
				|  |  |                )}>
 | 
	
		
			
				|  |  |                删除
 | 
	
		
			
				|  |  |              </span>
 |