chemicalsInstructionsVideo.vue 1.6 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970
  1. <template>
  2. <view id="chemicalsInstructionsVideo">
  3. <view class="max-big-video-box">
  4. <video class="video-box"
  5. src="https://labcontrol.nwafu.edu.cn//statics/2025/03/21/a367d265-c780-4e8e-a137-95524368beec.mp4"></video>
  6. <view class="video-title-p">化学品存储</view>
  7. </view>
  8. <view class="max-big-video-box">
  9. <video class="video-box"
  10. src="https://labcontrol.nwafu.edu.cn//statics/2025/03/21/24b9d6fd-d158-4405-bae2-575ad066da34.mp4"></video>
  11. <view class="video-title-p">化学品领用</view>
  12. </view>
  13. <view class="max-big-video-box">
  14. <video class="video-box"
  15. src="https://labcontrol.nwafu.edu.cn//statics/2025/03/21/1102689d-51ae-40e9-83df-60dddb08d8ce.mp4"></video>
  16. <view class="video-title-p">化学品归还</view>
  17. </view>
  18. <view class="max-big-video-box">
  19. <video class="video-box"
  20. src="https://labcontrol.nwafu.edu.cn//statics/2025/03/21/02e4d8b8-ea65-4c36-ad33-00a334a834ed.mp4"></video>
  21. <view class="video-title-p">化学品废弃</view>
  22. </view>
  23. </view>
  24. </template>
  25. <script>
  26. export default {
  27. name: "chemicalsInstructionsVideo",
  28. data() {
  29. return {
  30. }
  31. },
  32. onLoad(option) {
  33. },
  34. mounted() {
  35. },
  36. methods: {
  37. },
  38. }
  39. </script>
  40. <style lang="stylus" scoped>
  41. #chemicalsInstructionsVideo {
  42. background-color: #EBEBEB;
  43. padding:40rpx 0;
  44. .max-big-video-box{
  45. width:690rpx;
  46. margin:0 30rpx 40rpx;
  47. background-color: #fff;
  48. border-radius:20rpx;
  49. overflow: hidden;
  50. .video-box{
  51. width:690rpx;
  52. height:300rpx;
  53. }
  54. .video-title-p{
  55. height:76rpx;
  56. line-height:70rpx;
  57. font-size:30rpx;
  58. color:#333;
  59. padding-left:20rpx;
  60. }
  61. }
  62. }
  63. </style>