topTab.vue 6.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370
  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. <!-- tab -->
  19. <view class="scrollBg">
  20. <scroll-view scroll-x="true" @scroll="scroll">
  21. <view class="tabBg">
  22. <view v-for="(item,index) in bannerArr" :key="index" @click="tabClick(index)">
  23. <view class="tabTitle" :class="{tabActive:tabIndex==index}">{{item.name}}</view>
  24. </view>
  25. </view>
  26. </scroll-view>
  27. </view>
  28. </view>
  29. <!-- item -->
  30. <view class="itemBg">
  31. <view v-for="(item,index) in itemArr" :key="index" class="twoItem" @click="goList(item)">
  32. <image :src="item.LogoImg" mode="" class="img2"></image>
  33. <view class="rightItem">
  34. <view class="title">{{item.Title}}</view>
  35. <view class="title2">{{item.Comment}}</view>
  36. </view>
  37. </view>
  38. </view>
  39. <!-- 上拉 加载更多 -->
  40. <view class="noMore" v-if="noMoreShow">没有更多数据</view>
  41. <!-- 无数据空白页 -->
  42. <nodata v-if="itemArr.length==0"></nodata>
  43. </view>
  44. </template>
  45. <script>
  46. import nodata from '../../components/nodata/nodata.vue'
  47. export default {
  48. components: {
  49. nodata,
  50. },
  51. data() {
  52. return {
  53. topName: '',
  54. topCode: '',
  55. comment: '',
  56. page: 1,
  57. bannerArr: [],
  58. scrollTop: 0,
  59. old: {
  60. scrollTop: 0
  61. },
  62. itemArr: [],
  63. tabIndex: 0,
  64. noMoreShow: false,
  65. }
  66. },
  67. onLoad(opt) {
  68. this.topName = opt.topName
  69. this.topCode = opt.topCode
  70. this.comment = opt.comment.length > 0 ? opt.comment : '暂无'
  71. this.page = 1
  72. this.getItemData()
  73. // uni.setNavigationBarTitle({
  74. // title: this.topName
  75. // })
  76. },
  77. methods: {
  78. goList(item){
  79. // 1分类2文章
  80. if (item.Type == 1) {
  81. uni.navigateTo({
  82. url:'list?topCode=' + item.Code + '&comment=' + item.Comment + '&topName=' + item.Name
  83. })
  84. }
  85. if (item.Type == 2) {
  86. uni.navigateTo({
  87. url:'detail?id=' + item.ID
  88. })
  89. }
  90. },
  91. getItemData() {
  92. uni.showLoading({
  93. title: '加载中'
  94. })
  95. let parentCode;
  96. if (this.tabIndex == 0) {
  97. parentCode = this.topCode
  98. } else {
  99. parentCode = this.bannerArr[this.tabIndex].code
  100. }
  101. let url = '/trainingOpenApi/categoryPageData',
  102. params = {
  103. page: this.page,
  104. limit: 10,
  105. parentCode: parentCode,
  106. topCode: this.topCode
  107. }
  108. this.$http(url, params, 'GET').then(res => {
  109. uni.hideLoading();
  110. var data = res.data
  111. // 处理 undefined和null转为空白字符串
  112. for (const key in data) {
  113. data[key] = this.$praseStrEmpty(data[key])
  114. }
  115. if (this.page == 1) {
  116. this.itemArr = data.Items
  117. } else {
  118. this.itemArr = this.itemArr.concat(data.Items)
  119. }
  120. if (data.Items.length < 10) {
  121. this.noMoreShow = true
  122. } else {
  123. this.noMoreShow = false
  124. }
  125. if (this.itemArr.length == 0) {
  126. this.noMoreShow = false
  127. }
  128. this.bannerArr = data.dynamicCol
  129. let dic = {
  130. code: this.topCode,
  131. name: '全部',
  132. }
  133. if (this.bannerArr.length != 0) {
  134. this.bannerArr.splice(0, 0, dic)
  135. }
  136. })
  137. },
  138. goSearch() {
  139. uni.navigateTo({
  140. url: 'search'
  141. })
  142. },
  143. back() {
  144. uni.navigateBack({
  145. })
  146. },
  147. scroll: function(e) {
  148. console.log(e)
  149. this.old.scrollTop = e.detail.scrollTop
  150. },
  151. tabClick(num) {
  152. this.tabIndex = num;
  153. this.page = 1;
  154. this.getItemData()
  155. },
  156. // 下拉刷新 上拉加载更多
  157. onPullDownRefresh() {
  158. this.page = 1;
  159. this.getItemData()
  160. // this.getDetailData()
  161. setTimeout(function() {
  162. uni.stopPullDownRefresh();
  163. }, 1000);
  164. },
  165. onReachBottom() {
  166. this.page++;
  167. this.getItemData()
  168. }
  169. }
  170. }
  171. </script>
  172. <style scoped>
  173. .content {
  174. min-height: 100vh;
  175. background-color: #FFFFFF;
  176. padding-top: 88rpx;
  177. padding-bottom: 20rpx;
  178. }
  179. .nav {
  180. position: fixed;
  181. left: 0;
  182. top: 0;
  183. width: 100vw;
  184. height: 88rpx;
  185. background-color: #FFFFFF;
  186. display: flex;
  187. justify-content: space-between;
  188. align-items: center;
  189. z-index: 999;
  190. border-bottom: #eeeeee 2rpx solid;
  191. }
  192. .navTitle {
  193. font-size: 36rpx;
  194. font-weight: bold;
  195. color: #3c3c3c;
  196. }
  197. .leftView {
  198. width: 30%;
  199. }
  200. .rightView {
  201. width: 30%;
  202. display: flex;
  203. justify-content: flex-end;
  204. padding-right: 24rpx;
  205. }
  206. .rightImg {
  207. width: 40rpx;
  208. height: 40rpx;
  209. }
  210. .commend {
  211. position: fixed;
  212. left: 0;
  213. top: 90rpx;
  214. width: calc(100vw - 50rpx);
  215. background-color: #FFFFFF;
  216. padding: 0 25rpx 30rpx;
  217. z-index: 999;
  218. height: 220rpx;
  219. }
  220. .top {
  221. padding-top: 40rpx;
  222. text-align: center;
  223. height: 80rpx;
  224. color: #999999;
  225. font-size: 24rpx;
  226. //超过固定行数 隐藏
  227. display: -webkit-box;
  228. overflow: hidden;
  229. text-overflow: ellipsis;
  230. word-wrap: break-word;
  231. white-space: normal !important;
  232. -webkit-line-clamp: 2;
  233. -webkit-box-orient: vertical;
  234. line-height: 20px;
  235. margin-bottom: 20rpx;
  236. }
  237. .scrollBg {
  238. background-color: #FFFFFF;
  239. }
  240. .scroll-view {
  241. white-space: nowrap;
  242. }
  243. .tabBg {
  244. display: flex;
  245. margin-top: 0;
  246. margin-bottom: 0;
  247. }
  248. .tabTitle {
  249. margin-right: 60rpx;
  250. font-size: 30rpx;
  251. color: #3c3c3c;
  252. text-overflow: ellipsis;
  253. white-space: nowrap;
  254. height: 60rpx;
  255. line-height: 60rpx;
  256. }
  257. .tabActive {
  258. color: #FF4F00;
  259. }
  260. .itemBg {
  261. background-color: #FFFFFF;
  262. padding: 220rpx 25rpx 30rpx;
  263. }
  264. .twoItem {
  265. display: flex;
  266. background-color: #FFFFFF;
  267. padding: 30rpx 0;
  268. border-top: #eeeeee 2rpx solid;
  269. }
  270. .title {
  271. font-size: 28rpx;
  272. font-weight: bold;
  273. color: #3c3c3c;
  274. }
  275. .title2 {
  276. font-size: 24rpx;
  277. font-weight: bold;
  278. color: #999999;
  279. //超过固定行数 隐藏
  280. display: -webkit-box;
  281. overflow: hidden;
  282. text-overflow: ellipsis;
  283. word-wrap: break-word;
  284. white-space: normal !important;
  285. -webkit-line-clamp: 3;
  286. -webkit-box-orient: vertical;
  287. }
  288. .img2 {
  289. width: 240rpx;
  290. height: 160rpx;
  291. border-radius: 10rpx;
  292. }
  293. .rightItem {
  294. margin-left: 30rpx;
  295. width: calc(100vw - 300rpx);
  296. }
  297. .noMore {
  298. text-align: center;
  299. line-height: 50rpx;
  300. color: #999999;
  301. font-size: 28rpx;
  302. }
  303. </style>