| 
					
				 | 
			
			
				@@ -1,6 +1,6 @@ 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				 <!--  --> 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				 <template> 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				-  <div class="Big-Book-ligature"> 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+  <div class="Big-Book-ligature" v-if="curQue"> 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				     <div class="Big-Book-Single-content"> 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				       <div class="adult-book-input-item"> 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				           <span class="adult-book-lable">标题:</span>   <el-input 
			 | 
		
	
	
		
			
				| 
					
				 | 
			
			
				@@ -232,10 +232,10 @@ export default { 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				     //添加一个选项 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				     addOption(CorO) { 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				       if (CorO == "con") { 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				-        let obj = this.data_structure.con[0]; 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+        let obj = JSON.parse(JSON.stringify(this.data_structure.con[0])); 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				         this.curQue.con.push(obj); 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				       } else { 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				-        let obj = this.data_structure.option[0]; 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+        let obj = JSON.parse(JSON.stringify(this.data_structure.option[0])); 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				         this.curQue.option.push(obj); 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				       } 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				     }, 
			 |