| 12345678910111213141516171819202122232425262728293031323334353637383940414243 |
- <template>
- <view class='videoControl' v-show="checkedIndex_second==4">
- <video class='aVideo' :src="videoLink"></video>
- </view>
- </template>
- <script>
- export default {
- components: {
-
- },
- onLoad() {
- },
- data() {
- return {
- videoLink:'https://zhongchuan1.oss-cn-beijing.aliyuncs.com/Video/实验引导视频.mp4?versionId=CAEQDxiBgIDPmP.f1hciIDNlMWUzYjAyZmFhYjQ0OGQ4MDkxNDBkYTBkMDQwOGQ1',
- }
- },
- methods: {
-
- }
- }
- </script>
- <style>
- .videoControl{
- width: 100%;
- height: 100%;
-
- display: flex;
- justify-content: center;
- align-items:center;
- flex-direction: row;
-
- border: 3rpx solid #D7D7D7;
- }
- .aVideo
- {
- width: 100%;
- height: 100%;
- }
- </style>
|