instructionsVideo.vue 1.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081
  1. <template>
  2. <view class="instructions">
  3. <commons-header title='视频说明书'></commons-header>
  4. <video class="video-view" src="./1.mp4"></video>
  5. <view class="content-title">
  6. <h2>Smt-2201 针筒注塑机使用说明书</h2>
  7. <p><span>20220-09-22</span><span style="margin-left:20rpx">已播放(266)</span></p>
  8. </view>
  9. <view class="content">
  10. <view class="title">
  11. SMARTELL TECHNOLOGY CO.,LTD
  12. </view>
  13. <h3>1. Clamping Unit</h3>
  14. <p>Reliable 5-pint twin-toggle locking
  15. mechanism; Platens are designed under FiniteElement Analysis; High speed clamping is stable
  16. while low pressure protection is accurate;
  17. Automatic lubrication system; Oil shortage alarm;
  18. Ejector stroke precisely controlled by transducer;
  19. Plenty of ejector modes for you to choose.</p>
  20. <image src="../../static/img_jq.png" mode=""></image>
  21. <h3>2. Injection Unit</h3>
  22. <p>Double-cylinder balance injection system;
  23. Shot weight is precisely controlled by transducer;
  24. Using hydraulic motor to carry out variable speed.</p>
  25. </view>
  26. </view>
  27. </template>
  28. <script>
  29. import commonsHeader from '../../components/commons-header/index.vue'
  30. export default {
  31. components: {
  32. commonsHeader
  33. },
  34. }
  35. </script>
  36. <style lang="less" scoped>
  37. .instructions {
  38. margin-top: 120rpx;
  39. .content{
  40. padding: 0 40rpx 20rpx;
  41. .title{
  42. height: 120rpx;
  43. line-height: 120rpx;
  44. text-align: center;
  45. color: #333;
  46. font-size: 32rpx;
  47. }
  48. p{
  49. text-decoration: 2em;
  50. font-size: 24rpx;
  51. margin-top: 20rpx;
  52. }
  53. h3{
  54. font-size: 28rpx;
  55. }
  56. }
  57. .content-title{
  58. height: 160rpx;
  59. padding: 34rpx 22rpx;
  60. border-bottom: 20rpx solid #f1f1f1;
  61. box-sizing: border-box;
  62. h2{
  63. font-size: 32rpx;
  64. color: #333;
  65. margin-bottom: 10rpx;
  66. }
  67. p{
  68. color: #999999;
  69. font-size: 24rpx;
  70. }
  71. }
  72. .video-view {
  73. width: 100%;
  74. }
  75. }
  76. </style>