ty-video.vue 1.8 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697
  1. <template>
  2. <view class="page5 u-flex u-row-between">
  3. <view class="item" v-for="(item,index) in videolist" :key="index" @click="tovideoinfo(item.id)">
  4. <image :src="item.image" style="width: 334rpx;height: 204rpx;" mode=""></image>
  5. <view class="title u-line-1">{{item.title}}</view>
  6. <view class="write">{{item.lecturer}}</view>
  7. <view class="money">¥{{item.price}}</view>
  8. </view>
  9. </view>
  10. </template>
  11. <script>
  12. export default {
  13. name: "ty-video",
  14. data() {
  15. return {
  16. page: 1,
  17. total: 0,
  18. videolist: [],
  19. keywords: '',
  20. };
  21. },
  22. onPullDownRefresh() {
  23. if (this.videolist.length < this.total) {
  24. this.page++
  25. this.getVideoList()
  26. }
  27. },
  28. created() {
  29. this.getVideoList()
  30. },
  31. methods: {
  32. //获取视频列表
  33. getVideoList() {
  34. this.$u.post('api/video/getVideoList', {
  35. page: this.page,
  36. limit: 10,
  37. keywords: this.keywords,
  38. }).then(res => {
  39. console.log('video', res);
  40. if (this.page == 1) {
  41. this.videolist = res.data.data
  42. } else {
  43. this.videolist.concat(res.data.data)
  44. }
  45. })
  46. },
  47. tovideoinfo(id){
  48. uni.navigateTo({
  49. url:'/pages/index/video?id='+id
  50. })
  51. }
  52. }
  53. }
  54. </script>
  55. <style lang="scss" scoped>
  56. .item {
  57. margin-top: 24rpx;
  58. }
  59. .page5 {
  60. width: 750rpx;
  61. // min-height: 70vh;
  62. background: #FFFFFF;
  63. border-radius: 28rpx 28rpx 0rpx 0rpx;
  64. padding: 8rpx 28rpx 34rpx;
  65. flex-wrap: wrap;
  66. align-content: flex-start;
  67. }
  68. .title {
  69. font-size: 28rpx;
  70. font-family: PingFangSC, PingFang SC;
  71. font-weight: 500;
  72. color: #333333;
  73. width: 330rpx;
  74. height: 40rpx;
  75. margin-top: 20rpx;
  76. }
  77. .write {
  78. font-size: 24rpx;
  79. font-family: PingFangSC, PingFang SC;
  80. font-weight: 400;
  81. color: #444444;
  82. margin-top: 8rpx;
  83. }
  84. .money {
  85. font-size: 28rpx;
  86. font-family: SFPro, SFPro;
  87. font-weight: 500;
  88. color: #CC3300;
  89. margin-top: 12rpx;
  90. }
  91. </style>