video-detail.vue 1.3 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576
  1. <template>
  2. <view class="content">
  3. <video :src="detail.url"></video>
  4. <view class="box">
  5. <view class="title">{{detail.title}}</view>
  6. <view class="time">{{detail.created_at}}</view>
  7. <view class="btn" @click="down">下载视频</view>
  8. </view>
  9. </view>
  10. </template>
  11. <script>
  12. export default {
  13. data() {
  14. return {
  15. detail: {
  16. }
  17. }
  18. },
  19. onLoad(options) {
  20. this.detail = JSON.parse(decodeURIComponent(options.data))
  21. },
  22. methods: {
  23. down() {
  24. uni.saveVideoToPhotosAlbum({
  25. filePath: this.detail.src,
  26. success: function () {
  27. console.log('save success');
  28. },
  29. fail: function(err) {
  30. console.log(err,'保存失败');
  31. }
  32. });
  33. },
  34. }
  35. }
  36. </script>
  37. <style lang="scss">
  38. .content {
  39. background: #FFFFFF;
  40. video {
  41. width: 100%;
  42. }
  43. .box {
  44. padding: 28rpx;
  45. .title {
  46. font-size: 32rpx;
  47. font-family: PingFangSC, PingFang SC;
  48. font-weight: 600;
  49. color: #222222;
  50. }
  51. .time {
  52. font-size: 24rpx;
  53. font-family: SFPro, SFPro;
  54. font-weight: 400;
  55. color: #222222;
  56. padding: 20rpx 0 54rpx;
  57. }
  58. .btn {
  59. width: 694rpx;
  60. height: 84rpx;
  61. background: rgba(0, 176, 176, .1);
  62. border-radius: 38rpx;
  63. font-size: 32rpx;
  64. font-family: PingFangSC, PingFang SC;
  65. font-weight: 500;
  66. color: #00B0B0;
  67. line-height: 84rpx;
  68. text-align: center;
  69. }
  70. }
  71. }
  72. </style>