news.vue 6.1 KB

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