cooperation.vue 931 B

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354
  1. <template>
  2. <view class="pages">
  3. <u-navbar
  4. title="合作加盟"
  5. :autoBack="true"
  6. :safeAreaInsetTop="true"
  7. >
  8. </u-navbar>
  9. <view class="page-bg">
  10. <img class="img" :src="staticUrl+'/img/cooperation-bg.png'" alt="">
  11. </view>
  12. <view class="page-wrap">
  13. <view class="video-wrap">
  14. <video
  15. id="video"
  16. src="http://dl1.gj3.wangyuan.com/downloader/20180817/zhkokrbt/gjqt3_03.mp4"
  17. poster="http://i1.gbimg.cn/zt/2018/04/20/gjqt3x2018y20m/myc36x/images/yl/img1.jpg"
  18. controls playsinline loop>
  19. </video>
  20. </view>
  21. </view>
  22. </view>
  23. </template>
  24. <script>
  25. export default {
  26. data() {
  27. return {
  28. staticUrl:this.$commonConfig.staticUrl,
  29. }
  30. },
  31. onShow() {
  32. },
  33. onLoad() {
  34. },
  35. methods: {
  36. }
  37. }
  38. </script>
  39. <style lang="scss" scoped>
  40. .video-wrap{
  41. overflow: hidden;
  42. border-radius: 20rpx;
  43. text-align: center;
  44. margin-bottom: 50rpx;
  45. #video{
  46. width: 100%;
  47. }
  48. }
  49. </style>