videoList.vue 2.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115
  1. <template>
  2. <view>
  3. <view class="" style="padding: 20rpx 30rpx;">
  4. <u--input
  5. placeholder="输入关键词查询"
  6. border="surround"
  7. v-model="value"
  8. @confirm="confirm"
  9. confirm-type="search"
  10. clearable
  11. shape="circle"
  12. prefixIcon="search"
  13. prefixIconStyle="font-size: 22px;color: #909399"
  14. ></u--input>
  15. </view>
  16. <view class="videoContent">
  17. <view class="videoItem u-flex" v-for="(item,index) in video" :key="index" @click="toinfo(item)">
  18. <view class="time">{{item.video_time}}</view>
  19. <image :src="item.show_image" mode=""></image>
  20. <view class="">
  21. <view class="name">
  22. {{item.title}}
  23. </view>
  24. <view class="" style="font-size: 20rpx;color: #999999;margin-top: 40rpx;">
  25. {{item.create_at}}
  26. </view>
  27. </view>
  28. </view>
  29. </view>
  30. </view>
  31. </template>
  32. <script>
  33. export default {
  34. onLoad() {
  35. this.getList()
  36. },
  37. onReachBottom() {
  38. this.page++
  39. this.getList()
  40. },
  41. data() {
  42. return {
  43. title:'',
  44. value: '',
  45. page:1,
  46. video:[]
  47. }
  48. },
  49. methods: {
  50. toinfo(item){
  51. uni.navigateTo({
  52. url:'./videoInfo?item='+JSON.stringify(item)
  53. })
  54. },
  55. getList(){
  56. uni.$u.http.post('/api/Index/videolist',{page:this.page,title:this.title}).then(res => {
  57. if(this.page==1){
  58. this.video=res.data.data
  59. }else{
  60. this.video=[...this.video,...res.data.data]
  61. }
  62. })
  63. },
  64. confirm(e){
  65. this.page=1
  66. this.title=e
  67. this.getList()
  68. },
  69. }
  70. }
  71. </script>
  72. <style lang="scss">
  73. .videoContent{
  74. padding: 0 30rpx;
  75. margin-top: 22rpx;
  76. .videoItem{
  77. position: relative;
  78. padding-bottom: 24rpx;
  79. border-bottom: 2rpx solid #F3F3F3;
  80. // height: 280rpx;
  81. background: #FFFFFF;
  82. border-radius: 16rpx;
  83. image{
  84. border-radius: 16rpx;
  85. width: 304rpx;
  86. height: 172rpx;
  87. margin-right: 20rpx;
  88. }
  89. .name{
  90. box-sizing: border-box;
  91. font-size: 30rpx;
  92. color: #222222;
  93. font-weight: 400;
  94. }
  95. .time{
  96. position: absolute;
  97. top: 124rpx;
  98. left: 220rpx;
  99. color: #fff;
  100. width: 64rpx;
  101. height: 28rpx;
  102. line-height: 28rpx;
  103. text-align: center;
  104. font-size: 20rpx;
  105. background: rgba(0,0,0,0.4000);
  106. border-radius: 16rpx;
  107. z-index: 1;
  108. }
  109. }
  110. }
  111. </style>