health-symptomatic-video-explain.vue 2.4 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970
  1. <!-- 亚健康对症视频讲解 -->
  2. <template>
  3. <view class="wrap">
  4. <view class="list">
  5. <view class="item">
  6. <view class="name">
  7. 乏力没精神容易疲劳是什么原因?
  8. </view>
  9. <video id="myVideo"
  10. src="http://wxsnsdy.tc.qq.com/105/20210/snsdyvideodownload?filekey=30280201010421301f0201690402534804102ca905ce620b1241b726bc41dcff44e00204012882540400&bizid=1023&hy=SH&fileparam=302c020101042530230204136ffd93020457e3c4ff02024ef202031e8d7f02030f42400204045a320a0201000400"
  11. enable-danmu controls style="width: 100%;height: 262rpx;border-radius: 10rpx;"></video>
  12. <view class="row-between">
  13. <view class="row-left">
  14. 熊猫指南转载 <text>1小时前</text>
  15. </view>
  16. <view class="row-right">
  17. <text>3.2万人浏览</text>
  18. <button type="default">
  19. <image src="../../../static/icon-8.png" mode="widthFix"></image>
  20. </button>
  21. <button type="default">
  22. <image :src="collect ? '../../../static/heart-active.png' : '../../../static/heart.png'"
  23. mode="widthFix"></image>
  24. </button>
  25. </view>
  26. </view>
  27. </view>
  28. <view class="item">
  29. <view class="name">
  30. 乏力没精神容易疲劳是什么原因?
  31. </view>
  32. <video id="myVideo"
  33. src="http://wxsnsdy.tc.qq.com/105/20210/snsdyvideodownload?filekey=30280201010421301f0201690402534804102ca905ce620b1241b726bc41dcff44e00204012882540400&bizid=1023&hy=SH&fileparam=302c020101042530230204136ffd93020457e3c4ff02024ef202031e8d7f02030f42400204045a320a0201000400"
  34. enable-danmu controls style="width: 100%;height: 262rpx;border-radius: 10rpx;"></video>
  35. <view class="row-between">
  36. <view class="row-left">
  37. 熊猫指南转载 <text>1小时前</text>
  38. </view>
  39. <view class="row-right">
  40. <text>3.2万人浏览</text>
  41. <button type="default">
  42. <image src="../../../static/icon-8.png" mode="widthFix"></image>
  43. </button>
  44. <button type="default">
  45. <image :src="collect ? '../../../static/heart-active.png' : '../../../static/heart.png'"
  46. mode="widthFix"></image>
  47. </button>
  48. </view>
  49. </view>
  50. </view>
  51. </view>
  52. </view>
  53. </template>
  54. <script>
  55. export default {
  56. data() {
  57. return {
  58. collect:true
  59. }
  60. },
  61. methods: {
  62. }
  63. }
  64. </script>
  65. <style scoped lang="scss">
  66. @import "./health-symptomatic-video-explain.css";
  67. </style>