12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970 |
- <!-- 亚健康对症视频讲解 -->
- <template>
- <view class="wrap">
- <view class="list">
- <view class="item">
- <view class="name">
- 乏力没精神容易疲劳是什么原因?
- </view>
- <video id="myVideo"
- src="http://wxsnsdy.tc.qq.com/105/20210/snsdyvideodownload?filekey=30280201010421301f0201690402534804102ca905ce620b1241b726bc41dcff44e00204012882540400&bizid=1023&hy=SH&fileparam=302c020101042530230204136ffd93020457e3c4ff02024ef202031e8d7f02030f42400204045a320a0201000400"
- enable-danmu controls style="width: 100%;height: 262rpx;border-radius: 10rpx;"></video>
- <view class="row-between">
- <view class="row-left">
- 熊猫指南转载 <text>1小时前</text>
- </view>
- <view class="row-right">
- <text>3.2万人浏览</text>
- <button type="default">
- <image src="../../../static/icon-8.png" mode="widthFix"></image>
- </button>
- <button type="default">
- <image :src="collect ? '../../../static/heart-active.png' : '../../../static/heart.png'"
- mode="widthFix"></image>
- </button>
- </view>
- </view>
- </view>
- <view class="item">
- <view class="name">
- 乏力没精神容易疲劳是什么原因?
- </view>
- <video id="myVideo"
- src="http://wxsnsdy.tc.qq.com/105/20210/snsdyvideodownload?filekey=30280201010421301f0201690402534804102ca905ce620b1241b726bc41dcff44e00204012882540400&bizid=1023&hy=SH&fileparam=302c020101042530230204136ffd93020457e3c4ff02024ef202031e8d7f02030f42400204045a320a0201000400"
- enable-danmu controls style="width: 100%;height: 262rpx;border-radius: 10rpx;"></video>
- <view class="row-between">
- <view class="row-left">
- 熊猫指南转载 <text>1小时前</text>
- </view>
- <view class="row-right">
- <text>3.2万人浏览</text>
- <button type="default">
- <image src="../../../static/icon-8.png" mode="widthFix"></image>
- </button>
- <button type="default">
- <image :src="collect ? '../../../static/heart-active.png' : '../../../static/heart.png'"
- mode="widthFix"></image>
- </button>
- </view>
- </view>
- </view>
- </view>
- </view>
- </template>
- <script>
- export default {
- data() {
- return {
- collect:true
- }
- },
- methods: {
- }
- }
- </script>
- <style scoped lang="scss">
- @import "./health-symptomatic-video-explain.css";
- </style>
|