|  | @@ -7,6 +7,7 @@ import { Button, Icon, Loading } from 'vant'
 | 
	
		
			
				|  |  |  import iconVideoPlay from '@/common/images/icon_video_play.png'
 | 
	
		
			
				|  |  |  import { browser } from '@/helpers/utils'
 | 
	
		
			
				|  |  |  import { state } from '@/state'
 | 
	
		
			
				|  |  | +import { listenerMessage } from '@/helpers/native-message'
 | 
	
		
			
				|  |  |  export default defineComponent({
 | 
	
		
			
				|  |  |    name: 'col-video',
 | 
	
		
			
				|  |  |    props: {
 | 
	
	
		
			
				|  | @@ -70,6 +71,13 @@ export default defineComponent({
 | 
	
		
			
				|  |  |    },
 | 
	
		
			
				|  |  |    mounted() {
 | 
	
		
			
				|  |  |      this._init()
 | 
	
		
			
				|  |  | +
 | 
	
		
			
				|  |  | +    listenerMessage('setVideoPlayer', result => {
 | 
	
		
			
				|  |  | +      const content = result?.content
 | 
	
		
			
				|  |  | +      if (content.status === 'pause') {
 | 
	
		
			
				|  |  | +        this.player.pause()
 | 
	
		
			
				|  |  | +      }
 | 
	
		
			
				|  |  | +    })
 | 
	
		
			
				|  |  |    },
 | 
	
		
			
				|  |  |    computed: {
 | 
	
		
			
				|  |  |      computedSeeStatus() {
 | 
	
	
		
			
				|  | @@ -108,7 +116,7 @@ export default defineComponent({
 | 
	
		
			
				|  |  |        //   'download ' ,  // 显示一个下载按钮,其中包含指向当前源或您在选项中指定的自定义 URL 的链接
 | 
	
		
			
				|  |  |        //   'fullscreen' ,  // 切换全屏
 | 
	
		
			
				|  |  |        // ] ;
 | 
	
		
			
				|  |  | -      let controls = [
 | 
	
		
			
				|  |  | +      const controls = [
 | 
	
		
			
				|  |  |          'play-large',
 | 
	
		
			
				|  |  |          'play',
 | 
	
		
			
				|  |  |          'progress',
 |