index.vue 9.4 KB

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