howOpera.vue 574 B

123456789101112131415161718192021222324252627282930313233343536
  1. <template>
  2. <view>
  3. <custom-nav :title="pageTitle"></custom-nav>
  4. <view class="video">
  5. <view class="intr">如何上传图片</view>
  6. <video src="https://api.jiuweiyun.cn/public/uploads/operation.mp4" controls></video>
  7. </view>
  8. </view>
  9. </template>
  10. <script>
  11. export default {
  12. data() {
  13. return {
  14. pageTitle: '如何操作'
  15. };
  16. }
  17. };
  18. </script>
  19. <style lang="scss">
  20. .video {
  21. margin-top: 150rpx;
  22. video {
  23. width: 100%;
  24. margin-top: 50rpx;
  25. }
  26. .intr {
  27. width: 100%;
  28. padding: 30rpx 0;
  29. text-align: center;
  30. font-weight: bold;
  31. font-size: 36rpx;
  32. }
  33. }
  34. </style>