|  | @@ -257,6 +257,15 @@ const WeGZHContent: React.FC = () => {
 | 
	
		
			
				|  |  |  						total: totalSize,
 | 
	
		
			
				|  |  |  						pageSize: 10,
 | 
	
		
			
				|  |  |  						showTotal: (total) => `共 ${total} 条`,
 | 
	
		
			
				|  |  | +						onChange: (page) => getGzhPlanList({
 | 
	
		
			
				|  |  | +							pageNum: page,
 | 
	
		
			
				|  |  | +							pageSize: 10,
 | 
	
		
			
				|  |  | +							title: videoTitle,
 | 
	
		
			
				|  |  | +							accountId: selectedAccount ? parseInt(selectedAccount) : undefined,
 | 
	
		
			
				|  |  | +							publishStage: selectedPublisher,
 | 
	
		
			
				|  |  | +							createTimestampStart: dateRange?.[0]?.unix() ? dateRange[0].unix() * 1000 : undefined,
 | 
	
		
			
				|  |  | +							createTimestampEnd: dateRange?.[1]?.unix() ? dateRange[1].unix() * 1000 : undefined,
 | 
	
		
			
				|  |  | +						}),
 | 
	
		
			
				|  |  |  					}}
 | 
	
		
			
				|  |  |  				/>
 | 
	
		
			
				|  |  |  				<PunlishPlanModal
 |