feat:去掉播放器画中画功能
Showing
2 changed files
with
7 additions
and
4 deletions
... | @@ -131,7 +131,7 @@ export default { | ... | @@ -131,7 +131,7 @@ export default { |
131 | hotkeys: this.hotkeys | 131 | hotkeys: this.hotkeys |
132 | }, | 132 | }, |
133 | controlBar: { | 133 | controlBar: { |
134 | fullscreenToggle: false, | 134 | fullscreenToggle: true, |
135 | volumePanel: { | 135 | volumePanel: { |
136 | inline: false | 136 | inline: false |
137 | } | 137 | } |
... | @@ -391,4 +391,7 @@ export default { | ... | @@ -391,4 +391,7 @@ export default { |
391 | .vjs-slider-vertical .vjs-volume-level:before { | 391 | .vjs-slider-vertical .vjs-volume-level:before { |
392 | left: -0.4em; | 392 | left: -0.4em; |
393 | } | 393 | } |
394 | .video-player .vjs-picture-in-picture-control { | ||
395 | display: none; | ||
396 | } | ||
394 | </style> | 397 | </style> | ... | ... |
... | @@ -103,19 +103,19 @@ | ... | @@ -103,19 +103,19 @@ |
103 | </template> | 103 | </template> |
104 | </el-table-column> | 104 | </el-table-column> |
105 | </el-table> | 105 | </el-table> |
106 | <FooterPaginationfrom :pagination="pagination"></FooterPaginationfrom> | 106 | <FooterPagination :pagination="pagination"></FooterPagination> |
107 | </Card> | 107 | </Card> |
108 | </template> | 108 | </template> |
109 | 109 | ||
110 | <script> | 110 | <script> |
111 | import FooterPaginationfrom from './components/FooterPagination' | 111 | import FooterPagination from './components/FooterPagination' |
112 | import { parseTime, parseTimeSecond } from '@/utils/util' | 112 | import { parseTime, parseTimeSecond } from '@/utils/util' |
113 | import { getResourceMonitorList } from '@/api/monitor' | 113 | import { getResourceMonitorList } from '@/api/monitor' |
114 | import { inputMaxLength } from '@/utils/mappingData' | 114 | import { inputMaxLength } from '@/utils/mappingData' |
115 | 115 | ||
116 | export default { | 116 | export default { |
117 | components: { | 117 | components: { |
118 | FooterPaginationfrom | 118 | FooterPagination |
119 | }, | 119 | }, |
120 | data() { | 120 | data() { |
121 | return { | 121 | return { | ... | ... |
-
Please register or sign in to post a comment