list.vue 5.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289
  1. <template>
  2. <view class="content">
  3. <!-- 导航 -->
  4. <view class="nav">
  5. <view class="leftView" @click="back">
  6. <image src="../../static/mobile/backBtn.png" mode=""
  7. style="width: 22rpx; height: 40rpx; padding-left: 24rpx;"></image>
  8. </view>
  9. <view class="navTitle">{{topName}}</view>
  10. <view class="rightView">
  11. <image src="../../static/mobile/icon_search@2x.png" mode="" class="rightImg" style="margin-left: 40rpx;"
  12. @click="goSearch"></image>
  13. </view>
  14. </view>
  15. <!-- content -->
  16. <view class="commend">
  17. <view class="top">{{comment}}</view>
  18. </view>
  19. <!-- item -->
  20. <view class="itemBg">
  21. <view v-for="(item,index) in itemArr" :key="index" class="twoItem">
  22. <image :src="item.LogoImg" mode="" class="img2"></image>
  23. <view class="rightItem">
  24. <view class="title">{{item.Title}}</view>
  25. <view class="title2">{{item.Comment}}</view>
  26. </view>
  27. </view>
  28. </view>
  29. <!-- 上拉 加载更多 -->
  30. <view class="noMore" v-if="noMoreShow">没有更多数据</view>
  31. <!-- 无数据空白页 -->
  32. <nodata v-if="itemArr.length==0"></nodata>
  33. </view>
  34. </template>
  35. <script>
  36. import nodata from '../../components/nodata/nodata.vue'
  37. export default {
  38. components: {
  39. nodata,
  40. },
  41. data() {
  42. return {
  43. topName: '',
  44. topCode: '',
  45. comment: '',
  46. page: 1,
  47. itemArr: [],
  48. noMoreShow: false,
  49. }
  50. },
  51. onLoad(opt) {
  52. console.log('opt',opt);
  53. this.topName = opt.topName
  54. this.topCode = opt.topCode
  55. this.comment = opt.comment
  56. this.page = 1
  57. this.getItemData()
  58. // uni.setNavigationBarTitle({
  59. // title: this.topName
  60. // })
  61. },
  62. methods: {
  63. getItemData() {
  64. uni.showLoading({
  65. title: '加载中'
  66. })
  67. let url = 'trainingOpenApi/groupPageData',
  68. params = {
  69. page: this.page,
  70. limit: 10,
  71. parentCode: this.topCode,
  72. }
  73. this.$http(url, params, 'GET').then(res => {
  74. uni.hideLoading();
  75. var data = res.data
  76. // 处理 undefined和null转为空白字符串
  77. for (const key in data) {
  78. data[key] = this.$praseStrEmpty(data[key])
  79. }
  80. if (this.page == 1) {
  81. this.itemArr = data.Items
  82. } else {
  83. this.itemArr = this.itemArr.concat(data.Items)
  84. }
  85. if (data.Items.length < 10) {
  86. this.noMoreShow = true
  87. } else {
  88. this.noMoreShow = false
  89. }
  90. if (this.itemArr.length == 0) {
  91. this.noMoreShow = false
  92. }
  93. })
  94. },
  95. goSearch() {
  96. uni.navigateTo({
  97. url: 'search'
  98. })
  99. },
  100. back() {
  101. uni.navigateBack({
  102. })
  103. },
  104. // 下拉刷新 上拉加载更多
  105. onPullDownRefresh() {
  106. this.page = 1;
  107. this.getItemData()
  108. // this.getDetailData()
  109. setTimeout(function() {
  110. uni.stopPullDownRefresh();
  111. }, 1000);
  112. },
  113. onReachBottom() {
  114. this.page++;
  115. this.getItemData()
  116. }
  117. }
  118. }
  119. </script>
  120. <style scoped>
  121. .content {
  122. min-height: 100vh;
  123. background-color: #FFFFFF;
  124. padding-top: 88rpx;
  125. padding-bottom: 20rpx;
  126. }
  127. .nav {
  128. position: fixed;
  129. left: 0;
  130. top: 0;
  131. width: 100vw;
  132. height: 88rpx;
  133. background-color: #FFFFFF;
  134. display: flex;
  135. justify-content: space-between;
  136. align-items: center;
  137. z-index: 999;
  138. border-bottom: #eeeeee 2rpx solid;
  139. }
  140. .navTitle {
  141. font-size: 36rpx;
  142. font-weight: bold;
  143. color: #3c3c3c;
  144. }
  145. .leftView {
  146. width: 30%;
  147. }
  148. .rightView {
  149. width: 30%;
  150. display: flex;
  151. justify-content: flex-end;
  152. padding-right: 24rpx;
  153. }
  154. .rightImg {
  155. width: 40rpx;
  156. height: 40rpx;
  157. }
  158. .commend {
  159. position: fixed;
  160. left: 0;
  161. top: 90rpx;
  162. width: calc(100vw - 50rpx);
  163. background-color: #FFFFFF;
  164. padding: 0 25rpx 30rpx;
  165. z-index: 999;
  166. height: 130rpx;
  167. }
  168. .top {
  169. padding: 40rpx 0;
  170. text-align: center;
  171. height: 80rpx;
  172. color: #999999;
  173. font-size: 24rpx;
  174. //超过固定行数 隐藏
  175. display: -webkit-box;
  176. overflow: hidden;
  177. text-overflow: ellipsis;
  178. word-wrap: break-word;
  179. white-space: normal !important;
  180. -webkit-line-clamp: 3;
  181. -webkit-box-orient: vertical;
  182. }
  183. .itemBg {
  184. background-color: #FFFFFF;
  185. padding: 160rpx 25rpx 30rpx;
  186. }
  187. .twoItem {
  188. display: flex;
  189. background-color: #FFFFFF;
  190. padding: 30rpx 0;
  191. border-top: #eeeeee 2rpx solid;
  192. }
  193. .title {
  194. font-size: 28rpx;
  195. font-weight: bold;
  196. color: #3c3c3c;
  197. }
  198. .title2 {
  199. font-size: 24rpx;
  200. font-weight: bold;
  201. color: #999999;
  202. //超过固定行数 隐藏
  203. display: -webkit-box;
  204. overflow: hidden;
  205. text-overflow: ellipsis;
  206. word-wrap: break-word;
  207. white-space: normal !important;
  208. -webkit-line-clamp: 3;
  209. -webkit-box-orient: vertical;
  210. }
  211. .img2 {
  212. width: 240rpx;
  213. height: 160rpx;
  214. }
  215. .rightItem {
  216. margin-left: 30rpx;
  217. width: calc(100vw - 300rpx);
  218. }
  219. .noMore {
  220. text-align: center;
  221. line-height: 50rpx;
  222. color: #999999;
  223. font-size: 28rpx;
  224. }
  225. </style>