index.vue 7.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400
  1. <template>
  2. <view class="content">
  3. <!-- 导航 -->
  4. <view class="nav">
  5. <view class="leftView"></view>
  6. <view class="navTitle">门店学院</view>
  7. <view class="rightView">
  8. <image src="../../static/mobile/icona_fenlei@2x.png" mode="" class="rightImg" @click="goSift"></image>
  9. <image src="../../static/mobile/icon_search@2x.png" mode="" class="rightImg"
  10. style="margin-left: 40rpx;" @click="goSearch"></image>
  11. </view>
  12. </view>
  13. <!-- 推荐 -->
  14. <view class="commend" v-if="bannerArr.length != 0">
  15. <view class="top">
  16. <image src="../../static/mobile/icon_tuijian@2x.png" mode="" style="width: 28rpx; height: 28rpx;">
  17. <text class="tuijian">推荐文章</text>
  18. </image>
  19. </view>
  20. <!-- item -->
  21. <view class="scrollBg">
  22. <scroll-view scroll-x="true" @scroll="scroll">
  23. <view class="itemBg">
  24. <view v-for="(item,index) in bannerArr" :key="index" class="item">
  25. <image :src="item.logoImg" mode="" class="swpImg"></image>
  26. <view class="title">{{item.title}}</view>
  27. <view class="title2" @click="goTopTab(item)">{{item.categoryName}}</view>
  28. </view>
  29. </view>
  30. </scroll-view>
  31. </view>
  32. </view>
  33. <!-- 分类 -->
  34. <view v-for="(item,index) in itemArr" :key="index">
  35. <view class="fenleiBg">
  36. <!-- 头 -->
  37. <view class="fenTop">
  38. <view class="leftTop">
  39. <view class="tuijian">{{item.name}}</view>
  40. <view class="sum">共{{item.count}}篇文章</view>
  41. </view>
  42. <view class="rightTop">
  43. <view class="" @click="goTopTab(item)">查看全部
  44. <image src="../../static/mobile/icon_arrow@2x.png" mode=""
  45. style="width: 11rpx; height: 18rpx; margin-left: 10rpx;"></image>
  46. </view>
  47. </view>
  48. </view>
  49. <!-- item -->
  50. <view class="itemBg">
  51. <view v-for="(item2,index2) in item.children" :key="index2" v-if="index2<2" class="twoItem" @click="goList(item)">
  52. <image :src="item2.logoImg" mode="" class="img2"></image>
  53. <view class="title">{{item2.title}}</view>
  54. </view>
  55. </view>
  56. </view>
  57. </view>
  58. <!-- 下拉菜单 -->
  59. <view class="sift" v-show="showSift">
  60. <view class="siftItemBg">
  61. <view v-for="(item,index) in siftData" :key="index" class="siftItem">
  62. <view @click="goTopTab(item)">{{item.name}}</view>
  63. </view>
  64. </view>
  65. </view>
  66. </view>
  67. </template>
  68. <script>
  69. export default {
  70. data() {
  71. return {
  72. bannerArr: [],
  73. scrollTop: 0,
  74. old: {
  75. scrollTop: 0
  76. },
  77. itemArr: [],
  78. showSift:false,
  79. siftData:[],
  80. }
  81. },
  82. onLoad() {
  83. this.getDetailData()
  84. this.getSiftData()
  85. },
  86. methods: {
  87. goList(item){
  88. // 1分类2文章
  89. if (item.type == 1) {
  90. uni.navigateTo({
  91. url:'list?topCode=' + item.Code + '&comment=' + item.Comment + '&topName=' + item.Name
  92. })
  93. }
  94. if (item.type == 2) {
  95. uni.navigateTo({
  96. url:'detail?id=' + item.ID
  97. })
  98. }
  99. },
  100. goTopTab(item){
  101. this.showSift = false
  102. uni.navigateTo({
  103. url:'topTab?topCode=' + item.code + '&comment=' + item.comment + '&topName=' + item.name
  104. })
  105. },
  106. goSift(){
  107. this.showSift = !this.showSift
  108. },
  109. goSearch(){
  110. uni.navigateTo({
  111. url:'search'
  112. })
  113. },
  114. scroll: function(e) {
  115. console.log(e)
  116. this.old.scrollTop = e.detail.scrollTop
  117. },
  118. goNav(urlStr){
  119. uni.navigateTo({
  120. url:urlStr
  121. })
  122. },
  123. getDetailData() {
  124. uni.showLoading({
  125. title: '加载中'
  126. })
  127. let url = '/trainingOpenApi/indexData',
  128. params = {
  129. }
  130. this.$http(url, params, 'GET').then(res => {
  131. uni.hideLoading();
  132. var data = res.data
  133. // 处理 undefined和null转为空白字符串
  134. for (const key in data) {
  135. data[key] = this.$praseStrEmpty(data[key])
  136. }
  137. this.detailData = data
  138. this.bannerArr = this.detailData.recommendList
  139. this.itemArr = this.detailData.categoryList
  140. })
  141. },
  142. getSiftData() {
  143. uni.showLoading({
  144. title: '加载中'
  145. })
  146. let url = '/trainingOpenApi/allCategory',
  147. params = {
  148. }
  149. this.$http(url, params, 'GET').then(res => {
  150. uni.hideLoading();
  151. var data = res.data
  152. // 处理 undefined和null转为空白字符串
  153. for (const key in data) {
  154. data[key] = this.$praseStrEmpty(data[key])
  155. }
  156. this.siftData = data
  157. })
  158. },
  159. // 下拉刷新 上拉加载更多
  160. onPullDownRefresh() {
  161. // this.page = 1;
  162. // this.getItemData()
  163. this.getDetailData()
  164. setTimeout(function() {
  165. uni.stopPullDownRefresh();
  166. }, 1000);
  167. },
  168. // onReachBottom() {
  169. // this.page++;
  170. // this.getItemData()
  171. // },
  172. }
  173. }
  174. </script>
  175. <style scoped>
  176. .content {
  177. min-height: 100vh;
  178. background-color: #f4f5f7;
  179. padding-top: 88rpx;
  180. padding-bottom: 20rpx;
  181. }
  182. .nav {
  183. position: fixed;
  184. left: 0;
  185. top: 0;
  186. width: 100vw;
  187. height: 88rpx;
  188. background-color: #FFFFFF;
  189. display: flex;
  190. justify-content: space-between;
  191. align-items: center;
  192. z-index: 999;
  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. background-color: #FFFFFF;
  214. margin: 20rpx 0;
  215. padding: 30rpx 25rpx;
  216. }
  217. .top {
  218. padding-bottom: 24rpx;
  219. }
  220. .tuijian {
  221. font-size: 32rpx;
  222. font-weight: bold;
  223. color: #3c3c3c;
  224. margin-left: 10rpx;
  225. }
  226. .scrollBg {
  227. background-color: #FFFFFF;
  228. }
  229. .scroll-view {
  230. white-space: nowrap;
  231. }
  232. .itemBg {
  233. display: flex;
  234. }
  235. .item {
  236. width: calc((100vw - 75rpx) / 2);
  237. margin-right: 25rpx;
  238. }
  239. .swpImg {
  240. border-radius: 10rpx;
  241. width: calc((100vw - 75rpx) / 2);
  242. height: 226rpx;
  243. }
  244. .title {
  245. font-size: 28rpx;
  246. font-weight: bold;
  247. color: #3c3c3c;
  248. /* 隐藏文字显示 ...不换行 */
  249. overflow: hidden;
  250. text-overflow: ellipsis;
  251. white-space: nowrap;
  252. margin: 14rpx 0;
  253. }
  254. .title2 {
  255. background: rgba(63, 144, 247, 0.1);
  256. font-size: 22rpx;
  257. color: #3F90F7;
  258. height: 36rpx;
  259. line-height: 36rpx;
  260. border-radius: 18rpx;
  261. padding: 3rpx 14rpx;
  262. width: 138rpx;
  263. margin-bottom: 10rpx;
  264. text-align: center;
  265. /* 隐藏文字显示 ...不换行 */
  266. overflow: hidden;
  267. text-overflow: ellipsis;
  268. white-space: nowrap;
  269. }
  270. .fenleiBg {
  271. background-color: #FFFFFF;
  272. margin: 20rpx 0;
  273. padding: 30rpx 25rpx;
  274. }
  275. .fenTop {
  276. padding-bottom: 24rpx;
  277. display: flex;
  278. justify-content: space-between;
  279. align-items: center;
  280. }
  281. .leftTop {
  282. display: flex;
  283. align-items: center;
  284. }
  285. .sum {
  286. font-size: 24rpx;
  287. color: #999999;
  288. margin-left: 16rpx;
  289. }
  290. .twoItem {
  291. width: calc((100vw - 75rpx) / 2);
  292. margin-right: 25rpx;
  293. }
  294. .img2 {
  295. width: calc((100vw - 75rpx) / 2);
  296. height: 226rpx;
  297. border-radius: 10rpx;
  298. }
  299. .sift{
  300. position: fixed;
  301. left: 0;
  302. top: 88rpx;
  303. width: 100vw;
  304. min-height: 100vh;
  305. background-color: rgba(0, 0, 0, 0.4);
  306. }
  307. .siftItemBg{
  308. background-color: #FFFFFF;
  309. width: 100%;
  310. height: 500rpx;
  311. overflow-y: scroll;
  312. }
  313. .siftItem{
  314. background-color: #FFFFFF;
  315. color: #333333;
  316. font-size: 30rpx;
  317. text-align: center;
  318. padding: 30rpx 0;
  319. }
  320. </style>