| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667 | <template name="vodComment">	<view>		<view class="banner">			<dever-video			:src="item.video" 			:pic="item.pic" 			:control="true"			:index="0" 			:vid="item.id" 			:load.sync="load"			ref="video"			>			</dever-video>		</view>		<comment :name="item.name" :type="`content/video_comment`" :type_id="item.id"></comment>	</view></template><script>import deverVideo from '@/lib/dever/components/video.nvue';import comment from "@/pages/dream/view/comment.vue";export default {	name: "vodComment",	props: {		control : {			type : Object,			value : null		},		item : {			type    : Object,			value	: null		},		index : {			type    : Number,			value	: null		},	},	data() {		return {			load : false,		}	},	mounted() {		this.control[this.index] = this;	},	methods:{		start : function() {			this.$refs.video.start();		},		stop : function() {			this.$refs.video.stop(true);		},	},	components:{		deverVideo,comment	}}</script><style>.banner{  position: relative;  width: 750rpx;  height: 422rpx;  display: block;}</style>
 |