videoInfo.vue 841 B

12345678910111213141516171819202122232425262728293031323334353637383940
  1. <template>
  2. <view>
  3. <view class="" style="padding-left: 30rpx;">
  4. <image src="../../static/index/back.png" mode="" style="width: 64rpx;height: 64rpx;" @click="back"></image>
  5. </view>
  6. <view class="" style="position: absolute;top: 50%;transform: translateY(-50%);">
  7. <video :src="info.video_url" style="width: 750rpx;height: 440rpx;" :controls="true" ></video>
  8. </view>
  9. <view class="" style="position: fixed;bottom: 240rpx;left:30rpx;right: 30rpx;color: #fff;font-size: 30rpx;">
  10. {{info.title}}
  11. </view>
  12. </view>
  13. </template>
  14. <script>
  15. export default {
  16. onLoad(option) {
  17. this.info=JSON.parse(option.item)
  18. },
  19. data() {
  20. return {
  21. info:{}
  22. }
  23. },
  24. methods: {
  25. back(){
  26. uni.navigateBack({
  27. })
  28. }
  29. }
  30. }
  31. </script>
  32. <style lang="scss">
  33. page{
  34. padding-top: 100rpx;
  35. background-color: #000000;
  36. }
  37. </style>