vipBenefit.vue 1.8 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273
  1. <template>
  2. <view class="" :style="$store.state.theme.currentMoban">
  3. <view >
  4. <video id="myVideo" :src='urlMP4'
  5. show-mute-btn='true' @fullscreenchange='changvideo'
  6. vslide-gesture-in-fullscreen='true' :muted='muted'
  7. @error="videoErrorCallback" enable-danmu controls autoplay="true"
  8. class="videotop"></video>
  9. </view>
  10. <view class="p20">
  11. <view class="fs36">倍力优牧场</view>
  12. <view class="fs24 color9">时间:2024.12.5</view>
  13. <view class="mt20 fs32 mb20 ">介绍</view>
  14. <view class="fs24">倍力优(北京)健康产业科技有限公司,
  15. 成立于2018年4月25日,总部位于北京,旗下拥有福州、太原、长治、呼和浩特
  16. 四家健康服务平台,以及多家实体店。公司专注于研发、生产和销售优质的羊乳制品。
  17. 多年来,公司不断提升产品的营养
  18. 、口味及包装,并推出多款高端功能性产品,丰富产品组合。</view>
  19. </view>
  20. <view>
  21. <image src="https://beiliyo-2025.obs.cn-north-4.myhuaweicloud.com/fs/20250115/1736927987564.jpg" style="width: 100%;"
  22. mode="widthFix"></image>
  23. </view>
  24. <view class="comedetail">
  25. 回顾往年精彩瞬间
  26. </view>
  27. </view>
  28. </template>
  29. <script>
  30. export default {
  31. data() {
  32. return {
  33. autoplaymp:true,
  34. urlMP4:'',
  35. muted:true,
  36. }
  37. },
  38. mounted() {
  39. this.urlMP4=uni.getStorageSync('enterpriseurl')
  40. },
  41. methods: {
  42. changvideo(e){
  43. if(e.target.fullScreen==true){
  44. this.muted=false
  45. }else{
  46. this.muted=true
  47. }
  48. e.target.fullScreen
  49. },
  50. videoErrorCallback(){
  51. }
  52. }
  53. }
  54. </script>
  55. <style lang="scss" scoped>
  56. .videotop{
  57. width: 100%;
  58. }
  59. .comedetail{
  60. background-color: #018C39;
  61. width: 80%;
  62. height: 60rpx;
  63. color: #fff;
  64. margin: 0 auto;
  65. text-align: center;
  66. line-height: 60rpx;
  67. border-radius: 60rpx;
  68. margin-top: 30rpx;
  69. }
  70. </style>