|  | @@ -111,7 +111,7 @@ const AddDynamic: React.FC<PULLIN.NewAddDynamic> = ({ visible, onChange, onClose
 | 
	
		
			
				|  |  |              return
 | 
	
		
			
				|  |  |          }
 | 
	
		
			
				|  |  |  
 | 
	
		
			
				|  |  | -        let newTableData = {}, newDynamicCount = 0
 | 
	
		
			
				|  |  | +        let newTableData: any = {}, newDynamicCount = 0
 | 
	
		
			
				|  |  |  
 | 
	
		
			
				|  |  |          let textType = dynamicCreativesTextDTOS.type
 | 
	
		
			
				|  |  |          let textDto = dynamicCreativesTextDTOS?.dynamicCreativesTextDetailDTOList || []
 | 
	
	
		
			
				|  | @@ -524,7 +524,7 @@ const AddDynamic: React.FC<PULLIN.NewAddDynamic> = ({ visible, onChange, onClose
 | 
	
		
			
				|  |  |                                          <div className={style.detail}>
 | 
	
		
			
				|  |  |                                              <div className={style.detail_body}>
 | 
	
		
			
				|  |  |                                                  <Title level={5} style={{ fontSize: 12 }}>已选广告</Title>
 | 
	
		
			
				|  |  | -                                                {Object.keys(adDataGroup).map(key => {
 | 
	
		
			
				|  |  | +                                                {Object.keys(adDataGroup).map((key: any) => {
 | 
	
		
			
				|  |  |                                                      return <div key={key}>
 | 
	
		
			
				|  |  |                                                          <Title level={5} style={{ fontSize: 12 }}>{key}</Title>
 | 
	
		
			
				|  |  |                                                          {adDataGroup[key]?.map((item: any) => {
 |