| 
					
				 | 
			
			
				@@ -348,21 +348,22 @@ export default { 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				         this.status = res.data.status 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				  
			 | 
		
	
		
			
				 | 
				 | 
			
			
				         this.activeItems = res.data.items.map(item => { 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+          let answer = item.answer.map(it => { 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+            if (item.type == 3) { 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+              item.inputValue = it.option_value 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+            } else if (item.type == 4 || item.type == 5) { 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+              let img = [] 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+              it.option_value.forEach(t => { 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+                img.push({ url: t }) 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+              }) 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+              console.log(it.option_value, img) 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+              item.inputValue = img 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+            } 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+            return { ...it } 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+          }) 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				           return { 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				             ...item, 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				-            answer: item.answer.map(it => { 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				-              if (item.type == 3) { 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				-                item.inputValue = it.option_value 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				-              } else if (item.type == 4 || item.type == 5) { 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				-                let img = [] 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				-                it.option_value.forEach(t => { 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				-                  img.push({ url: t }) 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				-                }) 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				-                console.log(it.option_value, img) 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				-                item.inputValue = img 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				-              } 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				-              return { ...it } 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				-            }) 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+            answer: answer 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				           } 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				         }) 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				         console.log(this.activeItems) 
			 |