19 lines
		
	
	
		
			400 B
		
	
	
	
		
			JavaScript
		
	
	
	
		
		
			
		
	
	
			19 lines
		
	
	
		
			400 B
		
	
	
	
		
			JavaScript
		
	
	
	
|  |  | |||
|  | 
 | |||
|  | 
 | |||
|  | // 显示居中通知对话框
 | |||
|  | function showCenterNotify(message, messageIcon) { | |||
|  |     F.notify({ | |||
|  |         message: message, | |||
|  |         messageIcon: messageIcon || '', | |||
|  |         modal: true, | |||
|  |         hideOnMaskClick: true, | |||
|  |         header: false, | |||
|  |         displayMilliseconds: 3000, | |||
|  |         positionX: 'center', | |||
|  |         positionY: 'center', | |||
|  |         messageAlign: 'center', | |||
|  |         minWidth: 200 | |||
|  |     }); | |||
|  | } |