videoInfo.vue 968 B

123456789101112131415161718192021222324252627282930313233343536373839404142434445
  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 v-if="info.video" :src="info.video" 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.getinfo(option.id)
  18. },
  19. data() {
  20. return {
  21. info:{}
  22. }
  23. },
  24. methods: {
  25. getinfo(id){
  26. uni.$u.http.post('/api/index/articlederail',{id:id}).then(res => {
  27. this.info=res.data
  28. })
  29. },
  30. back(){
  31. uni.navigateBack({
  32. })
  33. }
  34. }
  35. }
  36. </script>
  37. <style lang="scss">
  38. page{
  39. padding-top: 100rpx;
  40. background-color: #000000;
  41. }
  42. </style>