|  | @@ -9,16 +9,11 @@ type LeftMenuProps = {
 | 
	
		
			
				|  |  |    value: string
 | 
	
		
			
				|  |  |  }
 | 
	
		
			
				|  |  |  
 | 
	
		
			
				|  |  | -const LeftMenu: React.FC<LeftMenuProps> = ({
 | 
	
		
			
				|  |  | -  title = '流程用户设置',
 | 
	
		
			
				|  |  | -  options,
 | 
	
		
			
				|  |  | -  onChange,
 | 
	
		
			
				|  |  | -  value
 | 
	
		
			
				|  |  | -}) => {
 | 
	
		
			
				|  |  | +console.log('111')
 | 
	
		
			
				|  |  | +
 | 
	
		
			
				|  |  | +const LeftMenu: React.FC<LeftMenuProps> = ({ title = '流程用户设置', options, onChange, value }) => {
 | 
	
		
			
				|  |  |    return (
 | 
	
		
			
				|  |  | -    <div
 | 
	
		
			
				|  |  | -      className="w-216px rounded-20px"
 | 
	
		
			
				|  |  | -      style={{ height: 'calc(100vh - 122px)', background: '#ffffff' }}>
 | 
	
		
			
				|  |  | +    <div className="w-216px rounded-20px" style={{ height: 'calc(100vh - 122px)', background: '#ffffff' }}>
 | 
	
		
			
				|  |  |        <div className="p-5 text-16px text-opacity-85 menu-title">{title}</div>
 | 
	
		
			
				|  |  |        <Menu
 | 
	
		
			
				|  |  |          defaultSelectedKeys={[value]}
 |