index.vue 8.6 KB

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