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
  71. this.page = 1
  72. this.getItemData()
  73. // uni.setNavigationBarTitle({
  74. // title: this.topName
  75. // })
  76. },
  77. methods: {
  78. goList(item){
  79. uni.navigateTo({
  80. url:'list?topCode=' + item.Code + '&comment=' + item.Comment + '&topName=' + item.Title
  81. })
  82. return;
  83. // 1分类2文章
  84. if (item.type == 1) {
  85. uni.navigateTo({
  86. url:'list?topCode=' + item.Code + '&comment=' + item.Comment + '&topName=' + item.Title
  87. })
  88. }
  89. if (item.type == 2) {
  90. // uni.navigateTo({
  91. // url:''
  92. // })
  93. }
  94. },
  95. getItemData() {
  96. uni.showLoading({
  97. title: '加载中'
  98. })
  99. let parentCode;
  100. if (this.tabIndex == 0) {
  101. parentCode = this.topCode
  102. } else {
  103. parentCode = this.bannerArr[this.tabIndex].code
  104. }
  105. let url = '/trainingOpenApi/categoryPageData',
  106. params = {
  107. page: this.page,
  108. limit: 10,
  109. parentCode: parentCode,
  110. topCode: this.topCode
  111. }
  112. this.$http(url, params, 'GET').then(res => {
  113. uni.hideLoading();
  114. var data = res.data
  115. // 处理 undefined和null转为空白字符串
  116. for (const key in data) {
  117. data[key] = this.$praseStrEmpty(data[key])
  118. }
  119. if (this.page == 1) {
  120. this.itemArr = data.Items
  121. } else {
  122. this.itemArr = this.itemArr.concat(data.Items)
  123. }
  124. if (data.Items.length < 10) {
  125. this.noMoreShow = true
  126. } else {
  127. this.noMoreShow = false
  128. }
  129. if (this.itemArr.length == 0) {
  130. this.noMoreShow = false
  131. }
  132. this.bannerArr = data.dynamicCol
  133. let dic = {
  134. code: this.topCode,
  135. name: '全部',
  136. }
  137. this.bannerArr.splice(0, 0, dic)
  138. })
  139. },
  140. goSearch() {
  141. uni.navigateTo({
  142. url: 'search'
  143. })
  144. },
  145. back() {
  146. uni.navigateBack({
  147. })
  148. },
  149. scroll: function(e) {
  150. console.log(e)
  151. this.old.scrollTop = e.detail.scrollTop
  152. },
  153. tabClick(num) {
  154. this.tabIndex = num;
  155. this.page = 1;
  156. this.getItemData()
  157. },
  158. // 下拉刷新 上拉加载更多
  159. onPullDownRefresh() {
  160. this.page = 1;
  161. this.getItemData()
  162. // this.getDetailData()
  163. setTimeout(function() {
  164. uni.stopPullDownRefresh();
  165. }, 1000);
  166. },
  167. onReachBottom() {
  168. this.page++;
  169. this.getItemData()
  170. }
  171. }
  172. }
  173. </script>
  174. <style scoped>
  175. .content {
  176. min-height: 100vh;
  177. background-color: #FFFFFF;
  178. padding-top: 88rpx;
  179. padding-bottom: 20rpx;
  180. }
  181. .nav {
  182. position: fixed;
  183. left: 0;
  184. top: 0;
  185. width: 100vw;
  186. height: 88rpx;
  187. background-color: #FFFFFF;
  188. display: flex;
  189. justify-content: space-between;
  190. align-items: center;
  191. z-index: 999;
  192. border-bottom: #eeeeee 2rpx solid;
  193. }
  194. .navTitle {
  195. font-size: 36rpx;
  196. font-weight: bold;
  197. color: #3c3c3c;
  198. }
  199. .leftView {
  200. width: 30%;
  201. }
  202. .rightView {
  203. width: 30%;
  204. display: flex;
  205. justify-content: flex-end;
  206. padding-right: 24rpx;
  207. }
  208. .rightImg {
  209. width: 40rpx;
  210. height: 40rpx;
  211. }
  212. .commend {
  213. position: fixed;
  214. left: 0;
  215. top: 90rpx;
  216. width: calc(100vw - 50rpx);
  217. background-color: #FFFFFF;
  218. padding: 0 25rpx 30rpx;
  219. z-index: 999;
  220. height: 300rpx;
  221. }
  222. .top {
  223. padding: 40rpx 0;
  224. text-align: center;
  225. height: 160rpx;
  226. color: #999999;
  227. font-size: 24rpx;
  228. //超过固定行数 隐藏
  229. display: -webkit-box;
  230. overflow: hidden;
  231. text-overflow: ellipsis;
  232. word-wrap: break-word;
  233. white-space: normal !important;
  234. -webkit-line-clamp: 3;
  235. -webkit-box-orient: vertical;
  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: 300rpx 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. }
  292. .rightItem {
  293. margin-left: 30rpx;
  294. width: calc(100vw - 300rpx);
  295. }
  296. .noMore {
  297. text-align: center;
  298. line-height: 50rpx;
  299. color: #999999;
  300. font-size: 28rpx;
  301. }
  302. </style>