viewrecord.vue 5.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215
  1. <template>
  2. <view class="pages">
  3. <u-navbar
  4. title="观看记录"
  5. :placeholder="true"
  6. :autoBack="false"
  7. @leftClick="leftClick"
  8. :safeAreaInsetTop="true"
  9. >
  10. </u-navbar>
  11. <view class="page-wrap">
  12. <mescroll-body class="" ref="mescrollRef" @init="mescrollInit" @down="downCallback" @up="upCallback" :up="upOption">
  13. <!-- :down="downOption" :up="upOption" -->
  14. <view class="list">
  15. <view v-for="(item,index) in dataList" class="item u-flex" :class="{ show: show }" @click="itemClick(item)" :key="item.id">
  16. <view class="text">
  17. <view class="title u-line-1">{{ item.title }}</view>
  18. <view class="con u-line-2">{{ item.centent }}</view>
  19. <view class="time">{{ $u.timeFormat(item.onlineTime, 'yyyy-mm-dd') }}</view>
  20. </view>
  21. <image class="img" :src="item.mainImg||staticUrl+'/img/newsdetails-banner.png'" mode=""></image>
  22. </view>
  23. </view>
  24. </mescroll-body>
  25. </view>
  26. </view>
  27. </template>
  28. <script>
  29. // 引入mescroll-mixins.js
  30. import MescrollMixin from "@/uni_modules/mescroll-uni/components/mescroll-uni/mescroll-mixins.js";
  31. export default {
  32. mixins: [MescrollMixin], // 使用mixin
  33. components: {
  34. },
  35. data() {
  36. return {
  37. staticUrl:this.$commonConfig.staticUrl,
  38. // // 下拉刷新的配置(可选, 绝大部分情况无需配置)
  39. // downOption: {
  40. // },
  41. // // 上拉加载的配置(可选, 绝大部分情况无需配置)
  42. upOption: {
  43. page: {
  44. size: 10 // 每页数据的数量,默认10
  45. },
  46. noMoreSize: 5, // 配置列表的总数量要大于等于5条才显示'-- END --'的提示
  47. empty: {
  48. tip: '暂无相关资讯,请重新搜索'
  49. }
  50. },
  51. params:{
  52. keyword:''
  53. },
  54. dataList:[],
  55. observer: null,
  56. show:false,
  57. }
  58. },
  59. onShow() {
  60. },
  61. onLoad() {
  62. this.observer = uni.createIntersectionObserver(this,{observeAll: true});
  63. },
  64. onReady() {
  65. this.observer.relativeToViewport().observe('.item', res => {
  66. if (res.intersectionRatio > 0) {
  67. console.log('resres',res);
  68. // 当元素出现在视口时执行动画
  69. // this.showAnimation(res);
  70. this.show = true;
  71. }
  72. })
  73. },
  74. onUnload() {
  75. if (this.observer) {
  76. this.observer.disconnect()
  77. }
  78. },
  79. methods: {
  80. leftClick(e){
  81. let pages = getCurrentPages();
  82. if(pages.length==1){
  83. uni.$u.route('/pages/index/index')
  84. }else{
  85. uni.navigateBack()
  86. };
  87. },
  88. /*下拉刷新的回调, 重置列表为第一页 (此处可删,mixins已默认)
  89. downCallback(){
  90. this.mescroll.resetUpScroll();
  91. },
  92. /*上拉加载的回调*/
  93. upCallback(page) {
  94. // 此处可以继续请求其他接口
  95. // if(page.num == 1){
  96. // // 请求其他接口...
  97. // }
  98. // 如果希望先请求其他接口,再触发upCallback,可参考以下写法
  99. // if(!this.hasTypeId){
  100. // // this.getid();
  101. // this.mescroll.endErr();//没有接口暂时不调用
  102. // return // 此处return,先获取xx
  103. // }
  104. let pageNum = page.num; // 页码, 默认从1开始
  105. let pageSize = page.size; // 页长, 默认每页10条
  106. let params = {
  107. pageNum : page.num,
  108. pageSize : page.size,
  109. title:this.params.keyword
  110. }
  111. // console.log('this.params',params);
  112. this.$u.api.newsList(params).then(data => {
  113. this.hasfetch = true;
  114. // console.log('data',JSON.parse(JSON.stringify(data)));
  115. // 接口返回的当前页数据列表 (数组)
  116. let curPageData = data.data.rows;
  117. // console.log('curPageData',JSON.parse(JSON.stringify(curPageData)));
  118. // 接口返回的当前页数据长度 (如列表有26个数据,当前页返回8个,则curPageLen=8)
  119. let curPageLen = curPageData.length;
  120. // 接口返回的总页数 (如列表有26个数据,每页10条,共3页; 则totalPage=3)
  121. // let totalPage = data.data.data.totalPage;
  122. // 接口返回的总数据量(如列表有26个数据,每页10条,共3页; 则totalSize=26)
  123. let totalSize = data.data.total;
  124. // 接口返回的是否有下一页 (true/false)
  125. // let hasNext = data.xxx;
  126. // console.log('totalPage',totalPage,'curPageLen',curPageLen);
  127. //设置列表数据
  128. if(page.num == 1) this.dataList = []; //如果是第一页需手动置空列表
  129. this.dataList = this.dataList.concat(curPageData); //追加新数据
  130. // 请求成功,隐藏加载状态
  131. //方法一(推荐): 后台接口有返回列表的总页数 totalPage
  132. // this.mescroll.endByPage(curPageLen, totalPage);
  133. //方法二(推荐): 后台接口有返回列表的总数据量 totalSize
  134. this.mescroll.endBySize(curPageLen, totalSize);
  135. }).catch(err => {
  136. this.mescroll.endErr()
  137. console.log(err)
  138. });
  139. },
  140. /*若希望重新加载列表,只需调用此方法即可(内部会自动page.num=1,再主动触发up.callback)*/
  141. reloadList() {
  142. this.mescroll.resetUpScroll();
  143. },
  144. search(e){
  145. this.reloadList();
  146. },
  147. itemClick(item){
  148. // console.log('itemClick',item);
  149. uni.$u.route('/pages/newsdetails', {
  150. id: item.id,
  151. type:'news'
  152. });
  153. }
  154. }
  155. }
  156. </script>
  157. <style>
  158. page{
  159. background-color: #F9FAFD;
  160. }
  161. </style>
  162. <style lang="scss" scoped>
  163. .search-wrap{
  164. padding: 20rpx 34rpx;
  165. }
  166. .list{
  167. .item{
  168. &.show{
  169. animation: slide-top 0.5s cubic-bezier(0.250, 0.460, 0.450, 0.940) both;
  170. }
  171. background-color: #fff;
  172. border-radius: 24rpx;
  173. margin-bottom: 24rpx;
  174. overflow: hidden;
  175. .img{
  176. border-radius: 12rpx;
  177. width: 220rpx;
  178. height: 200rpx;
  179. }
  180. .text{
  181. height: 200rpx;
  182. box-sizing: border-box;
  183. padding:24rpx 28rpx;
  184. flex: 1;
  185. .title{
  186. font-size: 28rpx;
  187. font-weight: bold;
  188. color: #333333;
  189. margin-bottom: 16rpx;
  190. }
  191. .con{
  192. font-size: 24rpx;
  193. font-weight: 400;
  194. color: #6B6B6B;
  195. line-height: 36rpx;
  196. margin-bottom: 20rpx;
  197. }
  198. .time{
  199. font-size: 20rpx;
  200. font-weight: 400;
  201. color: #C0C0C0;
  202. line-height: 22rpx;
  203. }
  204. }
  205. }
  206. }
  207. </style>