vipBenefit.vue 2.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778
  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" @click="nato('/pages_index/index/doctorArticleList?cateId=6&title=诚信之旅')">
  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. nato(url){
  53. uni.navigateTo({
  54. url:url
  55. })
  56. }
  57. }
  58. }
  59. </script>
  60. <style lang="scss" scoped>
  61. .videotop{
  62. width: 100%;
  63. }
  64. .comedetail{
  65. background-color: #018C39;
  66. width: 80%;
  67. height: 60rpx;
  68. color: #fff;
  69. margin: 0 auto;
  70. text-align: center;
  71. line-height: 60rpx;
  72. border-radius: 60rpx;
  73. margin-top: 30rpx;
  74. }
  75. </style>