| 
					
				 | 
			
			
				@@ -79,6 +79,7 @@ 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				         :data="data" 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				         :goods_type="401" 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				         :changeOrderNumber="changeOrderNumber" 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+        :goods_detail_type="goods_detail_type" 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				       /> 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				     </el-dialog> 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				     <el-dialog 
			 | 
		
	
	
		
			
				| 
					
				 | 
			
			
				@@ -132,6 +133,7 @@ export default { 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				       IsDownload: false, //是否可以下载 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				       allList: null, 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				       isData: false, 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+      goods_detail_type: null, 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				     }; 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				   }, 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				   computed: {}, 
			 | 
		
	
	
		
			
				| 
					
				 | 
			
			
				@@ -241,6 +243,7 @@ export default { 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				           goods_person_name_desc: this.data.teacher, 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				           goods_picture_id: this.data.coverFileId, 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				           goods_price: this.data.price, 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+          goods_detail_type: this.goods_detail_type, 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				         }) 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				           .then((res) => { 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				             this.$message({ 
			 | 
		
	
	
		
			
				| 
					
				 | 
			
			
				@@ -303,6 +306,7 @@ export default { 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				               this.getNumPages(); 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				             } 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				             this.changePrice(this.data.price * 1, 24, 16); 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+            this.goods_detail_type = this.getimgurl(this.data); 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				           } 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				         }) 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				         .catch((res) => { 
			 | 
		
	
	
		
			
				| 
					
				 | 
			
			
				@@ -351,6 +355,16 @@ export default { 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				           this.loading = false; 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				         }); 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				     }, 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+    getimgurl(item) { 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+      let index = item.tag.indexOf("downloadable"); 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+      let type = ""; 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+      if (index != -1) { 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+        type = item.tag[2]; 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+      } else { 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+        type = item.tag[1]; 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+      } 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+      return type; 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+    }, 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				   }, 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				   async created() { 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				     await updateWordPack({ 
			 |