dever 5 년 전
부모
커밋
4479971197
2개의 변경된 파일102개의 추가작업 그리고 2개의 파일을 삭제
  1. 94 0
      pages/dream/view/dialogue.vue
  2. 8 2
      pages/dream/view/dream.vue

파일 크기가 너무 크기때문에 변경 상태를 표시하지 않습니다.
+ 94 - 0
pages/dream/view/dialogue.vue


+ 8 - 2
pages/dream/view/dream.vue

@@ -63,6 +63,11 @@
 		<!--直播-->
 		<view v-else-if="item.type == 40">
 			<liveComment :index="index" :item="item.data" :control="control"></liveComment>
+		</view>
+		
+		<!--对话-->
+		<view v-else-if="item.type == 60">
+			<dialogue :index="index" :item="item.data" :control="control"></dialogue>
 		</view>
 		
 		<!--电商单个产品-->
@@ -92,7 +97,8 @@ import vodComment from "@/pages/dream/view/vodComment.vue";
 import audioList from "@/pages/dream/view/audioList.vue";
 import audioComment from "@/pages/dream/view/audioComment.vue";
 import liveComment from "@/pages/dream/view/liveComment.vue";
-import vodShort from "@/pages/dream/view/vodShort.vue";
+import vodShort from "@/pages/dream/view/vodShort.vue";
+import dialogue from "@/pages/dream/view/dialogue.vue";
 import linkView from "@/pages/dream/view/linkView.vue";
 import webView from "@/pages/dream/view/webView.vue";
 import product from "@/pages/dream/view/product.vue";
@@ -116,7 +122,7 @@ export default {
 		stopFun : function(){return false;}
 	},
 	components:{
-		news,pic,picGrid,vod,vodComment,vodShort,audioList,audioComment,liveComment,linkView,webView,product
+		news,pic,picGrid,vod,vodComment,vodShort,audioList,audioComment,liveComment,dialogue,linkView,webView,product
 	}
 }
 </script>

이 변경점에서 너무 많은 파일들이 변경되어 몇몇 파일들은 표시되지 않았습니다.