chemicalsInstructionsVideo.vue 914 B

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253
  1. <template>
  2. <view id="chemicalsInstructionsVideo">
  3. <web-view :src="webViewUrl" v-if="pageType"></web-view>
  4. </view>
  5. </template>
  6. <script>
  7. export default {
  8. name: "chemicalsInstructionsVideo",
  9. data() {
  10. return {
  11. }
  12. },
  13. onLoad(option) {
  14. let url = 'https://labcontrol.nwafu.edu.cn/stream/#/?chemicalsInstructionsVideo'
  15. this.$set(this,'webViewUrl',url);
  16. this.$set(this,'pageType',true);
  17. },
  18. mounted() {
  19. },
  20. methods: {
  21. },
  22. }
  23. </script>
  24. <style lang="stylus" scoped>
  25. #chemicalsInstructionsVideo {
  26. background-color: #EBEBEB;
  27. padding:40rpx 0;
  28. .max-big-video-box{
  29. width:690rpx;
  30. margin:0 30rpx 40rpx;
  31. background-color: #fff;
  32. border-radius:20rpx;
  33. overflow: hidden;
  34. .video-box{
  35. width:690rpx;
  36. height:300rpx;
  37. }
  38. .video-title-p{
  39. height:76rpx;
  40. line-height:70rpx;
  41. font-size:30rpx;
  42. color:#333;
  43. padding-left:20rpx;
  44. }
  45. }
  46. }
  47. </style>